diff --git a/Manifest.files.gz b/Manifest.files.gz index 6032be1c898b..a32e788057c6 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/acct-user/Manifest.gz b/acct-user/Manifest.gz index fc7b171ffee2..45ad5eddf936 100644 Binary files a/acct-user/Manifest.gz and b/acct-user/Manifest.gz differ diff --git a/acct-user/icingadirector/Manifest b/acct-user/icingadirector/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/acct-user/icingadirector/icingadirector-0.ebuild b/acct-user/icingadirector/icingadirector-0.ebuild new file mode 100644 index 000000000000..f82b14af5783 --- /dev/null +++ b/acct-user/icingadirector/icingadirector-0.ebuild @@ -0,0 +1,13 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit acct-user + +DESCRIPTION="Icinga Director User" +ACCT_USER_ID=231 +ACCT_USER_HOME=/var/lib/icingadirector +ACCT_USER_GROUPS=( icingaweb2 ) + +acct-user_add_deps diff --git a/dev-java/portletapi/metadata.xml b/acct-user/icingadirector/metadata.xml similarity index 60% rename from dev-java/portletapi/metadata.xml rename to acct-user/icingadirector/metadata.xml index 4221e170cbc0..5c76f7a3fc67 100644 --- a/dev-java/portletapi/metadata.xml +++ b/acct-user/icingadirector/metadata.xml @@ -1,8 +1,8 @@ - - java@gentoo.org - Java + + prometheanfire@gentoo.org + Matthew Thode diff --git a/app-admin/Manifest.gz b/app-admin/Manifest.gz index 8fe7f79a8b6c..9969aaef6d69 100644 Binary files a/app-admin/Manifest.gz and b/app-admin/Manifest.gz differ diff --git a/app-admin/eselect/Manifest b/app-admin/eselect/Manifest index 3450cf5c41c7..369dab13f70c 100644 --- a/app-admin/eselect/Manifest +++ b/app-admin/eselect/Manifest @@ -1,2 +1,3 @@ DIST eselect-1.4.16.tar.xz 178660 BLAKE2B dae97ee324cb67983c5395b5dc54c4b84d2da43f6a0c5c8ab81ff402ab211e9d1f1d3fe5c174b130ac1e11d3dd19e3812056274145415ee029e649cda880cd95 SHA512 264fb6122f5f7c9e73bb2250a94c3c0377e5263e2e5ae653ed58e08ebf6ed1b4aa165ae5c1d70b0156081c4db5672d1ec9d379782919d5b40a2f3e862378ce62 DIST eselect-1.4.17.tar.xz 178980 BLAKE2B d905ac88bc009080912af75e64c7920d745788866fa3cb35466d68a652efbbd6984d6e1efeed76d9a344aed94705b74c85aa43e9c037d4d548d2e24afa69bd7a SHA512 35dc4c52f44c4f64db9c0dc2aec57b3055a6d36760b1bbbd094ad11b3f9e71a731444802632817b89c3b511f1dc9bb92046b59322d177e13fdc501ed767b591e +DIST eselect-1.4.18.tar.xz 179968 BLAKE2B ce54e54dd406c0d5a7a012ff7cf111709e7a51c510aaaa1d0145dade7bc9678e5f67081dfaef0743c86324adddb5468b093f9612e9932198d1bc9428a2dc93f6 SHA512 8e7afae4d383ddcc38c51f947fdaff267cc7ed87e26d236ff84585e4037764fd553f61c205fdc412ebc5170d80fa60a83cd93aa6fe39230ebff10a903af12ae2 diff --git a/app-admin/eselect/eselect-1.4.18.ebuild b/app-admin/eselect/eselect-1.4.18.ebuild new file mode 100644 index 000000000000..40e4b07b1903 --- /dev/null +++ b/app-admin/eselect/eselect-1.4.18.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit bash-completion-r1 + +DESCRIPTION="Gentoo's multi-purpose configuration and management tool" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Eselect" +SRC_URI="https://dev.gentoo.org/~ulm/eselect/${P}.tar.xz" + +LICENSE="GPL-2+ || ( GPL-2+ CC-BY-SA-4.0 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc emacs vim-syntax" + +DEPEND="sys-apps/sed + || ( + sys-apps/coreutils + app-misc/realpath + )" +RDEPEND="${DEPEND} + sys-apps/file + sys-libs/ncurses:0" +BDEPEND="doc? ( dev-python/docutils )" +PDEPEND="emacs? ( app-emacs/eselect-mode ) + vim-syntax? ( app-vim/eselect-syntax )" + +src_compile() { + emake + use doc && emake html +} + +src_install() { + emake DESTDIR="${D}" install + newbashcomp misc/${PN}.bashcomp ${PN} + dodoc AUTHORS ChangeLog NEWS README TODO doc/*.txt + if use doc; then + docinto html + dodoc *.html doc/*.html doc/*.css + fi + + # needed by news module + keepdir /var/lib/gentoo/news + if ! use prefix; then + fowners root:portage /var/lib/gentoo/news + fperms g+w /var/lib/gentoo/news + fi +} + +pkg_postinst() { + # fowners in src_install doesn't work for the portage group: + # merging changes the group back to root + if ! use prefix; then + chgrp portage "${EROOT}/var/lib/gentoo/news" \ + && chmod g+w "${EROOT}/var/lib/gentoo/news" + fi +} diff --git a/app-emacs/Manifest.gz b/app-emacs/Manifest.gz index b0320514d9eb..4e64e145015e 100644 Binary files a/app-emacs/Manifest.gz and b/app-emacs/Manifest.gz differ diff --git a/app-emacs/ebuild-mode/Manifest b/app-emacs/ebuild-mode/Manifest index 89ffac6a02cc..ad0014f0f3ac 100644 --- a/app-emacs/ebuild-mode/Manifest +++ b/app-emacs/ebuild-mode/Manifest @@ -1,3 +1,2 @@ -DIST ebuild-mode-1.51.tar.xz 35280 BLAKE2B 63f57919bb73937ce3d40b4d6762e78c78d273bcf67875434d12450e00632d457d3dedbe6f213c1979a60cbc0a0874723e3e9424fdcfb64a48acc885cc90e577 SHA512 ff9ece96fbe7bfc9c070769dc6667e8c33f8fb7ef20a2d347c670342ef7500b52b54a93ed37ac9ea13a89c1b89752f5dd6e56c234abe9a4fcd4eb6bad0d0b466 -DIST ebuild-mode-1.52.tar.xz 36100 BLAKE2B d5207d910088de9cf1a41580ce61c49632e8e7c1a1af5d95ba13a7865125ca487d770731bb49e12fdc36d3f557fadd51109de628e958166d064be025e4b91257 SHA512 852f968b44c80f98363d4663856317946992cf5d0daf9a9c63e8ec17c1a684e28c2de510ded98bd2ef84428d8d094c1b6f5060510e6475ce60183fbc8e5a0322 DIST ebuild-mode-1.53.tar.xz 35920 BLAKE2B ee932441e23ba4b876e98feb9ff9dfea2e395296846e14f776ac10f4c5bab6b711161b4c890b0d8f2ccb5749db5bced3f693aa172e3ae92af506fee26fb5750a SHA512 8fcc28139c0cace21159a0b5026573f401f65b4501ff888f9818d8f5a506a7bc1f8d8a133f775619efc9e16e2172d6b5daba539b4e38b1a378c0b35395263ef9 +DIST ebuild-mode-1.54.tar.xz 35768 BLAKE2B 8cfba7230eb61bcdede498c696aedd7c64d01e5a1e7a22ad0edf793fbf6970bddd818d431e717bcc0b5ea07d35b525468131df260206db912f36341947b98d08 SHA512 7e67f3875beb42bc94fe522364212a02ea93e11aa1a64512283ab783c5a41097076b29a3ecf72b4369180253efd26fd3a223d617909953b2c7626f5cbc2aaba1 diff --git a/app-emacs/ebuild-mode/ebuild-mode-1.51-r3.ebuild b/app-emacs/ebuild-mode/ebuild-mode-1.51-r3.ebuild deleted file mode 100644 index a04c94b38bca..000000000000 --- a/app-emacs/ebuild-mode/ebuild-mode-1.51-r3.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit elisp readme.gentoo-r1 - -DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files" -HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs" -SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" - -BDEPEND="sys-apps/texinfo" - -DOCS="ChangeLog keyword-generation.sh" -ELISP_TEXINFO="${PN}.texi" -SITEFILE="50${PN}-gentoo-1.51.el" -DOC_CONTENTS="Some optional features may require installation of additional - packages, like dev-python/docutils-glep for glep." diff --git a/app-emacs/ebuild-mode/ebuild-mode-1.52.ebuild b/app-emacs/ebuild-mode/ebuild-mode-1.54.ebuild similarity index 99% rename from app-emacs/ebuild-mode/ebuild-mode-1.52.ebuild rename to app-emacs/ebuild-mode/ebuild-mode-1.54.ebuild index a1123e589d57..c972bf6d3080 100644 --- a/app-emacs/ebuild-mode/ebuild-mode-1.52.ebuild +++ b/app-emacs/ebuild-mode/ebuild-mode-1.54.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit elisp readme.gentoo-r1 diff --git a/app-emacs/nxml-gentoo-schemas/Manifest b/app-emacs/nxml-gentoo-schemas/Manifest index 493ae228d8e1..ea9827784d85 100644 --- a/app-emacs/nxml-gentoo-schemas/Manifest +++ b/app-emacs/nxml-gentoo-schemas/Manifest @@ -1,2 +1 @@ -DIST nxml-gentoo-schemas-20210314.tar.xz 8512 BLAKE2B 9219644c1a0dbc7afc78c0c4f2623d9d71bbd4f62c387eb025e001e756262107d59f739d695c172ae4ef54049b98f4c3e92bc630be39bcf2f6727d8b0ea27247 SHA512 a092f48f3fe69df0bc51b3e5dd11a6ef09f4074589ffe9872f4936548caf14554fef8cd8ab42626f621c0163a23879698ad12a0818b52cc4b4a4f384a98afd6c DIST nxml-gentoo-schemas-20210907.tar.xz 8940 BLAKE2B e1965847d0723c453a11d2522436eb8bd017eb6147b50fe900105f05b74a47fbd91fe94c3a0af41de313480dd0a5a98d51b8b45be1bd27d160f32be8bbcd75f4 SHA512 4defdc0061940fc7dd285c958ec812a7110bb2d7370bd74ceef396e2873d488c78843395bb0e2c122b6ad959cffe5a555c9f96446aef90fc37b3db135477e8aa diff --git a/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20210314.ebuild b/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20210314.ebuild deleted file mode 100644 index 949349df0449..000000000000 --- a/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20210314.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit elisp - -DESCRIPTION="Extension for nxml-mode with Gentoo-specific schemas" -HOMEPAGE="https://gitweb.gentoo.org/proj/nxml-gentoo-schemas.git/" -SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz" - -LICENSE="HPND MIT GPL-2+" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86" - -SITEFILE="60${PN}-gentoo.el" - -src_compile() { :; } - -src_install() { - insinto "${SITEETC}/${PN}" - doins schemas.xml *.rnc - elisp-site-file-install "${FILESDIR}/${SITEFILE}" -} diff --git a/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20210907.ebuild b/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20210907.ebuild index e48ed43eeddb..92ed7f4bf007 100644 --- a/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20210907.ebuild +++ b/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20210907.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz" LICENSE="HPND MIT GPL-2+" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86" SITEFILE="60${PN}-gentoo.el" diff --git a/app-emacs/org-mode/Manifest b/app-emacs/org-mode/Manifest index 3035868e47a6..c40bdb899746 100644 --- a/app-emacs/org-mode/Manifest +++ b/app-emacs/org-mode/Manifest @@ -1,3 +1,4 @@ DIST org-9.4.4.tar.gz 4725983 BLAKE2B 69fcd15e13c55b71a2c0c6185a0b82dfd8f72ef2c68a8ccc5aa9d3e9f134233d7c7c3cb38f4957cc7d5d70a082067412b61be2111b484b6a91a8a2e5f077bb39 SHA512 ec857f9765a869371bd3425aaecdbe1c8bb8f605640d81efebd7ed13afcb05439cf3a5277457ed399bc501f95a6d823bda7f46b6991cd5f21cf53cf0e666d831 DIST org-9.4.6.tar.gz 4729335 BLAKE2B b88edaf8098124b2048ce57d6005d2af0de34e9b8fa94c24eb041a42a6fca1fd6da7f242be89e6b0ca5e7b80d879096f9114dca0ba86b20a5d26d2a185baa537 SHA512 7e50d7e9e2073bc0f06d2c861f59d4c9b8af4cf63c98f730c810a3a8721e65829fe9ef7ba0ac99f49bf9da427a4d5ad1d028e05c1a8ab6a3bea2ff2020c0e61d +DIST org-mode-release_9.5.2.tar.gz 2047430 BLAKE2B 3df1ea84d3513ff4ceeea69d6afcdbd68ac1dd0112831a4d202d4d8ab730067d9b9d72bc86e40157282d487c0020e4c2161d611f71da40951f3e322923efce9b SHA512 6d61e2db7f3bc736e299f47e85b3fd7c31324d0f60bf4b84f5540b717e7d394957bd5f9196aa8d3840e8798eb2b597818b03fa239fc1427ffb54c8ed74b5c9ae DIST org-mode-release_9.5.tar.gz 2043985 BLAKE2B 7f8c45be0c3c873eb9dada8d637088aa0fac4d2b2e4ddd7523c305e0c1acdc10c58ed36646285cff2ecac78d5d862f08fcd113dcb4fa853db04e59a6252a1d7a SHA512 9f05ef6d4adb89224248299ca7c8120924b6ad4c2fa5d0804ac4985b35f87382e20e0c6fecfed59bd52917cd1b6e57830505d47fc80102390cbc6336029fe132 diff --git a/app-emacs/org-mode/org-mode-9.4.6.ebuild b/app-emacs/org-mode/org-mode-9.4.6.ebuild index 9e5416d94789..9f1dfbc19586 100644 --- a/app-emacs/org-mode/org-mode-9.4.6.ebuild +++ b/app-emacs/org-mode/org-mode-9.4.6.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://orgmode.org/org-${PV}.tar.gz" LICENSE="GPL-3+ FDL-1.3+ contrib? ( GPL-2+ MIT ) odt-schema? ( OASIS-Open )" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ppc x86" IUSE="contrib doc odt-schema" RESTRICT="test" diff --git a/app-emacs/org-mode/org-mode-9.5.2.ebuild b/app-emacs/org-mode/org-mode-9.5.2.ebuild new file mode 100644 index 000000000000..d4f4644be22f --- /dev/null +++ b/app-emacs/org-mode/org-mode-9.5.2.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +NEED_EMACS=24 + +inherit elisp readme.gentoo-r1 + +MY_P="${PN}-release_${PV}" +DESCRIPTION="An Emacs mode for notes and project planning" +HOMEPAGE="https://www.orgmode.org/" +SRC_URI="https://git.savannah.gnu.org/cgit/emacs/${PN}.git/snapshot/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="GPL-3+ FDL-1.3+ CC-BY-SA-3.0 odt-schema? ( OASIS-Open )" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc odt-schema" +RESTRICT="test" + +BDEPEND="doc? ( virtual/texi2dvi )" + +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + emake datadir="${EPREFIX}${SITEETC}/${PN}" + use doc && emake pdf card +} + +src_install() { + emake \ + DESTDIR="${D}" \ + ETCDIRS="styles csl $(use odt-schema && echo schema)" \ + lispdir="${EPREFIX}${SITELISP}/${PN}" \ + datadir="${EPREFIX}${SITEETC}/${PN}" \ + infodir="${EPREFIX}/usr/share/info" \ + install + + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + dodoc README CONTRIBUTE etc/ORG-NEWS + use doc && dodoc doc/org.pdf doc/orgcard.pdf doc/orgguide.pdf + + local DOC_CONTENTS="Org mode has a large variety of run-time dependencies, + so you may have to install one or more additional packages. + A non-exhaustive list of these dependencies may be found at + ." + readme.gentoo_create_doc +} diff --git a/app-emulation/Manifest.gz b/app-emulation/Manifest.gz index 6d29a07916b9..2925d66c4d27 100644 Binary files a/app-emulation/Manifest.gz and b/app-emulation/Manifest.gz differ diff --git a/app-emulation/protontricks/protontricks-1.6.2.ebuild b/app-emulation/protontricks/protontricks-1.6.2-r1.ebuild similarity index 92% rename from app-emulation/protontricks/protontricks-1.6.2.ebuild rename to app-emulation/protontricks/protontricks-1.6.2-r1.ebuild index 3edec59a76f4..8ff35081420b 100644 --- a/app-emulation/protontricks/protontricks-1.6.2.ebuild +++ b/app-emulation/protontricks/protontricks-1.6.2-r1.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{8..10} pypy3 ) DISTUTILS_SINGLE_IMPL=1 DISTUTILS_USE_SETUPTOOLS=rdepend -inherit distutils-r1 +inherit distutils-r1 xdg-utils DESCRIPTION="app-emulation/winetricks wrapper for Proton (Steam Play) games" HOMEPAGE="https://github.com/Matoking/protontricks" @@ -42,6 +42,8 @@ python_prepare_all() { } pkg_postinst() { + xdg_desktop_database_update + elog if ! use gui; then @@ -54,3 +56,7 @@ pkg_postinst() { elog "Make sure to run a Proton game at least once before trying to use protontricks on it." elog } + +pkg_postrm() { + xdg_desktop_database_update +} diff --git a/app-emulation/ruffle/Manifest b/app-emulation/ruffle/Manifest index a46c713ccb3f..4f5bd083e959 100644 --- a/app-emulation/ruffle/Manifest +++ b/app-emulation/ruffle/Manifest @@ -25,7 +25,6 @@ DIST block-buffer-0.10.0.crate 10088 BLAKE2B 4af449e0071de2b367f7311f8e4a18b29ed DIST bstr-0.2.17.crate 330350 BLAKE2B 90c3a48d78b73d7e36a3da9fda0beae6e91ce534d17198ea8ceee0b613d03297f9dd8bca30e1ec5da01d1da359a1da72b2c2771b77c82bebab5006cafd665192 SHA512 883eac8210d14f89517b4dd5e25d02c97cf31602ec74498b5e186112ba0f154d47de8d1c41a8f4e5503f3b53c064e2c976b60bbfd63fc28b186bc006e00f20c2 DIST build_const-0.2.2.crate 4511 BLAKE2B 44316d3b468e73fbeedbaa1ae35705196f787707ea861355d926e7fbc97f759bc7fe0bf88d2e97fb9b981fc7347fe0e849ce2094f50ab53075b4dfe7522089f0 SHA512 47a9949b7196791af2507d6e3a28843da67621e5b56177d3b13477e070487cdd1059207588a55bf1a393df9118e71e3024b439a3c6281b6c12b5bdee66b237a6 DIST bumpalo-3.8.0.crate 79835 BLAKE2B 3937c4ca9d7c5e2ffee229c8f5503c6a59f2fabfa3b7c81fefbf5df816efc5f601aaca4b606a62e647262acafa34146aa0906eedc09368e16eb76b3c6722e8e1 SHA512 c9825e7638bd54f97877adee8ac8f6a2cee308050c3f446f9da3996688ec3d779cb6eb935a440329794fb534958a6e89749b44a9bb27dfd219a963f64a6bcac1 -DIST bytemuck-1.7.2.crate 27489 BLAKE2B 2541a7561eb34351f58266451a020858d8ac1ad30ecb95b97d576e72532cae37ef0b747e2259aaf6052b65f951586425044f824a00dfabf54bba9462edf94c2a SHA512 fae361f5abe67215a7591d421a0b713b77b437123c56e21dd00421e95ab86d9dd9b0bf1daa6623b833ea65681fbeeb58f6feab9d323964304a3250f24df1ace2 DIST bytemuck-1.7.3.crate 27879 BLAKE2B b231e200fa8925f71e457a6ae3a6677366cf6a5b1a6c19845b6973f385fdaaa86b6a3d4e8b38356dbc824cde70e8f1120008d21a3d77d06575fd036b0bf20678 SHA512 03569cb6b6532ff62f406f8f6c80ea5cc3a4fc36ebe28f5a4bab32000862192eed2d26163062c62c0749d2f96ebed6968ce76d2e95a6430d9147c3648aff1f64 DIST bytemuck_derive-1.0.1.crate 9550 BLAKE2B 60606126086a3c3beaadd1275c651ec7e3d7df34800ae435cb624fb65addbd6b6b1e98d82b346478ad69563a7d3c542078c7cb2502d98685ec0748c35cabae71 SHA512 93416b8be84e5f7f8360b5faf7c37548ece1afc0db2a596c84b841772466b54d8f88386ae3837d511c85dbe4ccff5e24e771511e44441c856b84cce1dd4d7ffe DIST byteorder-1.4.3.crate 22512 BLAKE2B d39c546ba7346df315297fc53da4bfc77ecb1f38567ddb788549ee31cae2719a8bc0b7d1f1705abb3cff033aa57af004987d90748f5a31765273b3223a011c0d SHA512 8c8000eb8ecf40351c9ce36a3a8acd7a02f81786d1b11aab85adfeffa0f2267ed74df29b2ca5d1d38128484d1d3cad2b673aa0d0441dcd0620dfd3934bb888fa @@ -41,9 +40,7 @@ DIST cfg-if-1.0.0.crate 7934 BLAKE2B e99a5589c11d79d77a4537b34ce0a45d37b981c123b DIST cfg_aliases-0.1.1.crate 6009 BLAKE2B 6acfae9a89d3479f7ce1f0b5dbb13bfe27c006b936a96685606a61a06f69d17ab754a8a0d96c54213f758281c2fb32ac74d03a34e0f836dc7e438387955aac37 SHA512 238828445c5b48ca41ff88825af0a1ad30494e423bb6f89b6d5e4d26042afaa1ceb0e32041f7cddd79c3e15c6c82a1ddb9469c4b63a1ac52d4bcc1174900f880 DIST chrono-0.4.19.crate 155663 BLAKE2B c92c273fb6475bbb2546dfb75eaa23321bc8f9a5fa8a7c652f527649b96ff8718fa932f52b500b02a4acae7837df5bdb14f69cb821d4962be2790dbd1d023a54 SHA512 a119349bfc2243a249f1d18b1ae548a04b30fecb75913a56f26d1ff8c0eb53097a2674d9141e2094018191cbbc1620843fbddaf52999824e077c1157f0907980 DIST clang-sys-1.3.0.crate 37713 BLAKE2B ca7ee0771a970ed67b02d55d9027bab061c52d624540894cd00d09d847f6f35c58e76a1a6153309f8af709474df64b46f4764c2036883a688ffb8154d77ed123 SHA512 80c78c53a877cd8208730885214c135dd65a208cfd047dba7595283bbeec266f4d39cd1e0b3c2c69a474569ba68e4db93636e31a77c350d7bb2337e06ee7cb74 -DIST clap-3.0.0-beta.5.crate 155626 BLAKE2B b51adbf6fd721f2fed06babce4954010b6b0e042ab2aa2884818e1e94322d5b85d64d9c71d3eeb93a028e176e849313dbbd153a0816e704dacf5e58243de4107 SHA512 bac8e4064c0c39b2a964cd0bc5fef85cbae4dc42dde37e7f52d19d08971f5d0062f33dd55926e3058aa4b3884cba785062438faf0a40bc817fd83cff92315a94 DIST clap-3.0.0-rc.7.crate 188935 BLAKE2B 68ee103dd6d46911c4c31a18833dabde085459ab7d22f2a5605af7c4359c254a6c4b37b508e26ea43620e3f2e645fc0fa6358da6aa93f43d46b930cad74705cc SHA512 b013466b88a549f5b7c7a9adb1d9981390bca4c3d1e18dc1554b8bbe69d3a8a57cc8a7bf5e21b0d306e982bde011ed7db633a8cc61458a79b5207808dd606338 -DIST clap_derive-3.0.0-beta.5.crate 25228 BLAKE2B 5d35c568157e57f56b4c7f6d9f5a0f81b16ecffb82fc01c146795d86cff4a9b5ee3ace10dd9b3e4b9eedfe3e975f653c32a8ca463249335e85e5178f8045caec SHA512 76251b7e781cde93809785e5a5370789fc6ae94397cf1e80efb1c4bda20e2b984fb9090f21d469224f3861ff51f80ba780c3bf176db9ea1860b34592df4fa917 DIST clap_derive-3.0.0-rc.7.crate 24689 BLAKE2B e4cd871b7c212221af7b6afabd785545256be1de24d691b1443c876024dbb045d157c1b8de0aae6eaa01a7ca8b5f954ba45fa24f54c4daa54748b149a921da8e SHA512 a490f805510f2ee4761c32d37469f48cdbb367971469882bcb43f457051bc169f75784d8bab146fcc5397c2bf740574cf81aa97c756e7e35566170ad4a7faaf2 DIST clipboard-0.5.0.crate 10009 BLAKE2B 17aaafeb92be0dfb4ccfdb80a3d909e57491cc0adceedf378196f7bbd006d245adfdd9b2d2e075c2c041aa57eb1a0e6e306032966c30e63f94d86b0f9f7a11ce SHA512 a02994e68bb4ecdb1ba3db05e095474e67df4d73f69c92ab096913f4bd0f47ec6b62c8f0210fd67bb466e293c765888c315770e447f5c6e9b2e5c69f71d3e48a DIST clipboard-win-2.2.0.crate 11079 BLAKE2B 5713e17a93eac4a1d299d42a6abe5db1eadbc90bf5e7c99e84b6b5febfc817bbc1c478533af8cbec7a8e58ebbc1a8f3d83bf351d105b55017cebab8048009390 SHA512 f869775bb2e6d84096034c26c888c9f671272232af74c02bda2a6c8f0d600652af581c0e94d875d8746b986314f61168bf7539042a65cb2ccbbf858141fa42e0 @@ -128,24 +125,15 @@ DIST foreign-types-0.3.2.crate 7504 BLAKE2B 520818b702d990d296ecd31a864685020250 DIST foreign-types-shared-0.1.1.crate 5672 BLAKE2B d2e42e04b6657e7a69fe0bd20c672176629c743e49a55fd007bb30e289710b70045d445ae9cae0eeaa747ee708c90e8abd9b5fc39bad8ec0666befe1b696d4f1 SHA512 bafdb2143e136fb0818e2ffd90b5c862b7181647d6568947d4e4531012bbf7a57b597221ec7056c1b562dfc0c3b5dead26d1a4111ebc15e7863737a873518a4a DIST form_urlencoded-1.0.1.crate 8773 BLAKE2B e2d2224dbd85d053343aea29ef1bd540fb8be12fd600289e9c048e3b74bfb009d0770f8296556309ef756086f22feec4713dfed1006e1101075c8897be5471cc SHA512 3ab371c223561a27ffbd35cf648ef4a9145d47bba9d71900a7c54cfc2f089175e9361f6352331a9a7fa018923b15e7a3553c8f9ff9fae80e1626e641a5faff68 DIST funty-1.1.0.crate 11631 BLAKE2B 37b246ed78132b52461dda9f3c1b52feafac998f6cd0ebc62408b90e5f826def1456ce820adc745aa1ccf07b281fde3df65af84eea561eeaf1ecedaebfab24b7 SHA512 771f42f601a0349a8e9344c8df552491c64af350b18eacc99463e972335d4a4c95416704ebf49e904503fb2d6f78bf201c8cb82fa20bfbf460ab1e7ed9f94a9e -DIST futures-0.3.18.crate 47643 BLAKE2B 4bebf75ea530fda4d40b9ffe5c01b8592d5c4cbc9d498754dfa81221914a37c325ef64eae439cb73bffe8cd13c88cdc86aa3cf4cb60cd871caea32ce33b413dc SHA512 2e5bdc685fe1b7976f9f60d99a6b1c27a3c300744de9d7d14e26510f8f591d282a7c11ef99bafb4971f5a550cc6668c493c8c29a9f94e47fabe59aeb45a41f10 DIST futures-0.3.19.crate 47605 BLAKE2B 8a8925c17319fc84b85877f269584075dabf9703202eefb5de121c28174623465a1b38b7c2f0325df6036a4a3e8afd9413f2de96c34d583544c7694c7ce25c1a SHA512 2383a0ee128e9945da2b0ba50795d6efef0bec832dff3bc7d9f6f592bd120538c62b5068156f330c72779f8ce3b3a339cdc04634fef3f985eb1ce4033a7c9518 -DIST futures-channel-0.3.18.crate 31941 BLAKE2B 518b55b1d943a80f89fcab52142ed710c2e46b0c31275b1f919a6803fe5a9dd3eba4d4db4743471dff5dcf1871881aa758242768a70124f985f8735cbae6b5a2 SHA512 d9dbe1bd543c46acd6d51a43e3ef45df3fe79bb0eef24e0179423dbda582d68936948b5bb2ca48b6d169fd4906ec7922cded10f1e987095514ba28c4fdb5d6d7 DIST futures-channel-0.3.19.crate 31940 BLAKE2B 1837616f7b00b98bf5d7e11032a535ab945697e8564091b43d0ef2657cfc9e3a6bb4c82c442b39325082fe4791a6418a733310e850055936fa1db2ea319fa94c SHA512 06acb15c125f20f305173cc5ac77e1502a857ea8e80e4fa33bf4e51982b1af71c8d31e800cc3151d7d52c3db69d9be5d7500690664d073e329626c2d4b2763a4 -DIST futures-core-0.3.18.crate 14665 BLAKE2B 848f8038511085bb205d1fe6b7e21790a109f0a77cf17c31323b83aab0eb8e5f58a35c3ebcd5f0fa1228c1979f2c76c55380223bd08a3f64e0e72098fee945b7 SHA512 3182345cb62a21079be53a77171b54e9822d2efbd01cba1e7a30b948b5a60446eb90b55c2ef76a760e68ff1fdafb86ebe51767f44e47033a3bfb53d4cc382604 DIST futures-core-0.3.19.crate 14666 BLAKE2B cc0d1993f3fd4c4b18dce68c0f152602f8411e290f839d7107d5bca1339c73f969adcf192608bb58423ef98d42e8af060bb49a4a8e29078b45f34e7b49907ead SHA512 2bfc54b1116cfb96b70ad48c25e339ede9690543cb9b0a656518171835b931545a67a13f14df42b6a4db968a88187daf3fc4fa8a6607d8c545b776b85201cf72 -DIST futures-executor-0.3.18.crate 17290 BLAKE2B 3539dbf94d38dc3171242222c43b3ddcb343e1acf63820ecddbb839f83889f90f7226c3f41c35b47e5ad5f1217e4b47bb0b5f847379444c8ddc1a54c07a2f9fd SHA512 2033bbea0cf328feb5c50e40b28fdd8b8f1d01077c1a74be47f463f13cbd0fe2ece7c90f4ac5c54300d0a305d795ca91ebf7bfaaf990fdda260f311e2781f58c DIST futures-executor-0.3.19.crate 17286 BLAKE2B 70bea30ede2258bee815b08528951befa11a8c821f8de2681f4d86ea0406b96cacb122889d96d7947d89523941fe5cde8eaeba5e3c3e1f60f6524a7a11659db2 SHA512 c6c3d392a1e096b864716696bd76169745ab7c673bb109c197d38c1116cedafe1fd72e37fc56f6fb8250772dc3daf710d8e17d34a00e2f7a070d5ecb3b0bc9b2 -DIST futures-io-0.3.18.crate 9222 BLAKE2B f710ae8ed982b42a37d0ab797829b5366526fbf4e830ea26a5e9ae89a7a8c57584c467251185195571dda5a92abe072a881a33829a2558e593cdc68e7009f823 SHA512 f941da4a9c606a25a021fb55648fe0e864fa716b7ee01020b361aae99c33bc59035e16f5d60d84d3b9d015ea2be7c169da52501d238e5c71818bd0984ba0b3ac DIST futures-io-0.3.19.crate 8901 BLAKE2B acd285ade243d09a8f49d5ebdfd78d58e47a7c069d94beae5b16ae08d69687a28f5899a4b6cbb9476a6cc286149413e4771319f260c59684442a6205da69d00f SHA512 8bddbfabe1e6e09f067058db9117782703626e989e14c7e13d2d0f828fbd8de141b11d8b209d4e5dc5f8ff956ccce2cab958a438d5466ed20e41a3e1d50a7c30 DIST futures-lite-1.12.0.crate 36032 BLAKE2B 16cd92362ddb217fd3c316f1104635b086abbf3b482b3381d62e3b5ddbd20122d1dadb48c83d3022db080d05352ee5a40f33978529bac3eb182b875f45cd132d SHA512 3d26148ed1c87926de51412a8d08e0619c64b85b610a74d6f61fcc1972dc0cbedb04c5824fcb4ef0a920c557ac81a0b2b4403ddb1c01e11648694ae56c28d72a -DIST futures-macro-0.3.18.crate 11256 BLAKE2B 82b9407a5be5f0cb6e586e838288ce05d96a51fe6fcad86aff776bf5fa0090ccce56f1379b530db341555eb9b64cd98565829024a87ae0c4071c22004562c70f SHA512 5163237aa4b2ee342c0a67fbbd7db3ce45a50a6289ca0740864cd5edc9adb3de7fcc50b5b0a75dcac6052ba5b9871e01df8f94aa956b2dbbbba232dc83dda477 DIST futures-macro-0.3.19.crate 11253 BLAKE2B d79fad7bdea954ffc8cfb8a58216c7d36c848d625755467b0031e2f6b8b21c8c629fb28afd7e0e9b20e18bf6513c4814e91afa8f2338c5654d2bbbd199a000e9 SHA512 926782d27be383e6af887452929453cc805a44a59c47e0a0b486a22e15e89b5ff553f3c5477d667a655f3f6d8bd7f74ce4d72596cdae242520e5c7437e30179c -DIST futures-sink-0.3.18.crate 7851 BLAKE2B 66bf043a8f3abc02960bc0968e68e7e3e649dab488e631f505c26105fdec3b98a29a2902dd13c484a5f627230976f6634dd8f25687af1bb53a4b29048da224e8 SHA512 4d6f937dcb8091caedef743fa38e32a730f665e7b07df5662850df79b0a460fd906def3d8fb7c4284b96dae4fca1bc67d9d21292c490bca8029a790591d48a0c DIST futures-sink-0.3.19.crate 7849 BLAKE2B e0cca5ac119e47be89f229296b992c8adfc959336cd353ea98275fde323199c6b474a6c6df47dc4ef24a0f7a8d22918fe8660787b873ee6fb3d1f04d23ab541c SHA512 50c015e39c5f2580f48af42aedbbdae048363d5ca3d8e7aa3f8752219fe54862de6134c44c1355369018b7ab5ff169bee27b177f2656d4ce65fd9a42b02355d2 -DIST futures-task-0.3.18.crate 11901 BLAKE2B 5fc9ac94ab83d340ce490999ffee60c7fee9c7d0bcef01932438e105b4830aa0e92a04f6c49d7ad55cca43bad7d15dd17b59a3dc16a46434e1330dc85f5deac0 SHA512 fffb16ea3d8be7658204ebca6baef17fceb5131c5c879ebb4721235acd36fcfb8571f619d4ad0ca7595cae55ad2bc945adcdf948c5736849bcd8a7b065faa502 DIST futures-task-0.3.19.crate 11894 BLAKE2B 16f39551920931f7535d65d0c787318d13da0f18bb39bb5939b06829cb4f49da45a478f105fd4ce74323d198fe18b8695683d1861ae171b412789c758a564673 SHA512 befb75408a3ca3b034e26c835bf7351727f8e3548674024a44e994875470b34f6d9f1dcb954905062192a96b97ec28499aaa745b652c81b3be59e1222b3d5037 -DIST futures-util-0.3.18.crate 148706 BLAKE2B fdca59d8972871d26e4116d70bd83b4d73e869f43725b50751bcaf5db6ee8528981be476a74b26e85c182e8648733d16956e80c1f10d975b677866d4826fdb9e SHA512 5e6488aa11493aa1fbd688796c6f9af92d288ff38f4460b1923ee196a6513185fc63805abec7f5fa7ddbce186937bbb2aaab41da8216d088c631f8984b66d63b DIST futures-util-0.3.19.crate 149240 BLAKE2B e831c92e184b976494836b393824834c378f8eba4f32f7883a355fc7745e224984954fb9705f04e064b3aa33aa7c5c8e1a8e12688cbea9020e9aa8f444e130d5 SHA512 cdadde2949a496806fc432efcdb9f4555ca0482320017ea45c29d8dbde69bf9d4af7a6660d351bef3989c5ef905b1f011788506fa2e87d8b53b83cf54256a3ef DIST fxhash-0.2.1.crate 4102 BLAKE2B efade6722efed1cff0bcf307ababd9c9031af297baf410367212758411a21d61a473456c7f9b5cb15e444d115a62120f140c082e70dd360a3ae83f2f71bec9e6 SHA512 638e1c0a4e7f365483a329e715afbc2e57e47c03b32e0e1818c879baa96996e81dce8ab39320e24a3e1633f73dec1e5f18a06c37f3ad38043002fc99b55efc38 DIST gc-arena-4931b3bc25b2b74174ff5eb9c34ae0dda732778b.tar.gz 25952 BLAKE2B 637e40ecf88fcf87ac96efa60414985a08f8d4d0b524635e9eb791ba64547effc2e2226c90493d478b897fcb8fb0d88949cce9c136f69760ac9c0df2e60513ee SHA512 93a3d21e65f9ea46f84b781ec127b1d22f678c7c88a4a736403684e503376787d8657da4f8c9918d2c7bf4047361dadfd378aa646a9ce3683086ffc39e1268ac @@ -252,7 +240,6 @@ DIST oboe-sys-0.4.4.crate 141935 BLAKE2B 79000df5b3e0bbc38e3b16199c96f9026253435 DIST once_cell-1.8.0.crate 28925 BLAKE2B 7681b1a7497b5711e663773c1a7e076f333c06c10d3f289079a781c36f050c1620cc279742ea8e5b15ec48f3d6038a6079bbda7fee3ae8e1128bd916d53ed43a SHA512 88e55c9433225ce85a08353168c87fca2237615482160a5c28f3ac17f06d48c63e0c21b5f7ef81f82ca133436e371802ea099453844f1c111003bcb6ba89e827 DIST openssl-probe-0.1.4.crate 7066 BLAKE2B 656434ec1d34466e903e5c69289a277d14623aa7bd8a7c19bea974c7de57fcec9b2b4ed212f37d7f7b90fbf02a486a8ac7f7c318cfb3b3930e54e276103154b9 SHA512 c5d4ffcc6faf009b38dc715ec85fd75b3e3b0c0293041ea26071bb6d19d8d018a43ec166bf79ef1c7a126cf783bd4a7121d5dfcbed36db5ebf0fe4decb198f17 DIST openssl-sys-0.9.71.crate 55893 BLAKE2B 910abc01809da873ef97ca63d00ae91dad8e0c6607f5572460b6a9229baab685555dd5b4e9ba1c5e9a12ba50e47ee3bb6c584491aa3de53b0a55355699e246bd SHA512 d552eb0591f0c2783e0cdb2f4da41aa39dae6dc9d613d1ffa1228bc714b06695400456685ad8445366d4ff87b4511c2c9dc4e579ab8d1fc4f368f46e5d85fdc9 -DIST os_str_bytes-4.2.0.crate 20800 BLAKE2B d61b8b6cb7cd36b0dc2925ae49fec2451e37b024d41805638cdbb15650ad4877a0e76554891231285b4a794bfebfbd89f7274dda30c07b4cf189266b1a853413 SHA512 23c7a543f236dff8ff683757836d2d0a9b456caec7a699bb36ee3b4be75e4c1013cef943fbc4a242928bc58e38afb1e4ef882eceb03d821ed72580f94bf0d069 DIST os_str_bytes-6.0.0.crate 21046 BLAKE2B 9d2a9f47aac852ca2e27e63a22c7267e1a4affde2277d50e128b54f377758322f07ca7263478c39c91e11a2b32b0e7a5fc5ba1b31e0ee014b412a4151642e605 SHA512 d2d3741a1190092cf251e035d2c55a7d022d99512160ed4ddccccb44ca85f664f94f8a937a76eff88581b593e2ebaddab6e753009f3046a8a2ebf451418e41d8 DIST output_vt100-0.1.2.crate 4062 BLAKE2B eed08c0a1800560d4f623f451d818e3c7f0dcd72fa99f4e5e6dd4934e50a9649011ec955e06728fd017d58bb9f36cecbeb9b4aa8c13c040225c24019f774e63a SHA512 b8eb00a541bebef2e0bb44975c4547fadfd4ab88a14aa8e31945f3c73531a550cf5729f1f3d18fae5cf36286b82d1a54fb08b28720f1592ab6cfe0814c8d3036 DIST parking-2.0.0.crate 9714 BLAKE2B e3ecd48e90289fe173b1419ad3f68350dd05359461c5842e52304e20fef9b5e089803e0c0a8e85b249a546f61cf8624367e6ec164ef7638850b451d325851075 SHA512 21c5723dc0281ade1c2cd6a1c2215ba70eb47a721a4a594ef1e54061bc79579ffe9c31f06e534fd847f936ed265cd65a59dfa9e38880f8bd42c6e8ac70a13f93 @@ -298,7 +285,6 @@ DIST regress-0.4.1.crate 99620 BLAKE2B 9141cad8f53e2a8e3ea3d746737ab5b8c75ed345f DIST renderdoc-sys-0.7.1.crate 4592 BLAKE2B d5c543119a498bf295bf506b164945a3de6c48358891170278baea05db0f67813d9bd232cc52593fa02095d04cbb163fdfc9ef2c121eb1155ca761b89350cc15 SHA512 5ef5596705e4d9b752e132571960e4518b96e47b65ea799dc4fc87cc4abcf769e05dafd3a7cf78df4957ed32d42f714f9d78b2f3614597cd5a45352a3f509dab DIST rle-decode-fast-1.0.1.crate 62490 BLAKE2B 34370186c8875c91b8d353b372518bc039c58061e0e0377c7596a9e100b047550e800c431f2b4a59556fc266eefcbc7846b53d5a4e10360fcbe435acf63249b2 SHA512 38b3565279b134dcb3bcba001b081ada73f36e4107bdee935036631b740b6e1d1f767e3965ad414e38c8606abc1733f898062bce01b8c19234f204adcbe05a4a DIST ron-0.6.6.crate 45107 BLAKE2B 96fde52fa2c073cce3a7d10ffea7d9156b71c3d801fe822be702a3d1cbcfab61d87024ab98dd2458fa05fdb7ffadd9eb0cae36ad87b02504e8585e1909bf4894 SHA512 06a2a1c4760bfd6c5b6743fbdb533cab6955e68ad6f60a47077d3ee359e2ed1b2d448eeae45af15e8b40f63076806fa7c56c1b803d3d339c4713a15f6b7a5040 -DIST ruffle-nightly-2021-12-14.tar.gz 7197513 BLAKE2B 3a0380c375a7c9e12e78202c6c8057f657c30b67a56095699fab124a48b2c68015cb37baa10cf411f0d899e748a9682623dcb6eeb2dea8557d1387f5b31e0794 SHA512 5b5b511e2bf52c86394aa852d7e58a226c8738a759a4f9f2aba5fd51979e029f20d4af1c174c8553e9220bc13286ad10407919f5ef549e7a324486efbe6e3e38 DIST ruffle-nightly-2021-12-22.tar.gz 7210584 BLAKE2B 2d8aada44368861619e1ade5bd525d891488c471da6ac23059ef687f883bcbeed56aae8e585686efc74afca3e3f9531732ee7b9b707ff5684faf0392a87e8e63 SHA512 5738cec4ca0050ebc69767549cbfce592568cb483f43dc9ef7a81c0bfd28dc4b319a631c0343914aa1b4a96e1111b4ac5c87f2431854c53fd9e2956caf1040e0 DIST rust-flash-lso-19fecd07b9888c4bdaa66771c468095783b52bed.tar.gz 676612 BLAKE2B 3c2ff3edef1aad8e6276758fd3bac85106fa9a445180c9c7d954d5b4e469751b9a14e1cc8c3bc4736a410f5e1478eb821395b8f0a1acb0e5dca1082155b0690f SHA512 6f668066999d3454d255d227167ef92e8fcf5755017617439fc227d53c5b8169a7c585857bed4879991e8cab0a6efb4ee04eca3e1b7e01bfaaa4cab70af30d3a DIST rustc-hash-1.1.0.crate 9331 BLAKE2B 16ac56622897f47a06b661fb59a196b08d48e782ab87549c8bd5c6fe92f374c9bfd44dcb36588512bd9b6125c2fd79a12d648aaa308fd9694bcca3a7c1b49ac9 SHA512 84e673ea9b046f7b989d47f2c4505557fbd5de991e6fc9f56a03605d40e0b4ba5427cd566954890153cc033ccbec6c984306634571935bfe0d4cdfbe56f39544 @@ -310,9 +296,7 @@ DIST schannel-0.1.19.crate 42755 BLAKE2B 11503202bb6c8fdff3cc716558a5c00ca7497f7 DIST scoped-tls-1.0.0.crate 9146 BLAKE2B e6cecc543760a293b9ba4e71bf0d12f3360782795bc9d0f0bb054614a1c393f081b6178e98708b896037f5b8edcf371b727e7eb80f62bca24fe09a1903456729 SHA512 f09dd404bb45349ef444e7274a2aabfeaeda7c3c9f964bf5c52c39984c137f63bdf9fb3e33df8e312e52872f7721de25951a7f3b8333a670626c51afd36d314c DIST scoped_threadpool-0.1.9.crate 7800 BLAKE2B b6f887c1af054666ab7f717dfdafe5701bbc0a778169d885a1837202d4d215970af567ea620c6ef47db69fa664c6be65c782aa87d9efc1d9c8c280b6210e38f1 SHA512 df8034b347fb489735895d75e5489c264aea1b50f46a8dd512963df05cb9ba9274317b26aeca63b9b4edcf792e796659bad435ad3f3446cb397340e2bf0a5f33 DIST scopeguard-1.1.0.crate 11470 BLAKE2B f774eb90b7d3ffb2efba47518e9d1dead4017ab4b38a4bd74914daa84a5af4bf9eb63da0496e3924499d79cd0439c37447aeda4a21226f95645bddcd6becfabe SHA512 368fa5726df8f42b599993681579a9ffd0196480ee3cd0f9f671e8493f3bedd1e1779bdf2beb329e77e0005fa09b816e3385f309490c0f2781568db275d4d17d -DIST serde-1.0.131.crate 75357 BLAKE2B bbdaf63de5105a297a4618450c3de909be0df812f0bee1b82449cda9fa3e26b044d77599e23658a6a28cbca88cbab54d13ef71c64af40d7dcb3425681cf94925 SHA512 d441f018b44ad2db983ba5f730c7e241ba234d861a09602c0373bdf4b74bf7a02fdc65cc93635877813223740b748b41eaa28bc16cfa583f32c1a2b8e8661a16 DIST serde-1.0.132.crate 75364 BLAKE2B 7485bcf0ae578f02f7c7dcdb284fcd6d8ccb4022b7d487e19593f3b3c9bd03a369410307dbe5ecde8071ca3ab6c7e45a5ddfe332e43076b84d67444d1f105b7b SHA512 8dac512547074a6934315ebae3e7540ef8baa225cdd58f11416b4565a1335ab317e659901fd626beffd6514c5dc6ec9fc705cc1d15e9cdd2051bd28649cca555 -DIST serde_derive-1.0.131.crate 54729 BLAKE2B 14fc73901d1e7769e908cc3612da0b0bde2de6d80f8fea8ab4325236f29582ff219bfb2aabcffe337f066705842c75f9816f51c8115612660c0485550c2afb33 SHA512 83a3dd5751e4c6e7d763f88fe40ed9a606b9117a67bbfd14f62051cb95cb3dfe5c7a21bda6a33702e7dc7ac71a4128812a183b0600dd850b1d69dfaa5441782d DIST serde_derive-1.0.132.crate 54725 BLAKE2B 10ba0e55a498cfb469f1a36368f66515ab3e331f337b9441b08aba857dd6c824ccb718fdc33ab467413bd755db31370d4eb52039bb28e4a6c0775e2be87db896 SHA512 04f1a738b133de752fd1f4d70ffa35bbc144208bc3495ead56cda8ce65a72c501ea9c8e5e6d088cee94a878bf62509fc9f75dfadb320eb942042ee5ea80dc76a DIST serde_json-1.0.72.crate 115888 BLAKE2B 0770707160014ef19f54ab6acb6bf8cad8ae65ab47c184912aa534b927c0743e66273e93c7e3190102428bc71914ab4648bfe0c2cae9416afe6ea1d7da217996 SHA512 e48129cb5c36b4999751302fcee811b80f2113780c12e122b13d9fc7a31af7452183ff89de1793994edfdcae61a80db37aa492250a0d69e9180659418a10063b DIST sha2-0.10.0.crate 20037 BLAKE2B 44e176709b94dab3f28d21013faf0f3151b0fb29b02b76aaeea260b28090e07dc7767e354981acf76880d195fbcb4c315fdac401e1d1898a8bbb4289c4d2982b SHA512 d193e2bfe200c2e39a5d8c3381d4730bfc5da9ce112d23040cb7ce395003349b6177542bad0c18e6b3dec156f444b48a843765410064ebc42922a5b26cc6f0c5 @@ -356,7 +340,6 @@ DIST tracing-core-0.1.21.crate 50683 BLAKE2B dc48e0fd6586b8ac0059469a26049c6746b DIST tracing-futures-0.2.5.crate 11637 BLAKE2B 2b23233705674cadf5dc8092d3990f375e780de2b9bdfcbfdd5f4bc9bd0f15a14c6bc8e36963bcd332e729b33b90ecd10b2250495e0657eaeb302e666313534e SHA512 8a437a029e18dcac3a3be7a3355a63e75432ff892316c9f2929c7557e3895b1bb5efb59a7588372bd9efc386b5cab54c2b382be99ef8fa643e66ae5656e506bb DIST transpose-0.2.1.crate 6499 BLAKE2B 9d5fe7a176686120f3b317c019eee5b1b41f61ff07ec77ed5a7f81487e39f901431e0220fa4a54c77186428fd7fb2c26780f15c5fefbdf7237f405dca786e141 SHA512 73bed99bee032ec9d82fa64d6f6ba8d87ddb7ddf0fdfc57ffc2d1d134055202f94347466d533ee79246d2b80a2dfb4308c931b697c056f36db85270b7c9c630c DIST typenum-1.14.0.crate 40518 BLAKE2B ff6d77c28e41cddc1956619bca522f4ae5680cedf313d4a12a4d40f191f85ed10d673a32bdd811d7774a01a1b9b5adf9990269ae230737237249faad16ba7070 SHA512 e9739a24936563e9471213060d53d970f8cbbdd163892a22e98f1972d10861009ca1eb568c3bb5d1d78299482372fbe7e6bf42ec8f4f5f30df0a7446933a312c -DIST unicase-2.6.0.crate 23478 BLAKE2B 6e580108ac81b1cbee70e5bd331f43b12f266dae4f4f758bb8f5f073bd1af61943ee0de34cc27769525b19da8c24f8dea4941d0f5454594ab0cc8b78071ff053 SHA512 7e76a5f344e32c56cf87223585d87a56c79627b52bba0b29eb6de82de874b2964accededa8e9b5741f57944b6750fba5c61e679a50d4fd5a5646f431e2f4f188 DIST unicode-bidi-0.3.7.crate 33759 BLAKE2B 4d5224062c829b5e48d26ca727bb60d10d7c663cfca24762331b36a2819a70e7d43d2b6b64ba64751d9b686949142b53346a52027d400acf8cb1e1b1895b2796 SHA512 6eeafec87a504ac968b59dd3168714e555b5b374cfbb5a6a9c962445c423f82b68ee54d1b732c5939eb17fdbb804f9b3affe828745bf4ff34e8a1587df2bc8bf DIST unicode-normalization-0.1.19.crate 107353 BLAKE2B 4c69d50efcae131eb4b91d385a64b49412a11ba913b3c0364cd04ad107d59e31adbda74d34ed13a065d9a7825d79fb740e82a4dc66b7813a9837af4352ac9e16 SHA512 7459e9d2867308cac80a98d8dd0b0cce797e2830ea5ff55b878f7a37a6f5e1f0bc14340e1a29955298d660ba2be57754a1478d74851b1b90576dd5bc4231729f DIST unicode-segmentation-1.8.0.crate 94011 BLAKE2B 33440cedd5b51bd6075c9c75541bb8dcc16037b1c937ca72962f6c46be71a30850ab8e8a144d8b7548e5a91c78d551e7bbab5f26a713f1df0311d15f11299af9 SHA512 f0779ec42907b665df53f38ea370e661f10e7c72a75917f4cbd055868428c0eac1c7fc194d4bbf048e00f0f3d3e2b3602ae88d7820ad0c73e94a5228b61f6495 diff --git a/app-emulation/ruffle/ruffle-0_p20211214.ebuild b/app-emulation/ruffle/ruffle-0_p20211214.ebuild deleted file mode 100644 index f55ac59a9cc7..000000000000 --- a/app-emulation/ruffle/ruffle-0_p20211214.ebuild +++ /dev/null @@ -1,504 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -CRATES=" - adler-1.0.2 - adler32-1.2.0 - ahash-0.7.6 - aho-corasick-0.7.18 - alsa-0.5.0 - alsa-sys-0.3.1 - ansi_term-0.12.1 - approx-0.5.0 - arrayvec-0.5.2 - arrayvec-0.7.2 - ash-0.33.3+1.2.191 - async-channel-1.6.1 - atty-0.2.14 - autocfg-1.0.1 - base64-0.13.0 - bindgen-0.56.0 - bit-set-0.5.2 - bit-vec-0.6.3 - bitflags-1.3.2 - bitflags_serde_shim-0.2.2 - bitstream-io-1.2.0 - bitvec-0.19.6 - block-0.1.6 - block-buffer-0.10.0 - bstr-0.2.17 - build_const-0.2.2 - bumpalo-3.8.0 - bytemuck-1.7.2 - bytemuck_derive-1.0.1 - byteorder-1.4.3 - bytes-1.1.0 - cache-padded-1.1.1 - calloop-0.9.1 - castaway-0.1.1 - cc-1.0.72 - cesu8-1.1.0 - cexpr-0.4.0 - cfg-if-0.1.10 - cfg-if-1.0.0 - cfg_aliases-0.1.1 - chrono-0.4.19 - clang-sys-1.3.0 - clap-3.0.0-beta.5 - clap_derive-3.0.0-beta.5 - clipboard-0.5.0 - clipboard-win-2.2.0 - cocoa-0.24.0 - cocoa-foundation-0.1.0 - codespan-reporting-0.11.1 - color_quant-1.1.0 - combine-4.6.2 - concurrent-queue-1.2.2 - console-0.15.0 - console_error_panic_hook-0.1.7 - console_log-0.2.0 - cookie-factory-0.3.2 - copyless-0.1.5 - core-foundation-0.7.0 - core-foundation-0.9.2 - core-foundation-sys-0.7.0 - core-foundation-sys-0.8.3 - core-graphics-0.19.2 - core-graphics-0.22.3 - core-graphics-types-0.1.1 - core-video-sys-0.1.4 - coreaudio-rs-0.10.0 - coreaudio-sys-0.2.8 - cpal-0.13.4 - cpufeatures-0.2.1 - crc-1.8.1 - crc32fast-1.3.0 - crossbeam-channel-0.5.1 - crossbeam-deque-0.8.1 - crossbeam-epoch-0.9.5 - crossbeam-utils-0.8.5 - crypto-common-0.1.0 - csv-1.1.6 - csv-core-0.1.10 - ctor-0.1.21 - cty-0.2.2 - curl-0.4.41 - curl-sys-0.4.51+curl-7.80.0 - d3d12-0.4.1 - darling-0.10.2 - darling-0.13.0 - darling_core-0.10.2 - darling_core-0.13.0 - darling_macro-0.10.2 - darling_macro-0.13.0 - deflate-0.8.6 - deflate-0.9.1 - derivative-2.2.0 - derive-try-from-primitive-1.0.0 - diff-0.1.12 - digest-0.10.0 - dirs-4.0.0 - dirs-sys-0.3.6 - dispatch-0.2.0 - dlib-0.5.0 - downcast-rs-1.2.0 - either-1.6.1 - embed-resource-1.6.5 - encode_unicode-0.3.6 - encoding-0.2.33 - encoding-index-japanese-1.20141219.5 - encoding-index-korean-1.20141219.5 - encoding-index-simpchinese-1.20141219.5 - encoding-index-singlebyte-1.20141219.5 - encoding-index-tradchinese-1.20141219.5 - encoding_index_tests-0.1.4 - encoding_rs-0.8.30 - enum-map-1.1.1 - enum-map-derive-0.6.0 - enumset-1.0.8 - enumset_derive-0.5.5 - env_logger-0.9.0 - euclid-0.22.6 - event-listener-2.5.1 - fastrand-1.5.0 - flate2-1.0.22 - float_next_after-0.1.5 - fnv-1.0.7 - foreign-types-0.3.2 - foreign-types-shared-0.1.1 - form_urlencoded-1.0.1 - funty-1.1.0 - futures-0.3.18 - futures-channel-0.3.18 - futures-core-0.3.18 - futures-executor-0.3.18 - futures-io-0.3.18 - futures-lite-1.12.0 - futures-macro-0.3.18 - futures-sink-0.3.18 - futures-task-0.3.18 - futures-util-0.3.18 - fxhash-0.2.1 - generational-arena-0.2.8 - generic-array-0.14.4 - getrandom-0.2.3 - gif-0.11.3 - glob-0.3.0 - glow-0.11.0 - gpu-alloc-0.5.2 - gpu-alloc-types-0.2.0 - gpu-descriptor-0.2.2 - gpu-descriptor-types-0.1.1 - hashbrown-0.11.2 - heck-0.3.3 - hermit-abi-0.1.19 - hexf-parse-0.2.1 - http-0.2.5 - humantime-2.1.0 - ident_case-1.0.1 - idna-0.2.3 - image-0.23.14 - indexmap-1.7.0 - indicatif-0.16.2 - inplace_it-0.3.3 - instant-0.1.12 - isahc-1.6.0 - itoa-0.4.8 - jni-0.19.0 - jni-sys-0.3.0 - jobserver-0.1.24 - jpeg-decoder-0.1.22 - jpeg-decoder-0.2.1 - js-sys-0.3.55 - json-0.12.4 - khronos-egl-4.1.0 - lazy_static-1.4.0 - lazycell-1.3.0 - lexical-core-0.7.6 - libc-0.2.109 - libflate-1.1.1 - libflate_lz77-1.1.0 - libloading-0.7.2 - libnghttp2-sys-0.1.7+1.45.0 - libz-sys-1.1.3 - lock_api-0.4.5 - log-0.4.14 - lyon-0.17.10 - lyon_algorithms-0.17.7 - lyon_geom-0.17.6 - lyon_path-0.17.7 - lyon_tessellation-0.17.10 - lzma-rs-0.2.0 - mach-0.3.2 - malloc_buf-0.0.6 - matches-0.1.9 - memchr-2.4.1 - memmap2-0.3.1 - memoffset-0.6.5 - metal-0.23.1 - mime-0.3.16 - minimal-lexical-0.2.1 - minimp3-0.5.1 - minimp3-sys-0.3.2 - miniz_oxide-0.3.7 - miniz_oxide-0.4.4 - mio-0.8.0 - miow-0.3.7 - naga-0.7.2 - ndk-0.3.0 - ndk-0.4.0 - ndk-0.5.0 - ndk-glue-0.3.0 - ndk-glue-0.4.0 - ndk-glue-0.5.0 - ndk-macro-0.2.0 - ndk-macro-0.3.0 - ndk-sys-0.2.2 - nix-0.20.0 - nix-0.22.0 - nom-5.1.2 - nom-6.1.2 - nom-7.1.0 - ntapi-0.3.6 - num-complex-0.3.1 - num-derive-0.3.3 - num-integer-0.1.44 - num-iter-0.1.42 - num-rational-0.3.2 - num-traits-0.2.14 - num_cpus-1.13.0 - num_enum-0.5.4 - num_enum_derive-0.5.4 - number_prefix-0.4.0 - objc-0.2.7 - objc-foundation-0.1.1 - objc_exception-0.1.2 - objc_id-0.1.1 - oboe-0.4.4 - oboe-sys-0.4.4 - once_cell-1.8.0 - openssl-probe-0.1.4 - openssl-sys-0.9.71 - os_str_bytes-4.2.0 - output_vt100-0.1.2 - parking-2.0.0 - parking_lot-0.11.2 - parking_lot_core-0.8.5 - path-slash-0.1.4 - peeking_take_while-0.1.2 - percent-encoding-2.1.0 - pin-project-1.0.8 - pin-project-internal-1.0.8 - pin-project-lite-0.2.7 - pin-utils-0.1.0 - pkg-config-0.3.22 - png-0.16.8 - png-0.17.2 - polling-2.2.0 - ppv-lite86-0.2.15 - pretty_assertions-1.0.0 - primal-check-0.3.1 - proc-macro-crate-0.1.5 - proc-macro-crate-1.1.0 - proc-macro-error-1.0.4 - proc-macro-error-attr-1.0.4 - proc-macro2-1.0.32 - profiling-1.0.4 - quote-1.0.10 - radium-0.5.3 - rand-0.8.4 - rand_chacha-0.3.1 - rand_core-0.6.3 - range-alloc-0.1.2 - raw-window-handle-0.3.4 - raw-window-handle-0.4.2 - rayon-1.5.1 - rayon-core-1.9.1 - redox_syscall-0.2.10 - redox_users-0.4.0 - regex-1.5.4 - regex-automata-0.1.10 - regex-syntax-0.6.25 - regress-0.4.1 - renderdoc-sys-0.7.1 - rle-decode-fast-1.0.1 - ron-0.6.6 - rustc-hash-1.1.0 - rustdct-0.6.0 - rustfft-5.1.1 - ryu-1.0.6 - same-file-1.0.6 - schannel-0.1.19 - scoped-tls-1.0.0 - scoped_threadpool-0.1.9 - scopeguard-1.1.0 - serde-1.0.131 - serde_derive-1.0.131 - serde_json-1.0.72 - sha2-0.10.0 - shlex-0.1.1 - sid-0.6.1 - slab-0.4.5 - slice-deque-0.3.0 - slotmap-1.0.6 - sluice-0.5.5 - smallvec-1.7.0 - smithay-client-toolkit-0.15.2 - socket2-0.4.2 - spirv-0.2.0+1.5.4 - static_assertions-1.1.0 - stdweb-0.1.3 - strength_reduce-0.2.3 - strsim-0.10.0 - strsim-0.9.3 - svg-0.10.0 - symphonia-0.4.0 - symphonia-bundle-mp3-0.4.0 - symphonia-core-0.4.0 - symphonia-metadata-0.4.0 - syn-1.0.82 - synstructure-0.12.6 - tap-1.0.1 - termcolor-1.1.2 - terminal_size-0.1.17 - textwrap-0.14.2 - thiserror-1.0.30 - thiserror-impl-1.0.30 - tiff-0.6.1 - time-0.1.43 - tinyfiledialogs-3.8.3 - tinyvec-1.5.1 - tinyvec_macros-0.1.0 - toml-0.5.8 - tracing-0.1.29 - tracing-attributes-0.1.18 - tracing-core-0.1.21 - tracing-futures-0.2.5 - transpose-0.2.1 - typenum-1.14.0 - unicase-2.6.0 - unicode-bidi-0.3.7 - unicode-normalization-0.1.19 - unicode-segmentation-1.8.0 - unicode-width-0.1.9 - unicode-xid-0.2.2 - url-2.2.2 - vcpkg-0.2.15 - version_check-0.9.3 - vswhom-0.1.0 - vswhom-sys-0.1.0 - waker-fn-1.1.0 - walkdir-2.3.2 - wasi-0.10.2+wasi-snapshot-preview1 - wasm-bindgen-0.2.78 - wasm-bindgen-backend-0.2.78 - wasm-bindgen-futures-0.4.28 - wasm-bindgen-macro-0.2.78 - wasm-bindgen-macro-support-0.2.78 - wasm-bindgen-shared-0.2.78 - wayland-client-0.29.1 - wayland-commons-0.29.1 - wayland-cursor-0.29.1 - wayland-protocols-0.29.1 - wayland-scanner-0.29.1 - wayland-sys-0.29.1 - weak-table-0.3.2 - web-sys-0.3.55 - webbrowser-0.5.5 - weezl-0.1.5 - wepoll-ffi-0.1.2 - wgpu-0.11.1 - wgpu-core-0.11.3 - wgpu-hal-0.11.5 - wgpu-types-0.11.0 - widestring-0.4.3 - winapi-0.3.9 - winapi-i686-pc-windows-gnu-0.4.0 - winapi-util-0.1.5 - winapi-x86_64-pc-windows-gnu-0.4.0 - winit-0.26.0 - winreg-0.10.1 - wyz-0.2.0 - x11-clipboard-0.3.3 - x11-dl-2.19.1 - xcb-0.8.2 - xcursor-0.3.4 - xml-rs-0.8.4" -# python is needed by xcb-0.8.2 until update to >=0.10 -PYTHON_COMPAT=( python3_{8..10} ) -PYTHON_REQ_USE="xml" -inherit cargo desktop flag-o-matic python-any-r1 xdg - -# 0(github) 1(repo) 2(commit hash) 3(crate:workspace,...) [see core/Cargo.toml] -RUFFLE_GIT=( - "RustAudio dasp f05a703d247bb504d7e812b51e95f3765d9c5e94 dasp" - "ruffle-rs gc-arena 4931b3bc25b2b74174ff5eb9c34ae0dda732778b gc-arena:src/gc-arena" - "ruffle-rs h263-rs 03dcd486e88381635647a7386105cb802921b69c h263-rs:h263,h263-rs-yuv:yuv" - "ruffle-rs nellymoser 77000f763b58021295429ca5740e3dc3b5228cbd nellymoser-rs:." - "ruffle-rs nihav-vp6 9416fcc9fc8aab8f4681aa9093b42922214abbd3 nihav_codec_support:nihav-codec-support,nihav_core:nihav-core,nihav_duck:nihav-duck" - "ruffle-rs quick-xml 8496365ec1412eb5ba5de350937b6bce352fa0ba quick-xml:." - "ruffle-rs rust-flash-lso 19fecd07b9888c4bdaa66771c468095783b52bed flash-lso" -) -ruffle_uris() { - cargo_crate_uris - - local g - for g in "${RUFFLE_GIT[@]}"; do - g=(${g}) - echo "https://github.com/${g[0]}/${g[1]}/archive/${g[2]}.tar.gz -> ${g[1]}-${g[2]}.tar.gz" - done -} - -# using _pYYYYMMDD over YYYY.MM.DD given ruffle has an underlaying version -# (0.1.0) which could get a non-nightly release eventually (YYYY. > 0.1.0) -MY_PV="nightly-${PV:3:4}-${PV:7:2}-${PV:9:2}" -MY_P="${PN}-${MY_PV}" - -DESCRIPTION="Flash Player emulator written in Rust" -HOMEPAGE="https://ruffle.rs/" -SRC_URI=" - https://github.com/ruffle-rs/ruffle/archive/refs/tags/${MY_PV}.tar.gz -> ${MY_P}.tar.gz - $(ruffle_uris)" -S="${WORKDIR}/${MY_P}" - -LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 ZLIB curl zlib-acknowledgement" -SLOT="0" -KEYWORDS="~amd64" -IUSE="gui" - -DEPEND=" - dev-libs/openssl:= - media-libs/alsa-lib - sys-libs/zlib:= - x11-libs/libxcb:=" -RDEPEND=" - ${DEPEND} - gui? ( - || ( - gnome-extra/zenity - kde-apps/kdialog - ) - )" -BDEPEND=" - ${PYTHON_DEPS} - virtual/pkgconfig - >=virtual/rust-1.56" - -QA_FLAGS_IGNORED=" - usr/bin/${PN} - usr/bin/${PN}_exporter - usr/bin/${PN}_scanner" - -src_prepare() { - default - - # use [patch] directive to register git snapshots of needed crates - local crate g - for g in "${RUFFLE_GIT[@]}"; do - g=(${g}) - echo "[patch.\"https://github.com/${g[0]}/${g[1]}\"]" - for crate in ${g[3]//,/ }; do - echo "${crate%:*} = { path = \"../${g[1]}-${g[2]}/${crate#*:}\" }" - done - done >> Cargo.toml || die -} - -src_compile() { - filter-flags '-flto*' # undefined references with tinyfiledialogs and more - - cargo_src_compile --bins # note: configure --bins would skip tests -} - -src_install() { - dodoc README.md - - # does not have a real GUI yet, flag is used to ensure there is a - # way for messages and file picker to be displayed with .desktop - # (many options, but zenity and kdialog currently seem to work better) - if use gui; then - newicon web/packages/extension/assets/images/icon180.png ${PN}.png - make_desktop_entry ${PN} ${PN^} ${PN} "AudioVideo;Player;Emulator;" \ - "MimeType=application/x-shockwave-flash;application/vnd.adobe.flash.movie;" - fi - - cd target/$(usex debug{,} release) || die - - newbin ${PN}_desktop ${PN} - newbin exporter ${PN}_exporter - dobin ${PN}_scanner -} - -pkg_postinst() { - xdg_pkg_postinst - - if [[ ! ${REPLACING_VERSIONS} ]]; then - elog "${PN} is experimental software that is still under heavy development" - elog "and only receiving nightly releases. Plans in Gentoo to an update" - elog "roughly every two weeks if no known major regressions." - elog - elog "There is currently no plans to support wasm builds / browser" - elog "extensions, this provides the desktop viewer and other tools." - fi -} diff --git a/app-i18n/Manifest.gz b/app-i18n/Manifest.gz index 8d83ae06fa87..3764a6ce0954 100644 Binary files a/app-i18n/Manifest.gz and b/app-i18n/Manifest.gz differ diff --git a/app-i18n/transifex-client/transifex-client-0.14.3.ebuild b/app-i18n/transifex-client/transifex-client-0.14.3.ebuild index f8e5d92fb22b..5f6d98c3dd9e 100644 --- a/app-i18n/transifex-client/transifex-client-0.14.3.ebuild +++ b/app-i18n/transifex-client/transifex-client-0.14.3.ebuild @@ -17,7 +17,9 @@ KEYWORDS="~amd64 ~ppc64 ~x86" IUSE="test" RESTRICT="!test? ( test )" -BDEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] )" +BDEPEND="test? ( + dev-python/mock[${PYTHON_USEDEP}] + =dev-python/smmap-5*[${PYTHON_USEDEP}] )" RDEPEND="dev-python/GitPython[${PYTHON_USEDEP}] +Date: Fri, 13 Nov 2020 13:41:41 +0100 +Subject: Remove PATH_MAX + +This makes evtest more portable. We could try to use ifdefs to include +sys/syslimits.h on FreeBSD to get PATH_MAX but it feels to be an +overkill for evtest. Let's keep it simple as just replace PATH_MAX with +4096. + +NB: it's fine to leave linux/input.h there, because this header is +actually available on FreeBSD via the devel/evdev-proto port. +--- a/evtest.c ++++ b/evtest.c +@@ -888,7 +888,7 @@ static char* scan_devices(void) + + for (i = 0; i < ndev; i++) + { +- char fname[PATH_MAX]; ++ char fname[4096]; + int fd = -1; + char name[256] = "???"; + +cgit v1.2.1 diff --git a/app-misc/freewvs/freewvs-0.1.1.ebuild b/app-misc/freewvs/freewvs-0.1.1.ebuild index ea154f839ce3..6cda83da8eb0 100644 --- a/app-misc/freewvs/freewvs-0.1.1.ebuild +++ b/app-misc/freewvs/freewvs-0.1.1.ebuild @@ -22,3 +22,7 @@ pkg_postinst() { einfo first. You should run this on a regular basis to update einfo the web application data, e.g. via a cronjob. } + +# Only codingstyle and similar tests, require dependencies +# not packaged in Gentoo +RESTRICT="test" diff --git a/app-misc/tty-clock/Manifest b/app-misc/tty-clock/Manifest new file mode 100644 index 000000000000..6bfeefe284aa --- /dev/null +++ b/app-misc/tty-clock/Manifest @@ -0,0 +1 @@ +DIST tty-clock-2.3.tar.gz 7764 BLAKE2B 16e764c6321407ba1a4545de6f7aeb5b1b1f3e0d94d2e05ef9a95a20bc178b11962518a946aa292f35be0a293d12e3739353d2da80358e86d4bf9c29983a81d6 SHA512 ff3cfd5c6312377128b33c7e8c2138627b996d1b17730d8a8fdf55e95f2020e591e69317459aab8383d178f3cb71af046b84eeb81cabfa9b09a27008c5f4b626 diff --git a/dev-java/dict4j/metadata.xml b/app-misc/tty-clock/metadata.xml similarity index 52% rename from dev-java/dict4j/metadata.xml rename to app-misc/tty-clock/metadata.xml index bbb3474e75bc..c4519674f74f 100644 --- a/dev-java/dict4j/metadata.xml +++ b/app-misc/tty-clock/metadata.xml @@ -2,13 +2,11 @@ - monsieurp@gentoo.org - - - java@gentoo.org - Java + gyakovlev@gentoo.org + Georgy Yakovlev - dict4j + https://github.com/xorg62/tty-clock/issues + xorg62/tty-clock diff --git a/app-misc/tty-clock/tty-clock-2.3.ebuild b/app-misc/tty-clock/tty-clock-2.3.ebuild new file mode 100644 index 000000000000..4118f7d9021e --- /dev/null +++ b/app-misc/tty-clock/tty-clock-2.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Displays a simple digital clock on the terminal" +HOMEPAGE="https://github.com/xorg62/tty-clock" +SRC_URI="https://github.com/xorg62/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc64" + +DEPEND="sys-libs/ncurses:=[unicode(+)]" +RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" + +src_compile() { + # makefile does something with ncurses-config and calls old version + # let's just build it manually + $(tc-getCC) -Wall ${CFLAGS} ${PN//-/}.c \ + $($(tc-getPKG_CONFIG) --libs ncursesw) \ + -o ${PN} ${LDFLAGS} || die "Failed to build ${PN}" +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install + einstalldocs +} diff --git a/app-shells/Manifest.gz b/app-shells/Manifest.gz index 8a1fa8b24fbc..d35ecbb0aa08 100644 Binary files a/app-shells/Manifest.gz and b/app-shells/Manifest.gz differ diff --git a/app-shells/nushell/Manifest b/app-shells/nushell/Manifest index af989423f436..95610dc40752 100644 --- a/app-shells/nushell/Manifest +++ b/app-shells/nushell/Manifest @@ -1,208 +1,98 @@ DIST Inflector-0.11.4.crate 17438 BLAKE2B eaf0c7f983b3186e9bc89353021a10592f2877e46585bd50b96db9b087343d1199c7b6cf3fa53cd274fb6d33de025a904b8aa31a7ac9599ae3689ecdbcec34cd SHA512 f1f6463e033b6d3c16c51dc1e1a3f5569954308b95b59058294b7f9310919bbda797e99e6a07529071bb83f0688867a243997d33795a7136b0af73977004296e -DIST addr2line-0.14.1.crate 31201 BLAKE2B 52564dd603a9c02694ea41bafc91bf20aaf6837321407d2fdf3e7a0db9f92726c73735fb7d8424295bda9db016d319bd6ab1b3ffcd79df60656a0524006732eb SHA512 f665deccae566ec2754cd43fc1d8fc05db11320af54d0561a612faad769234e8b3b8c0235f90f86027a4db9b7ef2915c86398005c949e2c096fac8e53f3f441e -DIST addr2line-0.16.0.crate 33440 BLAKE2B b59a006ba732935d408d0574799037ef0a424ad3c27b894fbd7a9c91664460972a8c464aaad4e9b82b94e4cc35ee9016490bd469fa21358e11e6d78126378038 SHA512 7ea8fffcdff7f8f25c0a588fe2ee652053988ab2e1d39ac740f5199d6e7d30beed0272403d04b86ec5de6ad5459698cdf28f8efd5caab7b6693102df7ec4889c DIST addr2line-0.17.0.crate 32260 BLAKE2B 23c3715820a04260460a41695d535da3565f76519b7313d0ed684352b339de2ea668c44fe8ca58fc1a5b9f84cc5e9d04d889440abb5985bdc04b267dbdad9d9c SHA512 ef3bbd7c6d1dfdd0b47e3be1fb4c8b15ed61a769bed7e80dce80461a1ee13ef21c75e62e9a66328504f862341f1e808abec5790ac79784e18655afcc16206b95 DIST adler-1.0.2.crate 12778 BLAKE2B a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd SHA512 7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1 DIST adler32-1.2.0.crate 6411 BLAKE2B 51d44ccfd774158687b8244e83377e40ff896364e3d41e9015665131cc2a176d4ca0ab5a84df027dec0869ee735ee36f5687a06c1d2341de666070cdbab89483 SHA512 8ed72612fb78e213fc92963fdae0508ef26988656c939e6c9cddccbe2658d4a956a8ae934d9658262a8b2687dc446b3f1ee7614128b440487c81e606526dfda3 -DIST aead-0.3.2.crate 11145 BLAKE2B 2666f7c6a9a3ecac458fdda9d7698e1c4288d56b1d7f9fcaa91664a33652f91eaeda8807bfbdc3cfe9c29a9c8c391de9673c4b65b3e13f408ca5f1a59e8f8dad SHA512 803829ea12f3fe11c1e1f4d33610c361a11b33811ab28185ad4b54d9026384b8778c3e57cdc6feff8ffc56792b482fc64a8cb7daa14805edbbcd988c2d3256ea -DIST aes-0.6.0.crate 86774 BLAKE2B e687f2839b53adc3ef990da8221705a462015aa0ea004a6e15dba7e7ecc008d9d13cad6222b03244dc48bd1717a442e7aa5aaab6e97bba1d3be28c1d914e464e SHA512 65349285e429f9b8815743d86b3ebdececd48ce556a08b6ec5ec89bf966bc9b187a7df4fbe1f3b25172db3aab219b23f8040c1160359868e9f71d67a767c90c9 -DIST aes-gcm-0.8.0.crate 140896 BLAKE2B 5e0017103d724891b1251246ee9eb3149a997dd73641f058341f0d6bb441ff9a3f90dc6fd0aca3abba36ad642af10212ae992ac50faec3f222ab7df961ef271d SHA512 7ee59aa0d08bdd8627a471a57ab6bbc14686290e808b0909749cc08592ca6be76d1b83b5bbf16dbca34192be182f14d930729654b7a485bb448b0eb36a32f7e9 -DIST aes-soft-0.6.4.crate 99980 BLAKE2B a4b3838e0348ed3d7468f9d0e19d8dd45071ec54d54d538943d5afabd3f88db139c459574e6694e7fa86e4d77eaa3f75c11e3a9376f45429848c91889530980b SHA512 620b38b2a6437caf393e84625beb27afdf448acb52d7adbc9cba1152ea385bdf05a68795eee0f48fd90b5edfc25fd9cc3d42a0f2593dfa2f90d4f4f9cc893ebe -DIST aesni-0.10.0.crate 100248 BLAKE2B 2dba6f1004495a725acf171eeae5a6e393475323e8974eff2e4667194ac147dc3a52a9bed1b00cf7735d3671b6a2bd135cbb4dbde822d7c8c21af23692d3e71f SHA512 726e5213a81ea021d4be7c5220d952cb6f0cb0ecb6cc840b542e9f75539e37fc5d6378ad4f4d6a2bc7e7642ea07a18202ed32d3b6a212777bd7abca735c6707c -DIST ahash-0.7.2.crate 37192 BLAKE2B a2ea98d408f6ac72b96a7e14b22999d52a6839d724f3e8fc82f67ea985a110d8dc17847087e6aaeca477ef93afadda3488ee77cc5425cab5f77c00cd67ff4463 SHA512 77886a994102c1edf93b133e27658e3c84152c83597191d58c571dc7dfc765d41c2879ea55d64e04e3af804a4f10aeb1c10e33a924fd967b288e6d0b12728b34 -DIST ahash-0.7.4.crate 37072 BLAKE2B 3b82cc45993fd48d9eed018e14af005e2513938f34b195d4f33bc0d4031bc8027b082aa155b14e20e0e1e34b0f829849e8c614458805ce830652f34477b1d6a4 SHA512 f84e16f3b2764be95b4d82c9ef4bcd4c80983e977b33e1d4cc3c119398de6084428a0e7bccc1b182bccc21aa97855fa30b6a4041b961b58bff79b75dcc788005 DIST ahash-0.7.6.crate 38030 BLAKE2B aca3661477fcd7822d6d10970151e05c28e1615f8cd7ddaac064b15102027e404b19b0f3f16dd76145048594ea1c22ae27dd08cc05c411efbae9ec7a1ef55ce9 SHA512 61354688b6fb096359faefb6f34be958cd2215d56b88c22c737d24183eaad433f811bc9e64f927e4852c87d2799c22fda82b55cfbef2ed6357ff74f0c4ffec68 -DIST aho-corasick-0.6.10.crate 26122 BLAKE2B 752eccb2fbf36fbc73b8694033d2f80f6ab6d2a8c2ae023329b90bb252b537adb1e80a604b4266bfb1ccc2963fcaa6579be48ef011c9728734c7cb77fa3eab99 SHA512 4a21b0e68c416e5dcfe99ded917577abdbe7c92e50227b7906a2b3bd25105f8e7d03103514d388171a41090cc7bcb63bb5b4dc3c6847a9b4e09bb3856a1bbd9d DIST aho-corasick-0.7.18.crate 112923 BLAKE2B 4f6947d1aacf89ccfab0592cdc55fa61ef09cea38231d3f758765dbce328a810c0b588be4ba96e81d64955379ee005722d22a7aec39caea6e72342245d7ca34f SHA512 7a23b16231a90d23ee60ad4c81bc225410599a4560d33d3a203138fc540c39cf1000100fed3aed40dcc371c3635656a3792545dca5dd1aefbde00d8774eebd00 -DIST alloc-no-stdlib-2.0.1.crate 10084 BLAKE2B 741f6fb80d14b3a4cff31590292910415d47cf1c18a23e3db8da89995f3076a16163a25abfd6105602196075a3b5b1b9009e8dd14088dff0bc86b7d1dc4e977b SHA512 993d536f6e1759cdeb97f3008ed29c7d47734a92f80ca643ec1d7567b434900914bac8296ac649d6f7e4467668999fb2a15dd118ffc9cce39a035c489e518ba3 DIST alloc-no-stdlib-2.0.3.crate 10199 BLAKE2B 725d0ee96e91bf93434757340427bb59b6efb1e169e202fa9153b1ff34c002fd69e08de6940e1830484ab40cf72530abecf0ffde6e2a238e2974b2c568c79022 SHA512 44dc8360a77dd984e4211648d1a2465df9d664885ab8f523dd0b3200e3d28799e4149d7b3df87df8a9cb19602331e98badf596a626f484756cd14926bfea6078 DIST alloc-stdlib-0.2.1.crate 6304 BLAKE2B 949abd6c77f4c448a32eec2df8a2ced03a2fe9cbe39acd15648d7a9f791896ede108cd16d0d82b9b746885cbe6b78a46087024609126c837bc666bfc6bf3667b SHA512 282f1d34d40b994dfb008abba45c99c1bb7dd30a1bd7e168f4fda7297bec5edbfe28358eb3447d89d02cfada0a6035ef69388c7c533b00c31dbd4a1e873a483a -DIST ansi_colours-1.0.2.crate 10512 BLAKE2B b4acd4c2fb61e68711a5abfdbe04fc3a2778df29c4665637dc8413fb364842e8703054cfc119cf9e431a56ba4fd7d3a7d7c3dee6d7db648458e9bb26dddd650a SHA512 3f28117e804f82f194024ea502ca9a86cc458b55f705f643a8ab2a90a189ec21501708df5fca1f3ef204b57861b7cca3c21f7ca9537eaf4208086b0ec7652976 DIST ansi_colours-1.0.4.crate 10525 BLAKE2B f71ef0dc730cb35e634623cbf6888abb72519fa53b40aba49ad1151a37d98bf3ff93652ad67d276243c7ef9435a19b839a43a4122e451a2defc96231fba145e9 SHA512 36eef5c4c84f7f8bf3adb65eca5d7d2da48190c127cd76b78b7bb035cf98afbf2534b82bb293cc1e472eaeb08d541fe28a87b99ebd53dbae8a50026898b043b3 -DIST ansi_term-0.11.0.crate 17087 BLAKE2B 9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4 SHA512 a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa DIST ansi_term-0.12.1.crate 24838 BLAKE2B f636772c34e2d68cda7b8d3b2b86abda074585a62bd2654812ce92384244655a9197fa66e6939e19a674c0148ca605313d83de262bb18c2339a8a4eb4438a791 SHA512 b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671 -DIST anyhow-1.0.40.crate 34534 BLAKE2B 79a3731153f8e3ace906b9a360521147fd055f7401a99ea2373501ade7e49ecdb280dd59b6a3b9b2f88e90857302e71f772c767e62cb702e32c8343fd4b0f741 SHA512 5efc7347a7fa72abce9a8b3b76649abb00d73c16c5125aa4b6faaa7040eb5138d7d9470b66c186825c9651272f5c359578503d0866ce7242ea7ca9dc05087165 -DIST anyhow-1.0.43.crate 34968 BLAKE2B a846dbc5275906e9f8ec4d5019a0fbff56e16eb970f8f528f2a7e5e2078e39a235d879870ffb92d6af45dc01b730825beb0a346fd6a2de1ddbf076366cd8eada SHA512 d35eb86b3c1676a88fcd9fa8a956f0fb3d3a657caa777e27eb8d5f6a86fec352273c463782dd803a87514c72fe679855d7a379c63bb385df593a5e14c069b7a3 DIST anyhow-1.0.51.crate 44100 BLAKE2B 20683fd139775cd399bd0fd63599f64a646f8b74c65415af965d3c24690fd81fe48205bedaaaab92075b487b71d5d315be5fdf38ff7c5ecf3e1a1d693a3505ee SHA512 e8e3feebc3c96b7301787502f000b9940a20343a466ac48186c9aa170fb52f0db17768630535a8b475077733ad6ff9f843a3bd5ae4415c86bf83cae0ed0bad7c -DIST arboard-1.2.0.crate 37664 BLAKE2B b27d63676c22ba4029394b7bb9c844f88e81a8ed5e499b2984c85bcb17b54065e835a04b7e64c531744497e24617639889b509b7ab827d45b2055ea9d3d97f06 SHA512 438f73a69138f2cc6cb8a2de532f832b8f5150d110bf8366d0faacd780d2c44367364cf94edbdd813634b7900caf35cffa338437c056f82918f6475cf9beda14 -DIST arboard-1.2.1.crate 37609 BLAKE2B 775ff044b04ab54b36b40fcde130c3f6a225ef1d842b3e9d3ef93ba67d1dfd2a298d831d3eb56bed25b6de62a6c0b02bc5fb2c526c97822df24976f6beda0177 SHA512 7d9ddfbbd8804b6331cbb36f394f31b19cf6cd5422292cda9b2f9b50dd731cecc32e6abac3a76c7fe69dece871e3797b5bc21b3991b4dd9a6616ce3147fe5d37 -DIST arrayref-0.3.6.crate 10035 BLAKE2B 88292fa4b3ad4fccd03772c2f0eca04cc13373fe094358bac57d7523c256d89f3087603e5bcb2a0b15d8b2ecd48e904a822b2cb800276a9c47ad6c6b660d9d34 SHA512 368341d00706c1250ff081b0d99c36c9af694a62ff4f4d8c837234340295771ca49c5439b24b6e1a4f2c3c5821764e98881dcb22d793f83de632fd5cb457671f DIST arrayvec-0.4.12.crate 26551 BLAKE2B 45514f09f0fd1fae7afb7dc812142ac8d88d1f4b81901db405c79dbeba2d29fea13ec22cb08a43433321931295a9f14456a300e814431b8fb14037d2f47529e9 SHA512 c03972056ab8fa30fc53fdc2bfc5e501f7644223998eccb73fdc2e737f7e25f4bb0e531f3eec38f7f3514760fb385fafd06c3d38531d13d92faf841820d4ed2b DIST arrayvec-0.5.2.crate 27838 BLAKE2B 51e2eacae0ef148f3f52d21ae00794e540e7ce4c013fb496dd1347ad91ffbbca199381fffbb064225f829216f6c5e915edfa64833f91fabdd13c3f011d86491f SHA512 1896b5f64b4dbdcff8ad234bda4ea8129bcacf87839347304717e94ee9f369cf5f4371755e453ff7d72817edb8f7fdbc726d77cc4f28ed05148dc89c7714b004 -DIST arrow-4.1.0.crate 348780 BLAKE2B 18d55744f63508a7df5a3d4601e85b5bcf6e91a8396d4071f10c4b5d6e545ba88708e36c75fc0d66d01ecdb5205422742672523b1f9856fb45e0fea7dd13c3bb SHA512 2189097a699a8d772d19fc4c1c26acfab11cd530b2f597f5273dcb46d757cb1332c0a43fdec14ef543354b482b08fffd1135d883d3b0dc471e19d109e5a6488c DIST arrow-format-0.3.0.crate 45421 BLAKE2B bd9e316a9f9f76533ceab586aba9521b113ca4a78dd3ed73bd17dff9e8b1c20987925b0a39021bbf29d405d71482818f6f42861aeb64b4e4b75a0511e86556d4 SHA512 bae00890f5171017cf6370cc15c0e2ae00f7819b32d2e90caad46dddeda4d3cd6c82bd813bb49fa123a0abe6b965c092634b82cba3d0279794b65cdd6ec0532a -DIST arrow2-0.5.3.crate 639111 BLAKE2B 6f9d046c3603599afb7a102101756ac2602a650d21e29fc52be10c21ca99c914a96a41f864fd957a918a3d1cc79992668bee9eddcf1b787801f5c706406bb823 SHA512 6a984c03e6bc599a63c625558cf79d232f75b4648d1f416c8360de60640e0c21c75a637987a5259e1cce11a14f2b4b880ca452d230d4d44dbca91aea5a2e834d DIST arrow2-0.7.0.crate 640998 BLAKE2B 79628b7b83e92e893dce6344bd4df6f2179f9ae716a6fbabb65cffc11c02242accd5639cfea5cf6abcf5dc7ced88a68b48436de8b97bacbd49783be31fc64458 SHA512 d822c7fe2710f2bbe8f4667f493f47873062c4d46032423ec49c963256b2edb49aa97c0c78ca2620dba398e04e107b40f92cd797f7c8d121a001a5fbdd4477fd -DIST as-slice-0.1.5.crate 7986 BLAKE2B cebed41646fde627d759292bb9b1f5ad5033b526298a61aedb425d99473f37e2d3713b2cb10235986a50737573dcda3250dbf62c931a9f4752a5d0e01fc60462 SHA512 ada4f8ab265d6c6a8da0f98159a379dc4c4f4eb6cc827ccdf18fd525339d391ea4396de6f4322092ad00eb53156fa43f90ee0df09155554a3f6de033e5abc58e -DIST async-channel-1.6.1.crate 12574 BLAKE2B 5c5c8f1cf1458d952637a439a1534e68bcb4a1cf478cec6b6d224387f56c59dc6cffd2e3621dc24e03e20df3fdbda5b8855fccfbbc26a2aa03656aff3a17d02f SHA512 797b1f5b4c07853f78670e62b67fb787c329ffa2c89475a3767a963d524a69dce082cc7f3a2878d9c990f00ae2d9cd7e0d21743fc4186769c238467bdb20c65e -DIST async-executor-1.4.1.crate 15490 BLAKE2B 2d85825f9deec4a89eae4be6c2899d22bd96f095413598abe2a58ca07e6b8745ee02a6e1db6a3be034159c7844e55009d6da9845116647c0b021dca115acf6be SHA512 24f8403f7cf7639a9477c0a4ee6fba8ebf73fc64b5c896ff07b5b9ea787ca65fa2e642e46a0ba3796e76774d46373e6ea6a20309feaf1f801281aea20cf82578 -DIST async-global-executor-2.0.2.crate 11665 BLAKE2B 7cbe0c3b4193061ab5e36a9679d09e9046eb11cf8cfcddebfe6d86f6a9a09b6af9aac0bd3d673db1fef278542be2b417316147bad395ca7cd0ccc6ae43b87408 SHA512 13d2d0b400832b1965cba680505fd65b87a45a4ab69c110a4a67394e726d340331fe292f6b1079de277d447688a1b97c15c095d106e132d02628892b825a3612 -DIST async-io-1.4.1.crate 31478 BLAKE2B 241c1b3ee0aefeac562e210b4206016d8bf9e4dcfadab878bd53795884f96a1eb66a02db821b27c5ec410b90628c3e065638625c468c9a4fd696572dfa8d4e4c SHA512 c7381e16814920524e291b1e363fa72245e2dc47f7753cd10bbf505e7e993c50c81f0867d3bd41158f194cc3adf57e95304934b239d585780e6650a819f611f5 -DIST async-lock-2.4.0.crate 16144 BLAKE2B 0f1f798409576d079d8c41aadc74f7671d9a94454cfdef15e341004f13e529c08c15aafae003a80972115b6420d87a2efbcb1a82fca0756d51f072e4130d152b SHA512 c3eade585da23e3aca17be6110290461bc2cb39b9fcca9c35d8ce71669883d8d1ca42fdca64686126dbf063f289b0142c508b7eb852babd702f2cebc4c4290da -DIST async-mutex-1.4.0.crate 10223 BLAKE2B ce1a32be713c33680081ef5d14ae159fa3ad6ff569430d8336268898a7adddad86472865afccb4c2b7c37dc50cfd8501239828f263e952b88bad23c0a795af42 SHA512 5957912e28f9e5a09cf85a0f0ee44e9396161469cedf343bb37dbeddc1dd1bfcfdf4f162fae6e2543edce3e148fb34bf80864e2f35f18e6d4f6fc9190b1179bd -DIST async-recursion-0.3.2.crate 10774 BLAKE2B 7b0305a794839f78acfa4abe2da3d3101f645463e5904e7fc6c15b4fca2ddc5ac94214ec998295230e904a5ca23a21bf2d63eb9d2ac586996fe9e3f2a9c97358 SHA512 cf87ee53655f496d604771732109d64ad10a9b2366351130db9e378ace941d03a7cbe770519703058a429f7893151cea4537302adf1bee6465ea2019f8a6f3bc -DIST async-std-1.9.0.crate 222169 BLAKE2B f8c1360d515d151b5534ac46d38088b77dba7cfbb0228a03973d9907aa8666ba973279261b3cfd88b5503c8a5e014f4d95b5f26d9aab82b381a1c111c62ae9ab SHA512 1f0a156e1f020d07218a151d4860ca0ff5d9b84a6f33afa5da8e4b05f266d458187a703a75d1db19dc4d2a6df70ffd51148017d9f95963efea10675f87ce4b56 DIST async-stream-0.3.2.crate 11869 BLAKE2B a7c46da07ea2d797256879b3f8bf029e85993ac3bd16300b48505401c08581bc6cd51aceadf5ad5e696876dda3587a9283d56dad11e7c52ea6f809157ce48250 SHA512 4e0e44a25b6557b0063fa1b02a4c701e8b5ad7354acc06037367ccac33386e5129dfccba6721ee1998c0c5c295194db54bba01ebe9afa57f7358f3cffdf078ea DIST async-stream-impl-0.3.2.crate 4100 BLAKE2B 93e294bb0ca1ad7a03ef4f9488cec60bbaefc0f9de2e7f03d9c4ffbfadc858cb4d2aca924127e29434fc1c2e19762acef3d441de486f837f6eadee1d75fa66cc SHA512 f381c48c57aa72c08708fe7a2a30d2ff3a73552b69a45d6147915cf0ea426743576e1254cf5c96a416bf7a983e056db7a5b415efae2ddfc78fb2cca4cbc34574 -DIST async-task-4.0.3.crate 28770 BLAKE2B 66186991db90632ffb43c1e6a46a3a6c44fbee1e021b9af7999fe6400477e482d00e79bc8e299e4ed0b05d8d70ebe9a2b824c081e90a79544c53cdcc423527ec SHA512 cbd625c6bb72cb9af3b4a7ba168130125ec180952a55828fff2998b40d341ee1b1b5a0eae07944e9dbaa6a4acb19a1f96200721b6abd61594ffd88c6e4e1a904 -DIST async-trait-0.1.50.crate 25321 BLAKE2B a5742a3496530b52b32b61aaab483d1ea066119c67290162fbfa2d45c47318fef2d9428c4bd60427ac2e7ee62575f54f46c61c55042eccef3868408d07e3a958 SHA512 0f2694fdce91f28041e6afdff1be574f19665ff874337b24322214393ba58a0b16dce5b4a6e0d0e5b6881ffbf071aa117c90210322bb4397124d16e58d63de13 DIST async-trait-0.1.51.crate 25531 BLAKE2B b4ae85616d5f84392381539d98c1751baaa01cf936045423179538fa4e027d86c8aaf42f98d4e781e0f8ce7ee3bf95d64fc5aa624997fa4aedd06f1e9144b11b SHA512 9a0505109f984bde511a6e1543925ac447935824594fb0ae3da6af3f72fca29cbbfa0cc282f751bb2c597e73084d831fd75c202beb5998cd368eb0c13a067990 -DIST atomic-waker-1.0.0.crate 11771 BLAKE2B 4e94bf07e1df3b605bd0f8e8f8750323a5fa7a4d9c703b2183323aea8293021ac3028c6b03482941330c598db78aca0af4df06d346dbf581f617c2c333a997cd SHA512 cbc3e12c10f20e1b6d9a03097159a098c5e3a50a941b742891bd39bf0f7310986bda3e1e4c2ea0dfc82a70d9d57342889c46c11fe0d328372a6b3abecf7fa9a6 DIST atty-0.2.14.crate 5470 BLAKE2B 2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab SHA512 d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9 DIST autocfg-1.0.1.crate 12908 BLAKE2B 40c53cab298e4f26634c3acff3ece6a3371188d91dbf377ed664eabedcde20536edaa93daf406618f37edde019f049a6e7b9a47f627344587dbd126bee2b5e3a SHA512 630b348acb98b012e97804e6325d03c89abc22f2157762c59144c04e6c733daf550bdc7f0fe0b9f3b50e15dae8c1c3c4bdfce3d805b02f0fc987311f5332419b -DIST backtrace-0.3.58.crate 76388 BLAKE2B 7821be4aacf21bf392c287250ac6d3310b7e416417cce5586fd5f1a4be44214ad926b90c6da80728f227b1890b5051668f8b75c7aede79b3414b53f90f240bcc SHA512 1906d86748800c7c005524f02ecd5f54cbb3c5bcee0106668b8b8526cd3e3bb9a7e57abefe62d2596363e5c2adee423ed839388ba49bfe48e1423ae49320a06c -DIST backtrace-0.3.61.crate 74284 BLAKE2B 3e66726d5ed8130963a988dbb751828447073467bb6ab4bfa1c385d74f991b52a0f3ccf00823b74a48de3d043e6dfcb474644f7a81ea9cca7242b272cf715aca SHA512 209105f135720b54d584c7ccecdb16b49381cc7531c94b81ff7279a44752ee11075cd85960f86f809a22ecb3dac6728afa05903c1d355df3ad8abf4503eec861 DIST backtrace-0.3.63.crate 74280 BLAKE2B 825fcabaddb436d33e179630301657d212c9364b323bfe72e8ed8edda5c0c34abe36142b0bc34501d1885d40d55ab53c0f8bc6387e35ef86f14a9d010c426bf5 SHA512 25cf411ee21c796f39a45e6320374b38f62580ca853e560b3a8ec596f0ca6d60b94539662b1a8a3a3046f481b8b84a5b84983e1d2624aea297090382eb99b25a -DIST base-x-0.2.8.crate 10614 BLAKE2B de50c274295b12234d9c4b8a551058b3345f3f3801cda0141f18b6df9e0f92d2a1fe09dca185e475fb95a1b2bee7935549d1ca1bf882d77e64afad5bb0b55955 SHA512 ad140fc44bdf0342875b7087ee242e70ebedf591075cf80d2362f74e544882971bd9b1cc21dc5b4ac13e38710ec0e087474b54b238d6ea6748d3ca4755b25929 DIST base64-0.13.0.crate 62070 BLAKE2B b957f65cdb1e28baeca0cefc92fa98be797409b7dabd15e0e88db6cdfb89779b662cba9f2270fbf3b7b66948fdc46c118b8040a78ab72049c48a928fa802bee0 SHA512 991a72999839daa232f508c5b24e7d3225e8a26db8d1d0e747881b115af9e408b92374e163b31e0b0d324c1c2e57e8e38d66861b61eb0a1dba87bb5871940151 -DIST base64-0.6.0.crate 25720 BLAKE2B a9fa473ab7e11b9579addedd32ef3cf17136d753114305a0e4a7357421879108fbec2569f41e78a26e77c2b1709e825382275aad07cb63517867fba61f4fce52 SHA512 e81dd6c8b89adb2682eabed43b6f2b91623f04b44e5962b9c84ad26d41074d0c7f0a06b20c6dff70841aa23a2c34ec68805db04d7aeebd1f23b96d0e908b35c8 -DIST base64-0.9.3.crate 37993 BLAKE2B c0943b223d0d35438c647aa53fec5f85e65a78a5d272e4c65865bf182607b44c45b3ed1a0353e081a9dc5d9f4c9cda6cc6b8d68929a2676a512a7907cc94d8b6 SHA512 4790e4de201123e7b3e3c8a574c92089e38900a67f1bb4868987da4088785ea05e4258559c1c32be67341c2ba8a19deacd156492d8383949e1c9a6ae218b7eeb -DIST bat-0.17.1.crate 1163998 BLAKE2B 3ba6a86a8a6e3658c086bd664c259321dafe2ad4303274f51c38119a70a97194758b98f35d8007e53f54e2945cf409dc0ab097c29e84a0bad1334ebe9d06f677 SHA512 b921603fd71af7d21899e2117d6d9275a8c1d4c019696a391fb5de84bcc09400e106268a1f91f36b1e0864056d69a9ff1c197436e53c7e0f98e4988c99745a04 DIST bat-0.18.3.crate 1333856 BLAKE2B d2262bfec356eca6dfe6508e4ad9e3fbc01f6f3edd6523950ba1e2e9b9be840437a857a0f94fa84a2eaa4f886581ab100cbd399e6c5d83c565ce40e749f376f1 SHA512 078a08248b63ab602b78f05efd1721a3e1173c1b6ec9eb1f0d0e6bad954ef6c2063c6221558c102e4dac79433c2ed3bc69003d0aec4b49722b6e574bd8f7f7b3 -DIST bigdecimal-0.2.0.crate 25650 BLAKE2B 7f1790e037f5a46516df2bdf4d735bbc64c34f1977105dbd1b58e0bbda48b478f33acfa51f5a78f7d764d48f0a3fd7d118ac24b86dbe392ff4c44031ecfe46c3 SHA512 1848fef8928b51bacdfdac5cf3b33b5a9e2dedc4ef91d41f6e3457a2006976a7dd32b4bac62635493fcbd460ddff7640bb95a72cfca6dabbeec226818995c88a DIST bigdecimal-0.3.0.crate 26679 BLAKE2B f0bc55c8b90b6cee84b3452a078008263bc04590adcc60f680e833ebd8b125699af05073e4e3cc739dff7985a481601be466c349a8125db69c7d45c62bca9890 SHA512 3a55f6ab1450974fe58dac268019fa7f76b0dee131ed66f5c5529ea28da5d9e7d11579585f28c0d3d45a6456992cdeee81df524c0c7bcc5c3dc86b26d4f12981 -DIST bigdecimal-rs-0.2.1.crate 25599 BLAKE2B fd48c918e59a82e88f8ff4481360e0e91b759669367723338343cf8defff19123ab419f8cf7a3d38c3f3958d4234e570196fb3f16b1d6203e3778616abadc901 SHA512 d4eb7884b1fd69c73270a969b6450d31adac4057a6be2e8b38940e325cf5530a2b65be2ac6fc66b3badd5435ae00f5530ff791660d2efbfd288202e127bf3ec6 DIST bincode-1.3.3.crate 28958 BLAKE2B ea01d2efd8149ecba5e240ed989268b683d542a5f369902d316a4fd1ae4b8edd94e2d4a8cbff0e96646eb29facb04a84b249d74f0781dc3d29c8797ac975aa9f SHA512 49e39d71214dbb623a18e3852f6f2f2a5c3f951b64107d66c8adaa95a442a3283fba978bca41b126c9879b12833b945f478d2c77d35482b3577fc1a894e8e5f3 DIST bit-set-0.5.2.crate 14093 BLAKE2B 06d41a217438d9a00f8e57e592d12364b671d082f21a4d174673bc820dde28ef5ce02e782002d03c9311f71b0130eeeca7cfacbc4c1b27475069479163643ef3 SHA512 9709f35c7e69b84eed61f73da99ffe0693d1d0fa5fb94d13759cfbbb9dd4b0bb27628c3200e4b29ef29cdb0aede5fd3d7ddf663012b2c5946975bc169efbac34 DIST bit-vec-0.6.3.crate 19927 BLAKE2B f5bd3bb9c87fdf3b206739b74df20cab50a1a45af3a58b2642a5a061c26207884be58ef8369a3cd06dfd3615bff0ce15915fdd4b6b6f03facc4a0f86c0b7e910 SHA512 b4b4a82c80d0ff13527ae4fff449ac9c1c7bc519c013af6ea3428348e0e5b9306b725c0a13a42d7d9dcf0f895a9eee0c63695a2503eb7fd2200083c9ea3a9aa8 DIST bitflags-1.2.1.crate 16745 BLAKE2B 0fa6d3ce44aad7616d5cd02aad8c1d0b0fed4022650eb43067c4a72e6fc88da05442674fa51826e4858a47c9de233e1ba2229820af094197cd11bb416ceffb2b SHA512 ad89b3798845e23737a620bba581c2ff1ff3e15bac12555c765e201d2c0b90ecea0cdbc5b5b1a3fa9858c385e8e041f8226f5acfae5bbbe9925643fff2bf3f0b DIST bitpacking-0.8.4.crate 20354 BLAKE2B 3716d106ae64683f980d3a3267f88a476b9554e787ae58fa20ceb9288e175865cfd5d8b30e823a481caad8e73469f84deaccc36ee41f54d0bb9f89ba4c9b48e2 SHA512 c03860e3b8fbbf32bf6107de36ebe30ca84afe1993b20f48e30f663fa6834fb7dd728d9a098bb4d0455eace0e51c2961f9509ea7254a84b74fab9cee3a0dc819 -DIST blake2b_simd-0.5.11.crate 34096 BLAKE2B 480fc200ce3fa3bb364ae05590fe26f59efb6f81fc2fcb7ae1593671677daa6f1b526d800099d002239e2ad435b919e9b32778021c0790954383079a49a90965 SHA512 4a7657db637869465637cb9a65cb82e7a119c554bd4d532aaf84f9cc77a494fda07d07db89c73e92e5bf4844bb1be53062fc61120e839e414e938e487e7f2257 -DIST block-0.1.6.crate 4077 BLAKE2B a2c11873b8cb1a1ea399ecc99ed45e5d0b9399bd88435cdea346910b8707b7da94eeef522dafa5cdb09929534472b2a096c03c373744a789962d4175fd1b110e SHA512 c278e3c0346cae423b533a8f5d6b822e788ec450c92ef0f5f559d5705764a0a11df49f0f66bb1c8af7e89bec8ec802934676b969e43f92255a38b210d0fbd710 -DIST block-buffer-0.2.0.crate 6953 BLAKE2B 50824cd61b043523e1fb1a09da064b5fbc6daf46aa35683a1e3d64cbf313775133aedfa781f82550e1029ba56212e85c4a6b206a622c3a45f3eb10155eb9df72 SHA512 4d3b4dc5ffa3083e27781482993349c712c43b737e701d371a4e50bf160a1f850db2ed453dbb3d4b25145f3a1d590cba2660e835239a8103843289cfc9b670ac DIST block-buffer-0.9.0.crate 7108 BLAKE2B 42e99ec46c6e43d5f85e8d6d0a8fcef7175c97828758c93e55505c0e18e2646ae77bf264076041bf682532e28268a4978dd9c822c0475347ee3d29c5df2601fb SHA512 2d0f8908f59d4b1cccd1fbca0c1fa3cc4b224f09549669b28a16af5acfd4369b66851e9be8d65e1df71be998fbc42fc130ad32b71e035d6055724e8fa31fbf98 -DIST blocking-1.0.2.crate 18571 BLAKE2B 30e69dce433ba3c0d153275b5a56407237de93a50d7a3f9b97505b17899400f8cc8c3dede3f63fca26d5d49e88c3c9ee7ba91401061dedc41358efe24a9bf2b9 SHA512 f9048544161cb3098ec7362487c8df4ece972445dfc94196cc2cbe7faa2b6f3f3e5abe56310675c798636148b0b709d864fb94959d36976043886feb149adb66 -DIST brotli-3.3.0.crate 1375755 BLAKE2B efe8c5f15a89fe2ad6e7ceb5becbcd4a0f4046c5e7b982b4c31b6d4faf22a03f671aa75a023b644e68626522fd104a6fddc35b04897a34ad2e4d5fc410062bbb SHA512 58da8c12a314ce5687697805065fe83c991b1e4468af16ebe2b8bc6848611b17065210f2da3e9774d40cedbd526b35727bf5876e82367ada07174fe62a00452c DIST brotli-3.3.2.crate 1368962 BLAKE2B 809f3229e891e64b5b430ba2305fe3699079d81a72a65bf1ab242782d48eb24a965803b24b29f681a3369739b72b87f27dca296b57a31d5b15c55205b05623c3 SHA512 8d577b615bb3a818cc33c738e9dbf1561bc4a8d5bf70ecf03b936ccb6aac3dd317a0efc1200b41ce5f4ec09dfb407e3f6663e73b6fc1752be25dee96507d80a6 -DIST brotli-decompressor-2.3.1.crate 193003 BLAKE2B 4fae3999f003750f4514777c60c9462d717f27baad86df71553134e7ee2dab333e75246ef45bc78f14753d51f03e8439e9afb5f8d0a9448eef81e5db13e8be89 SHA512 c9579de520ef99f6c151bf08d11c97c0127da03d8150c404d9c3f8d79fdbaf0acd471f537e621baae58bdc77de4e221544876bbb5d876af285a4351ce0e85be9 DIST brotli-decompressor-2.3.2.crate 191197 BLAKE2B 7038f45daf57419f30e8b4fe420abe8aeced720562f99cc4739a8a07e51a1302154f071e7d084d3f267fd115f1c5024e41b65cf103233beaf474929afc757434 SHA512 4d2329ff2645e299323a9b8af619bdf956b8fdbc6bf34b613969eed388c199f6b0e12b5cce9c8388146afe0fbfdd82b460f927005d9ae0a0e8a436a79d5f004d -DIST bson-0.14.1.crate 41912 BLAKE2B 47bed76a1af1f7443eeb42e7dab0fd4743e936fd4c7afe4b30fccdc7e5108833815a4b257e1090c27ba9d9b61d6d52f9f19fad87b52bcad1e3d0ed7347fd5ba4 SHA512 4e4f07d9fcc43cf11d05e3de9dbb2ec5a2c11094132060541907b121c291f50c0419085668dd01e84d04187115e981821c0246122c7c90a8ac819bf2ee9c8de9 DIST bson-2.0.1.crate 63618 BLAKE2B 3eb3c4b82f4cd446c6056737a55b3d3be4049981c7cb243318286e01421546cb81568d6fef3e55b2defa8a24ed8100be69b35399f186e9826bec43acd04d48b5 SHA512 2bcb9c205cf9369297584f0c61bf662191b7e099fdeb1c39d223060da5f5d300a6d82d2211319b0c75efd96a487a06692b6c93d5f6ff0c57ecdce406ade890f7 -DIST bstr-0.2.16.crate 330346 BLAKE2B 75a345f3a5d428ec7278cd10fa676f5bb72685c65c4fe68163943cf3142b43ac45d458bce9323447b201ffcc91aa82cd8c762cb1954c055e34b1a5cebc686ee8 SHA512 33e82e5637efdc2f404ab9405331ae135df12586785491c3e61e70ea8406c67e2109e550cc70a4ab8e95d054e8519c48257fd3b55ef0b67b2530914a9a0b0fac DIST bstr-0.2.17.crate 330350 BLAKE2B 90c3a48d78b73d7e36a3da9fda0beae6e91ce534d17198ea8ceee0b613d03297f9dd8bca30e1ec5da01d1da359a1da72b2c2771b77c82bebab5006cafd665192 SHA512 883eac8210d14f89517b4dd5e25d02c97cf31602ec74498b5e186112ba0f154d47de8d1c41a8f4e5503f3b53c064e2c976b60bbfd63fc28b186bc006e00f20c2 DIST bugreport-0.4.1.crate 13793 BLAKE2B 00f622bec629edf8744ca3e5cf8097ef4b6bea2516d8de5c0cc9f6aa819424e3ab49573dd7f3d00f6d406ddc077413c045d08a0d9092e44854dd2d91164d0220 SHA512 ad54c8f52169594ae010093b818255cf16b44741db6802ffb9eb4c1fe699a59183f3505f553f8345aecfe3afd518c4272625adee0e880990a38b0bd9a9db6eed -DIST bumpalo-3.6.1.crate 133836 BLAKE2B d67f19bd68e87c1c1360c77df2cd9b11e66f4db3ed5468463d266d2ce187006f2b2117f647a9c331838b8ce6c50519db2f9645fbce190ade2c10a0284b29fa06 SHA512 0d923bda2c98bae60d8ca09d63dc12b67c8fb5addd4a675e27b619bb41b36d3dfc0742696fb53e5fa538790814cf2401d15b110216daf49e5a2ce046bd540866 -DIST bumpalo-3.7.0.crate 134261 BLAKE2B 15c4944abc803537c57076dfa8f5fb4b59949909450edd9e043a6cd438ddd227820e20e95236324c06e40cb27ec1e4d958bebf3d38df90f0723b8e30df79b6ef SHA512 0b570e1baee530b5c3f775330ead7cf5f8878eab75e5a6a61b5d3f64d4d82912cb26de1c098ec9492c29c7a04fc49565db97a54373c546d8ef58aab276d77c59 DIST bumpalo-3.8.0.crate 79835 BLAKE2B 3937c4ca9d7c5e2ffee229c8f5503c6a59f2fabfa3b7c81fefbf5df816efc5f601aaca4b606a62e647262acafa34146aa0906eedc09368e16eb76b3c6722e8e1 SHA512 c9825e7638bd54f97877adee8ac8f6a2cee308050c3f446f9da3996688ec3d779cb6eb935a440329794fb534958a6e89749b44a9bb27dfd219a963f64a6bcac1 -DIST byte-tools-0.2.0.crate 6454 BLAKE2B 8fac079ccb1f8bdafacfd54d0bb20628b3c1c08ffdc86feb70c44ae973cb36dbdb8bf92fcf859535d5de0098b936592db68e4951edba8890902107d8952fc314 SHA512 bad83b237d3f8dd1784f9031f26dd8ce2772aa9d307951cf6f5eb6c445567f80b554c26f597a2933d4164adc110e42db618f35ee68e951a0bb837abf20f6b0b5 -DIST byte-unit-4.0.11.crate 10875 BLAKE2B ef7038806390a662b7b982fd6f0aeb9ca865549c25e0af4901d9eede0b263ded1a20312e7e1d947159c7e358e310f14a2707e7591faa940813811c0baaae95da SHA512 5b89f7557bf44dc2fe5f86cf6b55fedcbb4b879a46eebcdbf0f9c0d420bb7bca745e80648fbdfc8d32a98f7b85010cccf44a0f892005dcbb513103304c0e0836 -DIST byte-unit-4.0.12.crate 10873 BLAKE2B d684c907e9eca3277303e03b3f2c0696307b7a0f96d8bc5269b953667d051bab8778e6d458724d21a284598e1e58fd29338244dc47922c7d7c2861519bf56c83 SHA512 a5d482a504ae0056b11ff4f9a407b0805a8de60897f66f73a20e32106e765584777f13eb203468630f2dace2e2408b9399e9bd532ed073498002752ae179cea0 DIST byte-unit-4.0.13.crate 10846 BLAKE2B ed38559dc0883590fba933c6326d6722cf151257df9350f3730a7ff90a37a2f5a95bfb3d5a337e7c0b9fa2ceccca26671e9ea10b668c02c4b9e6403f70b699b1 SHA512 d100207e25d2a6e7a1677ba13703518bf157aef3a641020f9b569546fcf7d0405d73b8a9aaedcba812584537c0ee5d94a048e04673f49458626bd63274afe197 -DIST bytemuck-1.5.1.crate 24562 BLAKE2B 25221f8a42f7b43fcaf94351fd1c42c3640ebcec254a73d0083c5880774db63e74b831b67092e20c9d80dd04c7d6af0ff28b2c1b2a53bfda465453e8d79dea8d SHA512 23aa2ce347d8cd031e341acbdd4d3f4e0d950afe3b215e0c61d2a313a62f139710333f0fcec9510a3007e31d50c5bdbd765d52ce33713b594476de456babeb31 DIST bytemuck-1.7.2.crate 27489 BLAKE2B 2541a7561eb34351f58266451a020858d8ac1ad30ecb95b97d576e72532cae37ef0b747e2259aaf6052b65f951586425044f824a00dfabf54bba9462edf94c2a SHA512 fae361f5abe67215a7591d421a0b713b77b437123c56e21dd00421e95ab86d9dd9b0bf1daa6623b833ea65681fbeeb58f6feab9d323964304a3250f24df1ace2 DIST byteorder-1.4.3.crate 22512 BLAKE2B d39c546ba7346df315297fc53da4bfc77ecb1f38567ddb788549ee31cae2719a8bc0b7d1f1705abb3cff033aa57af004987d90748f5a31765273b3223a011c0d SHA512 8c8000eb8ecf40351c9ce36a3a8acd7a02f81786d1b11aab85adfeffa0f2267ed74df29b2ca5d1d38128484d1d3cad2b673aa0d0441dcd0620dfd3934bb888fa DIST bytes-0.4.12.crate 46361 BLAKE2B 991f1d9170e7d3438c7d74507e6274df551d483883b3be2d99f7bbc0611ee6bd3f8f45c0e086cfa5488e8fc00e36e9a549fc71a325ff62b9bb83bd8fd412b5df SHA512 5f603532ea2f04cbc53044422feed1667bf0486af398c9c8e2ce7b4601b37e1c47223201970fb0d17fed77fef7e89961e0ac05a30e6cc9bf13462d98bc587250 DIST bytes-0.5.6.crate 46291 BLAKE2B 6d33ab47d04f2e469db2add31db118f95cad53002be7969738923d62a4fe3605ccbe9fbcae6d8741310c543625e80d9adac7d9e9fed01b71cb3943ddd015d920 SHA512 a1caa1f58754f4d2e54b8df8d0ca0083ee5282f5e4d3bb5b1735022933dd2e66fb3f39c7a82216bf7a7e29591695c2e10c8b7144c83ac598e34193f2425a32cc -DIST bytes-1.0.1.crate 48142 BLAKE2B 3ffe07c5429d7d2df821c04325b8dc84b343c634b4699e9c08b07181e741c06233a0501d987b95f513be57ac169537bd0812defd118305e0648ef41f6802d19a SHA512 885d3229e51c0deffe06824e81e8a016e3244106e7ed382a721a938cd2e69fcad7f5e757f95cb07ee1be83de04fcf98f9774f8f2e07aaa9a1ff068eaabf2fe87 DIST bytes-1.1.0.crate 49640 BLAKE2B b3140dd49dc222cd0405e405da9629038eb7d71dd4c22c8d6419ade041dc1118aa46df38f3426a36a44d8e5591c368ae32a89e71850dca7e810bbfff4441c37d SHA512 d34441ea146ccaf55da4d5c645f8ffbd008eeb3204dafd5961771abc85df52751dfd1af3975fb5c91eb83d9a43da4f3589bc3aa07c8d715906d8158f3092af2d -DIST bzip2-0.3.3.crate 15346 BLAKE2B b3e5178400a2235f500c3f77ad538fa3c271e261cbb4a4128d89371fac0f117a12c6a84696cc8ae9462a9a1a8712ed5a2086c94af14ffc575e0ee1676fb2207a SHA512 f2a844655fbd9abc866e691b57ddad166f09a183b8bd33cc6ff5952fe7f11141b1843728c6ad23fdf88a181fd40a3599df3e716c5f004ef097af6b99162a55d2 DIST bzip2-0.4.3.crate 34195 BLAKE2B 946ff5824531de8b82241fa042638cd33e708c4b517fa40c99e49f77ac7fd7aabe614e4b560ed8f5484ef8fd06bf19041cb20b7a622f4f1dea9ba26c5b821c5e SHA512 2d4622c336f204ab28970ccb369ba55829bfea426bfe96f15da376f2375c441a9bfb03c46f5da210990f23115740250cc15e9036309034b39a1c960dca542da2 -DIST bzip2-sys-0.1.10+1.0.8.crate 633563 BLAKE2B cef12d8992e9b5b8c82d2aa0274bb9d755368fa584eb8d87259e4358f38ab02fa6e319a8cd64ed2a3079d691ba54d5f4b023834b9364df481b2cea32abef0d5a SHA512 1f730176812669fdd9fb79e36c03db2e6270f107fcc4f63f84cfc1084cb78a5c0ee3f0659397e5b42b626629a42c0da7805fb3f5311719e45422ec8b0745851b DIST bzip2-sys-0.1.11+1.0.8.crate 633444 BLAKE2B 01578c512443134fc786669bea4f2ec4b9c457b9936c907315299d8b67ed78045d458c83ccc119f0fad511529fb5af5feff5fa2d983fdae832d2fcc1b343e102 SHA512 d0a86b9f03acb1e4e309d5739dc2e88cab582757d467a433afe0017017f0e5d2c0282529e3a117160958ed170d8d695ecae739805888305df0e35e4dc440582b -DIST cache-padded-1.1.1.crate 8798 BLAKE2B 3f2b16f0fefcc5acf692684329e38ff59492d4c299413d25e1634ab27a59512b7453cad28b26f34f2b66db3d3c0b4b26f41df042305b7db2b8ca79d36704e8a4 SHA512 72c36ef2f66a097cf2fcbc06b82fa3d5451ecf2de1ee1513fbeb34c6752436109f9e453bec3aab7e1f89723c24f7c230cf4bff6caa09855402c8f92c1ccf49b5 -DIST calamine-0.17.0.crate 60497 BLAKE2B fbceaea435a7b453f9ab251ce4f022b7f1855859a56ac57607fec913336442f39c05143b0be18ddcc939c3731ae1c0b637e7cca2572ce350e54359f2da02982b SHA512 5e1eb8146693eb73d90806c9474f28aa8c848ab1981a3a84bcbe49c78ea9c0c9ee817a368406eda21673845ad4506e4388a3f6ca664dc69deb07550caec7fe53 DIST calamine-0.18.0.crate 60972 BLAKE2B 7d3087417cd34d8d69f991661908e1714c4e1eb942e228a9ecf46004fd860ed0111db5a951ed7ad05266e953bdea16b9e6872814cd3e90badb2fa4e2f22623cd SHA512 9740b7621a862ddcd45820a07baae72f244dad903880d637d2761756e0c7c8ef608b0c12bf59ad0a30fd91b50d42dac510099128c6153af7721be80711d91e75 DIST cassowary-0.3.0.crate 22876 BLAKE2B 7e74a08e02050548ade7dd1ebba7ce4e4360d258ea6acf126453889dbf16df433bed7b68789736881c957f4c09eead1f763a0c02f2474157b1650a1e77e6eca9 SHA512 0838c0b79ed31f0c514fe4ac82633976e34b0d6cb08616313cda0e00623514fc6498c6c308cfef54ea029f1fdbaafe2991ca8ac3c38437a113ac62e37f9397f8 -DIST cc-1.0.67.crate 53486 BLAKE2B 42fd02a5886df50857075c909819c8afcf091cee6b7bc517848786f287f4559e70a07f0a0f42a742baa2665465dfdb2139ecac7e93f1a41b16eab30556eb0259 SHA512 f1ad4abdaad2667b190d1f8df8515f603107be1f69bdbdc02b5159764a6ed18b3f672d6b06af50c7f2fd3e6e3dad5df0fcd0dda762d909ba0922c769f1efbe05 -DIST cc-1.0.69.crate 56044 BLAKE2B adcd10bf4faf6835ae8feb79ce5e7a4895700d9714fc4322dd52e37bdd8db66b849d5e59aceba6ef0edcf9a5c7c0e2bc616de4acd98b71999bd63592c1c69dda SHA512 ba2b84fb61b4097a96f9013f9925b1985263ccd75274186f5d37589444e390ae8d5d1f88c210822a9e9dac2db551c24aee2b12bb61801aef8b31a72b2ac77437 DIST cc-1.0.72.crate 57495 BLAKE2B b2057ca53aacafa063a4eaa907bfb65aa32ce01a74a90b9085c8243a87723cee8ce79e4904f9d205f9d451598ee34495f8879d27c189477ca43bd39b88b5ea2e SHA512 e9a5b283b2a1fee1030009068c1f87291ec1dab7584a0892f27cc7e523c8fdfd5d986281d9aec1a00af706af1e61d7e64c245c74be7b39c8c022ae2d4f87de8d DIST cfg-if-0.1.10.crate 7933 BLAKE2B 063a96ed176f34f788666b40adc483d147fc011dee941ab60569ddd0e57502b5dd06ed71090f4e14ce005d06e240500a286f74652615e9d068fba649610d8cf8 SHA512 9d22616bfb4a75770a828a0a3cddac6787297a5fdc53eb17e25811cc94de717f2de8bd66d53c5d65ba1c83d8892aefee5ae758cf56a1ef0a0c3120f70b244339 DIST cfg-if-1.0.0.crate 7934 BLAKE2B e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b SHA512 0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff -DIST cfg_aliases-0.1.1.crate 6009 BLAKE2B 6acfae9a89d3479f7ce1f0b5dbb13bfe27c006b936a96685606a61a06f69d17ab754a8a0d96c54213f758281c2fb32ac74d03a34e0f836dc7e438387955aac37 SHA512 238828445c5b48ca41ff88825af0a1ad30494e423bb6f89b6d5e4d26042afaa1ceb0e32041f7cddd79c3e15c6c82a1ddb9469c4b63a1ac52d4bcc1174900f880 DIST chrono-0.4.19.crate 155663 BLAKE2B c92c273fb6475bbb2546dfb75eaa23321bc8f9a5fa8a7c652f527649b96ff8718fa932f52b500b02a4acae7837df5bdb14f69cb821d4962be2790dbd1d023a54 SHA512 a119349bfc2243a249f1d18b1ae548a04b30fecb75913a56f26d1ff8c0eb53097a2674d9141e2094018191cbbc1620843fbddaf52999824e077c1157f0907980 DIST chrono-humanize-0.2.1.crate 14509 BLAKE2B bce741f86f1d826b9efaa25907a40a88d8e18c50b5971a0ac6794d64360605ec9515eccbfa04c12c753cb640406ed45f4da530e1864af5498c0b14fb2b66cb30 SHA512 199a3da317791cd4fd607894afedc8b6607a8562f9f69ff805304a65e935b51cd7681521bb23c1c00baaa6d7e836174d51986f77e683c1312d3017f41f95d083 DIST chrono-tz-0.5.3.crate 555362 BLAKE2B 95691492c0fb8bbfdeb881701f2724fb24f1e9a9b8aca301d2b306e8558ec51434e92206d8ee1fd506cbd16c5b28d13377c815eb871a8549503d81d09996233e SHA512 c1f25caeeb0bf013a500476ffe67a42438d08d05984c5cc04b6499cb31fde48e05c51b88bbef8b2309c18871b8cdb62815eecd3b4bc1f704af0d6309c2d034f5 -DIST cipher-0.2.5.crate 13099 BLAKE2B a728a53007340dcc55da52cc170e5b801c8ad20c4e159d31200d5ab7f8bf4407af9a60713b4385ef0d65c06cc81692cfbd7339cb7449367d1eaf7c529ca34373 SHA512 e55627f5424d9b566dfb0787eebb1fb17ae98b4016c9091e87040ed37b36e0256b7681958a0d90aaf06c125c71123270bf986128ca1e0dc125f3162a868848b9 -DIST clap-2.33.3.crate 201925 BLAKE2B bec9c866481c5b3fddeb314f68af9bce38fc421e42816182de3209e8ea3447b72cf033e6251eea27fe974eff8085b7d98cdd2911b5cc0ec6b4bf4c750deb8a25 SHA512 3eb0fd648e2e3f9e5ff69a5e6cf0d867304fe18523accd036f28a86de368e4774088a6936c108ccc045092c539fe7f7494ea96420ebf6b4bec16880cea84bedf -DIST clipboard-win-4.1.0.crate 12133 BLAKE2B e922d95c4028b71ef30eddb740717d09d7c593c94d60ae57e95c77c559f9339d3d26c4a0819adf9c47b7ae8c8959358264558d5922901b4e82e8e53b846eb7d7 SHA512 5b7813c8d84eac19963179eda7c22833130fe55c438dae0f0f35834b79070d024c9828ed0c255497c39215b2fdf6ab57bf05e4e62d7139efae42318e6a1b2cd5 -DIST clipboard-win-4.2.1.crate 12142 BLAKE2B 6818d38ca338b91263d0f2149c6657dd34d5499879d407c265ff7c0734a67d92bb3334175b4dc738e12aaf335d7350844225ba874877ef891e266edf1b2982ae SHA512 77a0bc140dc614cf763968d60e0ef8407ad7758891e08377f16031e5df783c9338aa0a3f4da1402f815a14818de074a9bfd8a273b07ed5724532335e177b0584 DIST clipboard-win-4.2.2.crate 12188 BLAKE2B 00cf14f4e98f3a430abc8db75697b58dbedcf52d1ebb633d857f5310f0cc11a4fe4e9cb165d97caff5265f8a5b132faca5e82877e8f0162b87259bacb817d7fc SHA512 7b2495ffdc4333c642657096d4b60bff915750ef1bdd434d3f0496aa9392f2b5409f78830eae42c0e87eedaa21f1e7034c36b403cbb169b024232112c80763af DIST clircle-0.3.0.crate 9837 BLAKE2B adeb2d11238c343363475f9e517d01c9b596fa61b7d520f9c92de038f0a106e48263d06045e7f9d0cb5538384d4b2cffc2c969e9a129045b8839bf04ab1bad75 SHA512 a4db35d05ea4ca03155c7308a79b529091dddd4d2d579d787fc3770d80cb7c22ca4a239bcfe7b6a2a85870249754991f8dc960846b80ee7a46b763edfb084b2b -DIST cloudabi-0.0.3.crate 22156 BLAKE2B e12054fd474754031f8f5038d5e2829e1586db974d38230cfd8774db591a58dfdcaea9fb61fc0b35366889d348b2c73ceaabbb462f1abeeffeaab167013c986f SHA512 691ed793e9b35ba382f03897f4c0efc31a528394862a27b814ba8993ad30bbe0ebc9808484baf580e8b69d9c13ad1612776a1efd0f6981545b420139ff83592c DIST codepage-0.1.1.crate 8680 BLAKE2B c33ae92f515b7bc578e8c81bf45744d681e038ba513ac26d7acba2792926db272a59cd20047c3e3771a14846b675c3ebd081db2b43b8967bcb9c98cd787d9229 SHA512 7be012259432245264d4c93d5afd1f0849644ab5040ad5459de5340556f522339f6c5835a54fb6c2c61f6a799969ecffba16d11fbedb10a78ba20c58a5588d2a DIST codespan-reporting-0.11.1.crate 48963 BLAKE2B 39deb717a853ffbe3585e20a67fd7a75b62e2d796a66b5004876501fd7476acde9f126804f2ef6220ebab66821a3ccf058d544d689a2705eae44285f34b510cb SHA512 0869789f5c50d3523d3ee16a8fe64756498a13704efbe82bb0845eaa87c7b6b1d075b3b6b80567cd9fce6cb09c5179e9c07e485fd17ce56c8139ade0f8bc6844 DIST color_quant-1.1.0.crate 6649 BLAKE2B 9a2488dd00b7a33e15e05531ea49ef1961131f0be0922ba41e2d74d2b1a047daed483ac3a9dd87c847a81cce70a347395c557cad8228ab9a8dc5be7cc0f1bcaa SHA512 690c928bda4b7b57425f38ea68ac89cde2473b7a91b7e62c04a8f2c5a0fa3505e26b065d48b7ad0a8bb491f92f600f896fefdad3ce0e86e43cbf4f9a89e94201 -DIST colored-1.9.3.crate 20062 BLAKE2B 43bea2edb35df0382def6b0d37a55ce0214732bb152eddafae0c23fae05c5f4c6f9f3b88c6f271c778d80990eedc52e02a46289abdf2b1e0ba692bd83d9913b6 SHA512 72a77360148b960662d62aa63313e235c155c761948ecc67d92f244a99fefc92ad133e1820634358130db841095027cd99b64a79aa6fa41a279e0d5d505aacd6 DIST comfy-table-1.6.0.crate 37047 BLAKE2B f3832564fd2b03b9d95447c648488e0afc0c0440641baf0e2dfae7ec78e04bde875d5a9fa16c2519445e820cb36327f7e6ae94c6f205603fcc859ddac87d60a5 SHA512 7e621a45c1f9601933f6e0be44c52ec2244c8e8d18c301baa4a3875a68ffa53ca085fcb67327f9b4c5f6a4cfaf1a12d948df7e56d363df83498b0f16ddd8a4d0 DIST common-path-1.0.0.crate 6911 BLAKE2B 38e7e10595b70fcc17142c6d5d21c7e0b3de13ea09b2a70c068492081607bcd2fa82178e7148bf57e3dd3811ea25f373a7bf65d2d30e85fb96af00613def53cb SHA512 749b2a96305cdad54fc3525b0ca80a0ca45bc38778c14233a46020ab8dc1439d2151fabef89d51afa5a09e55c1113a298faf59658a69a646ef539c180be84957 -DIST concurrent-queue-1.2.2.crate 15859 BLAKE2B 97eb49d7f6270999f24d37e7a3967c0abcbf584637388c4507f89fd5284120759c9845219c463cf066f6568191b874fefddd7edee9292ed02183123161074514 SHA512 84e348dc3d40c73c11c54ecd0f1e6cf7fd6c7033f4723a428ed1c09bc9548cf317a0d8182144b689cb9781190b9c8ce4374717012eccee54a11ed0869dee10fc -DIST config-0.10.1.crate 31608 BLAKE2B 1f39e447daa9311d3cc9609b764edcf54837714e21e781dcf1d21b4f89a267e366a4999084b61019d70018de911c12eea828b1a2ed1888784f977dbe6a5bc2ba SHA512 912a5b7632a6a9ae8cbf3760e12c9c876b46e3cae7e5f27d733e38587b1eeb10ca4c66657855f500ad450ca725581518176caed8a8c608bdbe37cff7de843ba5 -DIST console-0.13.0.crate 22451 BLAKE2B a02b87a53b5f6e3adc88b0369e9e5b786fb60741263d5441752c51164562704d93c8954ecabc2ddf7a999139aa236cfbb0e9b8baa27901837f731591636044a8 SHA512 b687031ebfec1ee705c47e147239b602ffc147eec021ce7c9a4f400db7e3e0b1cf124b4c1664f9ffd1f3719f13a5d65c67bb15146bf42dccc5733373bd10b20c DIST console-0.14.1.crate 22844 BLAKE2B 2e7a1480fc10ba92d4d5c601b87a0dac840b71c6c44679acf0a90667f37a40528ff2155130aa72be2ade1fdef4e6512dfb404b0eff181d77fbafb00c25dd6c5c SHA512 2c85d1938faca5163dd7eede2a8a07569e536c92fd0fbc7f6e6ed91c60fa7f947f0ae101817ed943b0668c4d98ddfd3149033c83614786b5d841b19a8b011c91 DIST const-sha1-0.2.0.crate 9079 BLAKE2B 52d44c4d9ebd3fc33e57bed83b3d7e2cc7f42eab47f6f9268c14c6f12aa81530f18398aacf0174b47f1e423f78b29c1545c1184279ccda9a314a53e07ebe7f35 SHA512 9dde193471e608cab47ab391c3b5a07f7cf4de4e285047bc7278e357b45b964f260094e906c59d214c3b29300b097e0acb78e75b93383fc492d0f40384df338b -DIST const_fn-0.4.7.crate 12619 BLAKE2B a2fb771ea47a265b7588c978b87b99545f599659f1b35fc302ed3de919c4a672d6dea1da0e4455f74125083c10f4704f47d16121029d26061dc4e63db1b1c46c SHA512 98070d133316406b51ab77c0029652ecb4d1cbec4f5b443183a062934881379033c58536c541e2d7e0fee14be6d41f0058096660130c1f1e8373e7df5bafb97e -DIST constant_time_eq-0.1.5.crate 4936 BLAKE2B 882dbf33f20954205fcc5b6e39863db8969d184b697fd51ef462f6890c1a754e3fae67bcc7db685d8cc26abe6e3871d3b80aa542489ba9551a0c95a49f7a6dc2 SHA512 a4e0155a7ad72babcfd418d832d362b3fca7333aaaf36c246b00e948983837c3c93378b86e37c5fa7626fe137e3b6d77276ccc61624a7f4ab914605905a88a01 DIST content_inspector-0.2.4.crate 11386 BLAKE2B 2393cf83b2dd338ded7f5acd695e05a4a08fa639a52a8042dd0692be5e959cd1cc670472e25ca696a151d161c821eb899b2a950c74f4cb5b880bc42bc53d1d57 SHA512 1acb8b4f12ce3479f5a60b7b6a0c05b86548591e488e7be529c4a2f9aaa60a76ed07e7ce1e557664d31ddd9964e7f73415ad667cd14ada919f61511bf486ed6f DIST convert_case-0.4.0.crate 8098 BLAKE2B cd038a7b0d52a9e183a96cbd548a8deefbe0c60d6aea15d7c6f92a4bbf991444d401b5cd3c944f3d37019e7e3db2a648e321402e13803768556f32c08ec00084 SHA512 e17e92b94b030e39f368ef0dd0288dbb45f77c8ce3034c1a6fd2fd43f38cf10a1af5aa7bebdfb447c335d9593c32dde7262e13f97c271c419c6106cf47dc01e1 -DIST cookie-0.14.4.crate 30261 BLAKE2B d7663f5cdf4899aac900a0ddf4cb4541dc7b8a823e8dbad88f1d804421405e02d6f63a38c8059fa1271f39d15d9bc22a8c9d3f48e350da5a162eb63492ed397b SHA512 ce9c57c7a738ed5b772b0e6d6b1fe49ff2486eea366b5883c804939a8fe5fdc3969e325712388e0a0beeae1af4bd09f84c086765566c061da136c34a424f58ff -DIST core-foundation-0.9.1.crate 25985 BLAKE2B 22e70b7b1cd1f39c4ac287f406dabc549e3ba750ecf17955f129ff83afe67bb4bdee7e7907287eac0c28597df971de27dae77619f44d0368864c08798def1ae2 SHA512 d6dae760082ef9dcfc37d18acfa9a6ad8ee491335d17ee17447c5bccad623564f1e8bdc54460fb260aebe9276ce5ea4d8a389a83b5c7d17193614906c3d2bea9 DIST core-foundation-0.9.2.crate 26857 BLAKE2B 9090a489f2d3cf8cbe59472530470dea0ae9e1a0838207424953be812586aae013f9f6cafc4ecbe68be302f4ca208d8c892c87b5736dadddffd6d739e6427934 SHA512 9f68929963fdeb16954e6642f27173fa5d08d39e835d74f03e18d7cb23e9077572d712e7c9afc8ab0be377fd1d845625986d0a905eb6d55331027be2a25d4f9a -DIST core-foundation-sys-0.8.2.crate 17461 BLAKE2B bafa6f6af67f55b34c20e50093a5426bed35c159058a97c03d28c99b6f0075305596907291d26b170ee2ce1bf0c74bd51e2c54f11ef021399791129de6cabb57 SHA512 1c66f2012c11185603a0e4c09311d32bc4ffe639ef7626e49bb15006306fbed4c963f2c53d3b853a254b29cda73c393e0236436575d217992268463441ac7348 DIST core-foundation-sys-0.8.3.crate 17519 BLAKE2B 4ac3d9ab16753dd995abe82f158d460d0d22184ab55d260e73b20305cffe4e03427dabfe0c8be968b6c3ecd348be2e17154ded7c9bbd5a95334ff266fe83bbf7 SHA512 a3ba3184cef65dafe8318c4db7e59eb2749dcde7b2370ad20272b0735ded0032daf2de3fd0cf55eb48448a335f5b81e8e745f2a647f9a43bb85946ce714bfd82 -DIST core-graphics-0.21.0.crate 28996 BLAKE2B 2994334b41ee3a021b191a54acd2284576fe6166e83b7a4a9bcef6cac2f39390e9377213968cb3dbe6452475db576e5a30ffd12fa71fd16096142d8f34f300eb SHA512 63ff9fc0d104191fbb47983181550b143b57e984dc0096ac353d805f0344abb438415f9b53d907fb96a4f057cbc2c49b324f7aa7fea3d336168cad9aa7e73412 DIST cpufeatures-0.2.1.crate 10500 BLAKE2B 92e676cd9a8901cdb344340dc7cd7b6d66114a15bd72cdaf600283c79c2339fc8f89b57ac38808141037ea45ae32628e9485cb825c7bcc25abd94c41b6549407 SHA512 0db2486beb0f287b2b4f8543f0f02c4e6d00f66e65c9785a1ecd2868c460553f016b33426c24d0b0ade1417906f5853cfbdeed98ad85cfb73b4f7ad3af85a613 -DIST cpuid-bool-0.1.2.crate 7173 BLAKE2B c94598ab349d87a0859112433d6fc31e46eb04ec8c0edc7ce1f15a31f9f3857f93f067c4ae35e648bf2bd4f54d1ef37ffc1507b5d6eec8c3432636c589d1d8c2 SHA512 7907fc4ec0d5ed370edde0655c8223f0df6ab06c2c297c7d3bdfa958f601550851331e777065b4fe21f01f46610604e91ea2e20aa4b4147f441319224f69597e -DIST cpuid-bool-0.2.0.crate 7329 BLAKE2B 456ddb93df6e852e47616a985d204a3be4034a57e9b9248ccd818f1b5bd88f843491f2715506d84e0dba53a1e1d73bae2da4530ee8e2e09731c5ef4d54f087b0 SHA512 9a89eb359d2d6649fb850ed130a2a7fe74e5e3b8d0a4c4206f3f658270658b3757f475a18bbbe6aa5d62a0bb28b84b1dfecc75bf935a0e2c8378f98680581a49 -DIST crc32fast-1.2.1.crate 38172 BLAKE2B 80801a345f4c5ed8a5fd335bbf672eac1733a1c2b333dc8a8e0254338148ce7b34402201a8d2d7434dd1b057f33d99d3a8f02610ea50b54115d80bb8da28b2b0 SHA512 4c04236bb15a5c63b712c62652777917e947823abb20a0d0b372c850ec1c8695faa414e8de73904f1f1a296d7b00a6206cde8da404cf4cdaa2e8408e64b62b5e DIST crc32fast-1.3.0.crate 38565 BLAKE2B 4191cbfdf05964a39933f66453752c5f14b177c43fa5fa44de02d74b6fb4e4d874218f5a369c4a1d1ea71461cd541203f42afee259343ea139e305043e155ee7 SHA512 6ff361acfc0bb134672b30fb438f6d3ac93841d06332a6ff156025620b23870a79a4ceacf57d4b14ea1744838cffcfb77b413352d055809e74acd853ae912673 DIST crossbeam-channel-0.5.1.crate 86919 BLAKE2B b223d0dcacbb09850d457825cb2a018494d798d0000a20eed3f54b1152e41ebca4698e7d50e81f467b86543779155ad08566da9496eee36aa06644b69cf5d7eb SHA512 f15aff67e9105584f5fe41e1ee650ae4fdd0d0ca0fa9202ee83c6f6025398a300decaa50d1b4682e8afb9bd6e11e95b69bcf23f68ae117419aa84df14ee7747b -DIST crossbeam-deque-0.7.3.crate 19888 BLAKE2B f83e6915624ed8d01e56ad28e0a40e84732d820fd07f0f0fa4aac9578aed0f4a980bdcd64d29811be2b5055f28135403faf091b902dd4c800d6d736452ab03d0 SHA512 7c6a42643b2eda7ffbe2d485de4d3723c6a37beaf77e81329e39c9300a80492ef46650fe5a6b18101d3f6b4ed031ddb06174624f5449998ec3a7808e979df131 -DIST crossbeam-deque-0.8.0.crate 20756 BLAKE2B 6bb602547cb0ca65552a9b981502221f1d3570422d22c867f654ba677e5c95aa5f81ed0022a498d3408c3f69291e1805b49fcfbfaff0d9a6075b75be3bf926ea SHA512 4efa73dcb9ef40b841039d24ffaf9bd7c63f8c0233bba1e0728fd5558702b4ef0af117543834c527335e99384d3c80d56293e891c9d94440f51f454b1b90c399 DIST crossbeam-deque-0.8.1.crate 20852 BLAKE2B 0e7a2616b82c5e501c0f74935adfea3ee09db5475408be83db8f1b6faab4cd5509de2e029bdf6df90435e474ef91f3fc8d482ce3a72966b2a3bec5967666bdc4 SHA512 44a4fe1d4ab7457e2b0950be787b76b15e1bb0b1c108d032381ce3fe99bf7bf76f3d1718085660083d813e2639e66fdd3635d9186e85a9eb7267063b117eaca4 -DIST crossbeam-epoch-0.8.2.crate 39283 BLAKE2B eaad3cff833fb3672c93f6f0f4ca7073c709f9ea489c034da5fb2dab2da0676d493300c66bc746c8372369815aac3eec2ab9cb875dd9464cb59ae25c4ef4c6c9 SHA512 7406e92a768dee07c8d13b0fefd658e9eebfd3e89c782c4690740353c0de920013c345d6c112a78a2014396cc837ce4fdbf845dfcfacfd7a57172f483bb9b8e4 -DIST crossbeam-epoch-0.9.4.crate 42875 BLAKE2B 9c1f6faadddb5d01bdee18d09cd36016b1519830f4f2090b9ac6477b0d9ff4763ec473a40514dd2bf27c9f3ff06cbd98bd21084fe35fba7b2b515502b8baa794 SHA512 d5d2bf6a19986a8a7a6cccdefc46dde539e9772dd6d3ab9eb9275ec1006d0a517ada49e87c91d424b6ac63de82193d6dd95e733b65e097062567c91fa17befc2 DIST crossbeam-epoch-0.9.5.crate 43883 BLAKE2B c0ee0879c583bd1051b63d29eccac37ceb9f9446ee8cb64756b2e3d95a30c5c11bc79d9d460be4ef4b62513049e28900a96085031f805d064e81b5eae4bc297a SHA512 ad822e967e5ef45fa0c4a939f057f44146f1f051032fd032355a75c0f45ae4e0a55e1d31c80bc67c01ff8d9c87a51aba7ccfe9a440f061fd8225c879aa663064 -DIST crossbeam-queue-0.2.3.crate 14753 BLAKE2B 1dc60d5a48672f26f0c3afd0b14efc943fe9aea8fc9b10dc1e551a489a178899f1a82c0bc8bebf8511e112711ebb26170d1f76f9caaf06556bbe8b74242e97b6 SHA512 f53385dea0a2b0830372ee11b9d393022f501a79631a15696d641a812939faad62b61112f9da9dda381fe69ecc3c91462fad95f329eddb002aa941110297cd85 -DIST crossbeam-utils-0.7.2.crate 34338 BLAKE2B 3cb287c7741c4d5b0551331634a75b066f07fb4b55fa2b347370506467a05923254b1c4dca667de59ed91ff91f5496b37f40f13d3e9885a1b4f639f5b6748433 SHA512 e375f24c007bcf660d9e297527ed938f678a55696ca7b555b96fee7e0b94c31db2d3f4355675aa0baeadba68b9755ec92dc3a09a37b5db48e3723b926fd4a8f3 -DIST crossbeam-utils-0.8.4.crate 37279 BLAKE2B 55372ee1bec00b4bb3ad8fdd1df3bae4b0c166aa08898c0400663b4ea8610c956fc5376fd1638492e0d887abe65491e380eaf73459545325a2ef1d23234eae6b SHA512 6147ee3048f2df2c311c6d9d683b239249e6f49f8b2b27eaeaea9361b32fccb1ba37fd8bd3fa147d70b7d7d8d3281d3018939c4a70a75e191da7d86128c4648c DIST crossbeam-utils-0.8.5.crate 38414 BLAKE2B 8a10162cbc54f77737602b6f8574b65a02765577f0e2f59d71e1d87662180fe24a781df542f3e765c4d64b7a0666575157e000766dac138bd4fc0356944092ad SHA512 fd4d2ae10340bb96c22b31190b300aab54e96b8089fd62489e102c76a944e6a16c582a90bc40f5e188f13f841293a4b9becf30830c2ece04f3ce78c29066532f -DIST crossterm-0.18.2.crate 108404 BLAKE2B ba276975b3440f4d976c4f66aca2f46f2b8cc4715610e4fc6d3e1de2c98570639b68e4464393fbcb575091e3e8bc3af2ce567775b31a1bb9532cd8a42ef8c15a SHA512 21673eb1efa4b353b48c4d2e4780505fb1deb5ab5767787acf5f7133ef45e83176ad8d020804052e6b283135e72e1fa623b8e37417f805102a39d98cd72a4f18 DIST crossterm-0.19.0.crate 104572 BLAKE2B 13b341870516c5ce4f3ac1d4f40567a2a465d65f9dbe9f627821bd6dde994fa5f8d9802a1b42f19ff91d5511ef7d03a0b62361fe8addbb18e74c624dbe66c9e9 SHA512 c46c095d73be48a3c1875806547ba708a40abfc8e5cd89514162e0d1636675c4f4e2857ac3b4b32239d14f7ab57a61018b6a919160b2136ae761dbbde726b932 -DIST crossterm_winapi-0.6.2.crate 14962 BLAKE2B eddfed3ac40885c230c75d56c16ab447de950a8cdd2f003e65e2331712401f7ba2e228134fc1012d7a09d7fe080ca279fca6f4fe9c4d611c6a3a485eedd6565d SHA512 39e1c184b921f8cf69d6d7419fa93be2a6f4d3b5ca2461b9f9025133789d813ab37d2c4f4782ff48d466b2644a4d7b341fe1004520b6b4e6f4c7c7d5d4837124 DIST crossterm_winapi-0.7.0.crate 15187 BLAKE2B 5407aca29ccb36473b34527d977fd3fe9d190d2dd940da7077535351458fc0a06af114c145a0f3e741402f2df98a98605a8fb02e2e07c5bb107679a24260fc96 SHA512 5efbe7992b4a19725b5992e0b29a77673e8ecc03d28da35580a5cddaeb32b7e30c7bdb53a2392ebb5b1218617045c306d78451f109d5b836f0e00dcab59e0dfd DIST crunchy-0.2.2.crate 2995 BLAKE2B 74ddf8c5e0deb2ceab65c20a2743e1230739ac6aa3af60c9e867a7852270697a1278b7dee00df8949fc4268f9756a4a098df1211ab3b3e31a122652c3ba0a6fb SHA512 36dc0aebc41a3aac5f1b178a7e61b65bcd9bb5c8539b2024f79428200f7c62daa7098af55c6ab0765febd2f8969bd6c0ac8096f73cdc0958e5c4e4eb6a4f7025 -DIST crypto-mac-0.10.0.crate 9476 BLAKE2B c9d2507012f3e88cc6a8933db4b879f90a93f8cc16a573436a200a386c67434fd8e33b1cd6aed1298a50681de554b7b3f9ffbbaf46d411ecd3323a12218c0bcf SHA512 8b406db46a08f64d899eb26597fac99576b3fa892eb83bbe089eeef7e6452f43dd138232ed4fe75cdbac2966f94b71f92910c14c53b39e5501990a9976ed1b59 DIST crypto-mac-0.11.1.crate 9551 BLAKE2B 81140107f394d969d85b77050447e7d4dbfe7b2df8164293fe9a2cca04c1ed3cd245988482a232103c2ed9d35601ec6332669bd8598d903d305935dfc09af887 SHA512 3090a7a3fdb7d94b2b14841e37733d863f2e4d24d7da3c63df1726612abdd1c1df7179bba4e344eb63a94053e59a93b0988ecd1e2e5a5db0e18a4b602be4aaa9 -DIST crypto-mac-0.4.0.crate 6018 BLAKE2B c654264686500d6c8d79bf495b89d31ab5e015e8ee29aa392eef1818e6f19162f1f6bd039991e0e28f9082f598e4209ad5d425fb25b0e656774c14f71d64e734 SHA512 6454a93f8f863df9bef53dff896c211ebb1545e00e7d03186193d627f4ce2e37dd6f4a3ea01552eaf3bfe07cf04172e2d4ddd67a5c402fc12c54af3def6a454e DIST cssparser-0.27.2.crate 56792 BLAKE2B 06b2c5692526fa8aabf158fdf4c05e77a6c30f33c631a735256da6eb50bca93031dd7899f484e482ced7377fcf433b30e6a0ed458b27401e183f9f80af897007 SHA512 7ab205b05112deffb5c50586106c6f04932a8b5aa1bc3224062abfb65136884f20189ffb1b2402aca5c29cc52c3315492db5c05ac052a70ddea88eb6683df295 DIST cssparser-macros-0.6.0.crate 6684 BLAKE2B 6b012e881c8a26a398ce62432b9b9d79bbddae4e6e7a1c9883fec19f0b63ba935102bb4443ff542d0cefab2ec6af0cdad3d5249afacac574da71fedf1af925e9 SHA512 9b0aa19d46efe600fbb8b4763639affa5491727ae05312f5c7fb9c5c4d29971c33cb9afcee5001c7d0aec8677d36b5763986783ce8c897de892411f1bdb9a4ea -DIST cstr_core-0.2.3.crate 16444 BLAKE2B a3e02eaf6aac570c6bfc806af24fde554dd9ad7c07b5a89cd3a619209f98c966aeccfaf1c0de54679cfd97434c5ace0cd83e7beb7215e7671c0426dde7c15fd2 SHA512 84e96516e677ca1f020a93e3b8a1071d0e596cebcd67d2bb377152cf240fefff57264100b885609be432efb30ad684390258909690ac3c91eb3c06b8a4a14dee DIST cstr_core-0.2.4.crate 17034 BLAKE2B 5e46c66b51eb564628a78c8724a1d1ea234902e42f393d956884e9992e755bb905bce330574aaa90b6574a6607ae1579bad81a82e151b885eaae095db5fcf7e9 SHA512 1bf0ba267063498b9b883d7c2610d430a413aab5751cc97a7fa401113f3ddb49b21d817e22db57d8b62a77ac3785081cbed472aa845b2b5c83f50ebda1876e73 DIST csv-1.1.6.crate 886999 BLAKE2B b178d0419af671df570f37a4d054391bc883085b0cd3949de5e967aa4ca323fdadfd8c5d91eef1e8882ec112a1111cf255756eace3c7421e455ea2b6e01cb600 SHA512 81dd826f0ee85e7d335d844e9f9b4d2b66f7076c517d8050ee2e35721bfa4ecb8a906dcd9671b1c5381a968dcce0949202f1afe8eea535b6d215363d4f5be6fc DIST csv-core-0.1.10.crate 25668 BLAKE2B 8e9a56c26e75f4c4c9e90a21cc30c60cc3fff17515ac93bc858e8ec45e130df2ecabafa7c513b2d2815269fbbd98c418269dfb1bf1425d2fd32fe46823cee6c8 SHA512 2a269d050fbe5d9e0f5dcda2de1e84bfeb69538dde86040ad1ec7307a214eed813a1482acb5029a51f18126d384d5238355e021964e47811db971a0821bcc328 -DIST ctor-0.1.20.crate 9328 BLAKE2B bc2f4ce53f6b7d6a2fb441317a3f91b8852c541261f95f0b7d12adb35ec1c943810242ce71e514445479c5d225b735cd50fa4dfb514e6b121be753555ab3c30c SHA512 877f4663f8079a368d198a3351e98551c6d8123dd5e53b812529b77b09f1c08296e6df817d7429e4c70a73a6203fd98bce5ec2ce7b09baabe4f348bd54a9c0dd -DIST ctr-0.6.0.crate 17092 BLAKE2B e54c7d452944d928d5777e1744208ffa4531b85a4fd0b294d26a93f1390900de97df808ab92ef9b838e8a0c59b98a16884fc3b4c081960dbc7034694fe91525c SHA512 c58c7b44de1746e560596a9409ba542eef1b33147f8ee842da6e7c9c062046044a0f4cd432d0876928f036a590d9e6c007d4372a043aa5d8317fffdd605ac993 -DIST ctrlc-3.1.9.crate 12797 BLAKE2B 4b79a3bcf3dc012b1ff1f8de4cfbeb45c63d0d96674f6b90e8029a7f23c1bb704a0942a468a8bf76df6e3150cd1748b3b8e123d013a55d4d6c0215c0f032a0e6 SHA512 9e04217a527a98165c986514852a460e9bda1f3fc3167ff83e206f95f6411040e2d2673c264f23fb616e67e2f374c915481aea82673d1b97de5da969eca4b3aa DIST ctrlc-3.2.0.crate 12894 BLAKE2B a2998cffcb7fdd82939c94bf03e47231c2a9c0e94575a889404c474d5820b502fa1b22341589f204660afd8c69e6da36b99db0e91407005116acf8dc66c03048 SHA512 8ee32c5ee0706efc064ae1cc85ed4aa6dc156fb95988e7122c208ea9469f2feae2eb76e7e01156fdad9198146e3a6e4e2b05c16cfe9929a4f7330cfe36935969 -DIST cty-0.2.1.crate 7144 BLAKE2B 9a26c6ce941fa15aed404a903092ff86811d268d4fbd0122878eb05d6b770844c08108496f93ee26bbe121a14e68887c0866c96b69baf9bb92829a85109df03f SHA512 59f4d2cb3d9c3d25ea61963e73b41f19cdd595d29120c98d595114cf75b698b2464b74437114c194ecec0b841bdcb1a245ed570bf38b78c480926a6cb40d7333 DIST cty-0.2.2.crate 7230 BLAKE2B f8fc087e6a990a354a1de9a8d0c078757a512e13fb7ca0e337949a22c3af158111b0c1edb50857c0e97db5417943165e695b4f41c328948cb344614f922f214b SHA512 1b6fb2cac48ab796ddae5c51dd27c41ff584b2503ee15f1fdecf29ca92086826efca33d2467b5721dc1dc13b5103a76c0a320f416747230bb48d1b2c4ac784b8 -DIST curl-0.4.36.crate 85631 BLAKE2B 9b27e156bca1eca70c7a98d6afde3b96790d07aeaf4c5878e8ec86b351a101fa7fddc4f4a885d5a559ee219a99617db70f3386f543305db16e9fa0724951a4d7 SHA512 e3a6e8d4f89bf896eb20bd0b2612e0fc6ed368308ddc8dae0fc0af6c8ad297f236a1b31ceec3615290bdc49852e9c913d308c337ae2142966d53cc1690482023 -DIST curl-sys-0.4.42+curl-7.76.0.crate 2912002 BLAKE2B 3360b9b5196e8a32be320b2444c9de6e002ec47b444f8e5c39073ee0e15b458e1af99f54296107874faae75fe5b481186c473b4fc000b59ad1a88f7315486a9e SHA512 3874628227676d5fc4ee0b6420d21f453b49bdbf4fc7493c0d9c5328d3b349cbd00b0465891fc2415e22f9290b5040a2e06e7773a1cd577161c4b8647f30bfed -DIST dashmap-4.0.2.crate 21066 BLAKE2B 61c8cd1d52188ff071aae0c323b67e2f16b2282791c696a3f9c3d876d21efcccbad62f80bed85fc1b6a8223708c30ff5d5513b7f4a980f29980f2a6a1f8ab787 SHA512 1658183be619b781c5d9e33a2c709805053ab81187145517eb4bd22e12acb42426fef841a91618e889f4e7da792b88437bbf26e3899144222562c54575107d0e -DIST data-encoding-2.3.2.crate 19159 BLAKE2B 43208abc26b243537e9a2556bc3ec5db53ff1aa0cc9c0111728d51b4fce6c6b4314ba445bbb9ac7d813bea57ab600a3a671c5167257f0c344e5e3b149a01f6dd SHA512 b62d0c9a937df59f3c84d4c27bafdac9088370a250d3b85e259258cb0843ee32ccd0a9fb1a01ecc5929dcb22e36bf82f7c1edbc9981acec70f5a1a01f00731c4 -DIST decimal-2.1.0.crate 902395 BLAKE2B c585fad7f4c322f2ba7bf9dbda248db0f61f89af599af0df83c9a36bc68594af705b9f88284a4cf8059263f287644d9bf1bd1d6ca587eb1626081c6523c9efb9 SHA512 d311d475be74990ca2ce835c89ea11f95c7a359aadacf8968827799c4bce71012ce5827305fb4978a7f2b700394c7ce13614d6d7c20d31fb3b3944c6ce5c6b35 -DIST deflate-0.7.20.crate 124259 BLAKE2B 8528d6c9b5fe066e82e1da53cbf55254414acd5efd32f62380949cfc339b2baff4a9633fbd1ecb04e7ce8818339b51f5efa990e5b9b3247ea132600ccadd9338 SHA512 3ed98605cb073c178052336a2ffa535e69480046f12a9152edaef9f10520123c013126f30767097e30047689fb2c25f27e9745d6269bbb0e04e644b00fc19682 DIST deflate-0.8.6.crate 62365 BLAKE2B 05b1f81e4c423f9fdd823bc33352d8421f2ca0c26d43cf0c5990db12f5e31c46ff7769f1baa3b971166b4146eb448ed0bd3ffe68f7c4aff5885b47826f77d847 SHA512 7e2e23205c56cc4c834ade2a6a22b056253c32e29346907558117714a18d8433882a712711413addb15da79f9f59e089a06dfd680b756ab2725b500a49dc16b2 DIST derive-new-0.5.9.crate 7733 BLAKE2B 3f0a19b794c10e529da5b3618cfeaa4e575ee31597d2ff1f95618eb5163568c6c8836c5a634323dda65f448bf3fba2bbf066df5f815feb07f59ff99d1f46da26 SHA512 9ce0991fe63d8339a88d9552fcd8cc744d8bbc2c6525f60959faf519e1ffa84256c773291df2101912483c0d9accd4fe5f7dbb199dbd36d299ceae8f607e0b30 -DIST derive_is_enum_variant-0.1.1.crate 9807 BLAKE2B 5df4a24af5199311fdc92194f42da77f3ed10ac0c248c0da561922cd879d835e40809a27cc186ca9f0ad3eb637aa2be79fcc8315cf3883e6c360c1333bbef6ea SHA512 b3a867b589e12ab8559c3507c057a08b11fbed2cacaaf002d25f829c1f3ddfa38ead70781dd093de2c54f5abc8f545d3f6d49e95fb5d68ae9a452051ccaa57a3 -DIST derive_more-0.99.13.crate 54614 BLAKE2B 980f4d969abc95b97ea3536d1895085bba9ff9b047470f444fdefdbfda772d598861e10ca7cd8355c18080d47b3069d0d644125ade7113b93118e255454f4b41 SHA512 d63570acde53ae1b31936601507506d5e37bd8059ae1ecc5c105d42927df8690092fb986c435d8246e8d36d59b1610ac6a08c2153830c4b26055ee3b05846743 -DIST derive_more-0.99.16.crate 56233 BLAKE2B b6b53faf639b99c8c689cd9696bb81c57ad9998217c81914a71d932b497fa79f062dea7f20d8ff2439b0330359ad29f2f46fbb14f194228d72a1a438cc9f9a27 SHA512 45105c783ba9e8a5745179352cec20efd2717278fefaa3aa7a932012375bfc1238004fd9dd60ec53c8abbb2c38ae5ecc3a84ea0f7a883726ea9df9ce8692e7b9 DIST derive_more-0.99.17.crate 55771 BLAKE2B b290bfbf06119018206be0f8ad4c92508be4cbc443f1a937c38961e207fc3f433d8a87b2b5a17e72aa1735520799540557d9dd9e49e26b8eb7cc80289afd44bd SHA512 0bb5a94e56d35a17ff4deed61c437ba75c9063694032ba98b58be1b072d33f2fb170d51bd262a17ff1beed2110b334528de75d5315ac627202ccb13d8c490baf -DIST digest-0.6.2.crate 7101 BLAKE2B b609a59f40f134f182c687436865c2835c68c949b7ad6b0f2961b465d179f702653a66de203e98411c6023feff21895dc56c2d9d9086de9a8687424fe5c2b67c SHA512 c8169d0de9e9361621b82369fbca8113f4eb4a032b83371eb0620dd3a02227983fbbb1d1892e1011c5061aa6d37fd76731956fa67c54dec70a87bb90458d9ae5 DIST digest-0.9.0.crate 13247 BLAKE2B c5f2fa8a5bc12021d99ea63f08fa8c8b5b3353d90cf9d58ba84252b3f81b88b52f28c15c24c61fcee44f7d547a0bad11def7fa8f4616d070db163e48f89ab64b SHA512 8637a322c429f51ecb0fa4c3b58fabef01368c1a093492fad65f48eeeec2366fd1b7876e6e47723e089ec5ce11f881bfe4dcebdc605811252b797db027746a45 -DIST directories-3.0.2.crate 15593 BLAKE2B a4ecfc7968a0eaa1ae34c7cb0a33aaa3dc0b1d972fcc013fe6349a03e21bba1740950c62fc0d096945b4b29c275081ea0d7d1d57fd659acb22004f75a090a230 SHA512 9bccbb99a832d092dbce0ce5ae98c2e1eb58febf0fbbf410152bb0d62324141957ed04284c71809a692fc2d2ba0e9b41854d892e68269893850ea3645a9549f8 DIST directories-next-2.0.0.crate 15153 BLAKE2B 8bbd996cfa72d75fe7177a9d8be7fb6b96ff3fc456b7e06db61cc463a83290765d68f09da3bf8b9e958553b1940ef35f3a4a45d179918ead92f604dd05512470 SHA512 5a0c094dd2e858c59c93655d5abce1282866ced1e7657397c62f959078adc544bb895dbcd2ed578ad7dd0122d8025deb0bbdad955ab2aaf43d9a0dc7d37162d8 -DIST dirs-1.0.5.crate 12908 BLAKE2B 0a5c1428087adeca310d7db53850ca0ee4b27df34a7629f13ca0f3c69c019c0ca2339949022317ec55ca0be35aa721e0a9040d9c9d011e1516d99772ccf8f730 SHA512 12ebc3e92511373b11c2b7913b7bf74f8022344758057a2c71e36ec262e7ea6ac386bc75c323317406f1b25e965e047ddb308ff5017a1e607b48b978414e7416 DIST dirs-3.0.2.crate 12184 BLAKE2B 414fa4734fd9e108dbc887210e71c8be9834c1764ca35af66781a8108af9fc704f4e7d420ffbb2adeb2a14ca5658e53cb5da4b486e093b3de010c542f7ce7c7a SHA512 97dc343d580ecda68aebe87bcbe8c13a00078943771e3f1dc3101d8d450d2ccdd0d74283870eac1d88255a99e887166d42533ba8e70d15b9cdaddb57e3a27c55 DIST dirs-next-2.0.0.crate 11689 BLAKE2B f5022bc51dd50bad4ad0fd05b159a4117aca47afbea66dc42c8306ca58f3a550165afbcf9f5f721ef5ad8d357eaff305c6f6e42789354a910d5f1d05d3b7b7c6 SHA512 6ccb732da8ccf7bf35952c22a3b0caa8238319feb0a6cd3b0957e6be12548a2ce507c69cb6d3cbd2adfb37e13e6521c6229da5999edb0e47a292a41c3ea1a766 DIST dirs-sys-0.3.6.crate 10626 BLAKE2B 6da8e4a1e51a4e06ab742ce5eb75155ff9b7cbe83f06947a0bfcda711ae1e0dbe51f9a1e1733ba771f2daddb2b8b14e343b9615608c1d9a8fb927b033c161b15 SHA512 79b6bfda14aafa3839365496e1b1926f763d3569e4e138a59f4acae15c38ec9a3bdcaa64293b03b536141c897c2bf68a67d7ae5670d86215080aa313e53d39e5 DIST dirs-sys-next-0.1.2.crate 10681 BLAKE2B 71431533dbfd6016cc309c14a842ac8d43577abe768e69bd2caaf7d19d743f3ca95b9b0be1747077282089c64485f3d4e24bec8e56d4d883f25e494d328fbf3a SHA512 b3c40a8e93d4f9f4a890718076e14779aedd67a79da61b466788268c1eaea19aa493f043a7e410f5023a23d5509e639a6fc6681fbee30e252a601091cfffa2d5 -DIST discard-1.0.4.crate 4700 BLAKE2B 423cb655d6d58b4ac68269a63332f4828a3f6a4823f6f98f83d748bd16afb7ae68d2bfe5852fbd86c10b79713576d6e16425bd2541451f715a7e9e3a9f2d2927 SHA512 51e0335509a16c73d2620ff83de4b73506a45b36e306dd0eedefcfe89c6054eb5abcfed0ff5b3868c3b17a1c6d82d958d7899f25aba50709c5dd486fdfd0dd6e DIST doc-comment-0.3.3.crate 4123 BLAKE2B a82d1c1a7a90af6e111b5e684a1298d7eac5fd8e4bf7d5baf6c7403d26b609958716d57e51122fe7ad7626fe00a2d824dcfef3cc2fd7679fdb7b5099603de1cd SHA512 e98ff9646a3612bd41bb6f278e7b6e9a0c58747f8b82524da814cf51b7f06c76ad4d65b502ac5740e818744abb295f78f15f8262d0b50ced1523f6d1a26939ba DIST dtoa-0.4.8.crate 16175 BLAKE2B 5fff15e66c2edeb9eb9da89c66389b3a9bbb891d75afc3bb7da4dcbe9cad9e50af318cc8cc01cc7e56730763e8ea8ceb33b9447d1a7fa52a8d0f0d2060a97522 SHA512 fe1701ba2c40988b92f5f4ef78a8c81718b140ff8ca2d04023b09a89440e6ddb53ef36d1ebd9dd3e948428b361ed6611bd24ec1a31b5010c220c555e1f0bf6b8 DIST dtoa-short-0.3.3.crate 8198 BLAKE2B aaece640d0f8b231081bb1534c3188dd4f9780e590f204697e2b8c21c33d348b40310790fd1b72d50a8c58c1d56ae2d6cb0dd24eb37e5ffae12a014da9bb2fb6 SHA512 92fce043874f589155e7e2f14f91a51e876bf0003d1eaccaa1e20026c041f7f84398e82937d6d0e834b0d671d2b7ca307111ddc085508573dac9298469488a4b DIST dtparse-1.2.0.crate 31839 BLAKE2B 07486a47bc4a95ef8401785c56ea8c32c704d5b37564a355fc51c3b5515d9aaf590e866001dfa4ac97297f3f3674f103bfc29b9fccc7fb327ef584998b786b1f SHA512 6d47ba55e8437240c5fe01f7fb54b1c85bb86e8edf7a0b9fd4155d9694b25a57c7dbcdd34584de9716261691f4728d839dd255a46dc0dfe3efa3a30fd0a63d4c -DIST dunce-1.0.1.crate 7988 BLAKE2B 22bf7c39e3cf7734134a663584a441ca706746cfbd588a9a74ca6f97dc813750e7b00b5043d613eba9e388db09ad7bfa3ee7efb200d876580b779ac5ba0297cf SHA512 1ec1689264624c02c8dd8604829b35d4dd83a6d94836ae870e5524eb95144d7c2abd5c9791c860beef74dddeca6445db0120dddd4c7ee98821ca50caf36327f8 DIST dunce-1.0.2.crate 7953 BLAKE2B 5572521dd8b85419561ad0af2abc47f3b60b1142c1966b89f678bcce500a38b88b3986523bb6c29b38205440ed110ad5dda3ec7170c476c5614054b36b691acf SHA512 9d1a5d449985913d1cecf2249f3c14001361faf98a0ffa2cb682b4ee4dbde906302355632033484640373587c78c0345c1c7e267c354018cb070cbc46517ba86 DIST dyn-clone-1.0.4.crate 9654 BLAKE2B 210668852b04d59b1cab21d89f99dba4ff6832c6d699d4dfb929042c04fba8d16eb6e78cba0643ac8e23c166217c79ce016a064ac263dcd43428f0c7f86e6c2d SHA512 5d2f65ab4cadb16c877e9adf762f95826e07aaaab77ef64d52c888a8c7b362559fb108f3a5eb887a771dce89fd8d05d9d07fb50328474620e0cf303349c56f6a DIST ego-tree-0.6.2.crate 8962 BLAKE2B 012f88e588384169768a340e76bec42713cc0a29ffcad4dda990f47aff03cea4589177ae01198d8fc1c43bcbaa1cb3f0cb3d05d6a23967c5f6f5339644052938 SHA512 bbfb56b4dae753a980a9552b59da34fafdd52cc796d8abfa19e7b9ae97137d0755019e6efaf053365fd7e6cd1972de53acb0b83a69ebe329741c253370b93a1d @@ -216,384 +106,212 @@ DIST encoding-index-simpchinese-1.20141219.5.crate 130962 BLAKE2B 3c1e498c170eda DIST encoding-index-singlebyte-1.20141219.5.crate 14950 BLAKE2B 89faf849452f0fe78b82616614f43bffaf658dd81063ae5d130ad6eb64d38e0ee8a26ab078f8c992f0c7f3e1db768e73920482f5e3bd56b0d7370c72fc93755f SHA512 648a5b9dcbdd40184b6026f6d0593df3b75c5eed554c19a199810c99aba857fccbab2acbf5b047ff42a75a6a3f6e8211a07e70e6fa4048f07144f9132af7d17a DIST encoding-index-tradchinese-1.20141219.5.crate 120862 BLAKE2B 727a26b32f2bdec20dfeda482fad4235ca3ded489a002c27d0c26cbb9f37ea81f93f7e46ee4750dfcd7385dfc8bc55669a0a21b3acdba2a1fe91b855edd2decb SHA512 3b23213433947af7c56e9ea3e4eaf937b8083ce7e9e481b1351925a6da647be6a037b505116bab08ce73727bec75550bccb877ead6cb7fb0473bb3bd3d40833d DIST encoding_index_tests-0.1.4.crate 1631 BLAKE2B 65151672aaa863b169b6139c8e68065ecd6ab602e8fbf8b0f68a5e2af3f34858d363e5f0602f58e4ad3169ddea83d02a0f19a6d635584521397bee63587c9fd9 SHA512 0635e6a879d59aa3373e1c0cae6f61b9bd11138691a1113f3639a1d16ba894c1554f29a6d347353f02395508be4da8a4b16b17db3339cf970a62267874fe93a6 -DIST encoding_rs-0.8.28.crate 1368577 BLAKE2B bc10eff55063286b48590c3100841c7319268cf17e10176aec7adb39f3d2106e80e25d8ca68e5b4e568083be75d596eaff53807385c4e8d1b59d4aed7ed08ca0 SHA512 8b3f7450789e33f1ad9306d152f1bd230e66c7e799de52046acd5b11f903e8c86cbe2f0aa2cfb0f0e60bd64b194250defe05ef2a171b707e129a2324de47a9b0 DIST encoding_rs-0.8.29.crate 1368211 BLAKE2B 025e1c5e8b8804fa0b977357cd5a8b6a3ce4a63c11f8892ffbc862907a69c8f3c475f8d87901e878e242a2e704976ad5ded199bb777d3a545ca5f5939d0a840c SHA512 d5d2d476d4093c16514a8a0d9f363c24c766d565d45d1b2b21e97bdb6caac6050552815c9d96fb652c9516a41368f99e3a893e42c1884cd989c1e00de0ded587 DIST endian-type-0.1.2.crate 2340 BLAKE2B 6048948b467403409807fec776add4366685282a277d4ca40c5fc901228c0652c5759210048b28a94c8bb04c39bb3b359d43254e953e5b476112da7e49151a5b SHA512 d8a9b125fb87099f8bcbaf3688e2feb1c463ce624cd3dd36396e75e7aff177ed5033ecc295c02f491be04dbf240aac376e79a5c7cb591c3b208c442e1c1e6bbd DIST env_logger-0.7.1.crate 32281 BLAKE2B 6f1894c64f301ca4b687270c911dbe230f674662aa0561b97c4d2537886e404664b5773d4e223e2018047c222a951232c3cb52ec5bddbfb6665e34c3e7ea52f5 SHA512 604060d2ee83ab337a2d20d6784d1b7541534d2fd9e1662fc5c709fa681672a9db5e34d00face864b56ae321962e644ebe29fbb6d68a0d556419cf5d71c6149f -DIST env_logger-0.8.3.crate 32543 BLAKE2B 513790f39c63eb096b0fb62687c74262b42b0edc3e6fc2e2f2fdd44463eb4cfbf67560136ec206e252afa1477fabf66917f4fc0e8192e040670f98f3d7c4bb51 SHA512 7f6c3c79b8f4efb8d1d4e4b879c1c78a427f15669244ce1eca869aea9bcad950ffa5b59f3f8e4513e085c2daf1f5857313b374e238fc78b731bba2646ec895ff DIST env_logger-0.8.4.crate 33342 BLAKE2B b1bb359be2f34ca6f93f72154c86920b8254f574b48f693b2ae7296cd1ff25d34dea61e95fb2954569fdebb6c522c851ef7499c107005528aa2226df13b0de33 SHA512 9e4478ff609a2e1e1a902a55b221af43a52622fdb5668dc33fb0be354b964708b7b6d13b7f1ef11982f45fa7e71f0712a2ab3fd4ea98155a5115e5a7c3d33049 DIST error-chain-0.12.4.crate 29274 BLAKE2B d082bcbce47411477e8b597cfcb76985cc7d6f1696926cb5314f4e84d2c8642939f5263e110aaef56353ec086a21874a8093bcea1d018be81c86ca42c2c30d71 SHA512 c0ee19a0ba2d79ff1843148d0a582045e68466a9dc429e5f3c8a3a75bc1b6e0d6de03ad69fce851bc0297e7db77b2c6817a13c37e1c3d4501ed41db8a454bf79 -DIST error-code-2.2.0.crate 5323 BLAKE2B 1ba9a0f894446fc369618b9dc4ace13e36a28f0a53a382df250ed13c50e49df96bdd514d0d72c5d1ec7847143fff70d3e70c9270124a2ff682d82e4c5cc99aa0 SHA512 abc7ffe716e31d19f93c8c781e45162b68b314ab9578b4b81bf14149b4d25a93921444d1b45091160f7ba5c2e26af2e13e72f1c378f3f2fa129b77c68c346306 DIST error-code-2.3.0.crate 5327 BLAKE2B afac0fbe2b989672d03f9d999952923e1cd500085d529323699a8ae4eb965308fd2f1e6c703006f5f316d0f27b39252a5472e5bfe7827c5886f1075eb2713ad8 SHA512 875f73996231871b9554b959ea2d3e044292b8c4f9cc8ac6b70f9c42e0bb83275dece02956f038cd20ab180a60f23af091b3acabc4e200c58793e58a726368b6 -DIST event-listener-2.5.1.crate 16237 BLAKE2B e1b2c4415cc155aec0ee2187250820d98640d4b4966b8703366bf98d3652d03faf627f0d20adf2feed946d68ef273cc12a87a7ea0fdb9bd8075123c52896b343 SHA512 c7762f9b7814d6172940310cc2a52567741affa34b894877ac0577c902057f26f228c185a66a31bd6fc0b2f0d50b2c8cddaa2748c8983ebfb59aaf23324811a2 DIST failure-0.1.8.crate 37582 BLAKE2B 007652720edab76efca83ef23a6f29dfec2a8949e88f697a4609257d158d345ebd617577df9cda69a25cae70e02f96479f427ee3059362771a4a1459bc4bd1c9 SHA512 a8762c978c286f921ef9c46dd17f57656739b339656ad237f6fb43062a8b2ad97cb98b977ae04735312d5328894b45c512fe42e33a9bdc4ea898330816b7a884 DIST failure_derive-0.1.8.crate 4950 BLAKE2B c068f2a122e1137aa8a31e3a3c4c333f1e66f1b93df144f5a07772167f9085241292b85c55adf33851c319a418bac19fd31f4fb22b87ebbbf2814cbc815b77b3 SHA512 3f11adeb616a2d57e1a33ec2a5eb71c79a5df7946a27b74acc7c89a67c5dc6d01222731b37b405e33493570a98c96c7d2c7b8535928d7cf82536bcd9f0df809c -DIST fake-simd-0.1.2.crate 5398 BLAKE2B 40437b18ca7b77258577f518232dcf67e2bf09b64234dc3f02b9eba0c5c1fede8f8d1dc7cbc112ce80e4f0bf317387d1b8046d41a4f83a7c54981fd2b71fc8e2 SHA512 d57242c54ea3283185eaecbf8d96a4c9decbada3ae3aceb516a79710be9bf038a6e06a29b9ba4ebcd41b8f42943a3024a983ea23e36b17edc445a8c4980f2893 DIST fallible-iterator-0.2.0.crate 18509 BLAKE2B 9630fcadb2f30fbd8a2a057eb992bf33c0aa2d163e6fbd43de9c8c350e3e932ebca79a6576b215e17a0566898f6e37aef806a643d20c16a6aa73ca515fcf30c0 SHA512 c558fea3fcf3a7756acc0b63d38f76dfe7eeed4dd9c12c46b7a7e8b8bea64d00e0cc115492e8b3a1a19e86e6083477dcf7d2d72ef960b44f24d61819a3077e79 DIST fallible-streaming-iterator-0.1.9.crate 9249 BLAKE2B cc4459b34a9ad00552a5248d090d1f25804b92838f41131e475abb83ae0b89401248feeb52a49dbffd499ccc0ba0f2f1d044f2f3e9b06662be01fe2257a4e885 SHA512 34824e2007cb944eaf54b10d6d3885bb17ef2a2976c6dd7695ff82a937cc95eb65d343dd7a5cd2fab5aa5859faae3352a9e1c78f239ff736900c1dbc3f5ef7dc -DIST fancy-regex-0.3.5.crate 64304 BLAKE2B b0da0024bd7dba0a574109859984919102d02044ed7c389a3ba1f10aceaf5fc908094e865eee829a1ad65de6f0d9a6d8c1bf59091d35bf8637ef7c55f21bb593 SHA512 0edf91221f7088719607492accb71158d7ff445a2893eec90fef402df30ded30fdf388fe05f0d334577b642d5c5b724bc4a1724359dc4738c9bc34823dbe33f2 DIST fancy-regex-0.7.1.crate 78178 BLAKE2B c5887ef60d0427b5964cb296696749c5dff6877c0348c646c97c318739e9f1c0f517b01229de11656cc50ef702240526248ffb67e9aad91d892a39ebaec5035c SHA512 533cd4eb50a1a9665f42dfb0c6f4e8c7bbf4f45eb50abe023e44f0dee66a9e40ff82784b10dc9e1f4aebd652efebe3472fd3ba92996dec0932465cd2cfc932c5 -DIST fast-float-0.2.0.crate 41609 BLAKE2B 3e594ea36ad8af7188cbf4bf95dce08a21e88cf5eab5ab88df59935964d3fc8b3aa4d20c94a5cff0864b989375e065a4598c5a7db136103a2cc85aa316175ac0 SHA512 cc7c494ccce35c4e10664a6e58ccdaebdb60c40f1f5372b89de7691140adefeaeb81cd7e7b61d4615bee2e5b322481192f54eaa394258405364787b0f16e9285 -DIST fastrand-1.4.1.crate 11224 BLAKE2B 2ab15e9cdc2fd7d7ad6b8a47837a1f3ac1e5b282e6c25a5bf845522903cd5132100df237fe43ef19ea2138a7b05a20548a51f65d52b883627ad3b02e1fd54096 SHA512 643a3c0425c59e8ad24ebe98493b6abf2d68ed1fbd03b520eb5b85cbb00bc8def103ec9688486eef63c53792e2ec5d005d106fc073ec66fc6a89b09793a975f0 -DIST fd-lock-2.0.0.crate 11368 BLAKE2B bfc4b378ba520f2cbd0bbb548aac62fc723443da3ac8c5f0a8b31d3fda0ec343fbc69a0ca28333f3abb9a1e7a1a7dad2a76297aa47eaa58f839de4bd70ba048a SHA512 2bf33b4091f9553d54d1e9e2f9d7dcb03e33edf6515641370160396244349f04d144a613d776dc1b94fb223af04b6e3032ef959a45941315fdcd3659bdd80238 -DIST fd-lock-3.0.0.crate 13313 BLAKE2B fc693b4a31e90a277fc2e82eb437de5a8666f5d85e14921f79cc0dd0c9038bc0734259cba5de5e8b2cb53a0f3f85d3f6ec79ab93be2f1afcdae26766fb8a470b SHA512 469d53e16b67d70c48a54f7160a522769ef51f2fd6116dea050b7e3ffb3a027cb91cbfddc148f388f6c084c6aa62fb4374461738025ca64ee161bfdb64707cfd DIST fd-lock-3.0.1.crate 13187 BLAKE2B 27b2b387261230c83cdf2303d7daafbfc40dac730a9b0a426f4525266e2fe272345aa9d963e7a12cb463120eff6daf6f5ea4f3845f834542fbbb9638b9125f35 SHA512 bda3a27c603d0ad1d2a6b31c5549bec207f88462a8e94015dcd6487420d6ff2e6aca2e98bae26e636ed256633fe5c729e700e4cad8d27c026fed9407d7a92562 DIST filesize-0.2.0.crate 5066 BLAKE2B c43cc098a2b4ec4f9a2990ccfb17a6379e7eaa01686cf9d077ae4b3f80f517f5abdae2eb3244989f0fc4e9a1c6c9b6ed1f43921d3067d474211d74fe31cb75ac SHA512 d80ca58ed1c2c9959cb98033c270ebc520ab050b812c17e22cb1bda3cfd44d35542e56c45da36765873e9ef18f21a01b8d615bafc6bdfc9cf555d9175b47bdce -DIST fixedbitset-0.2.0.crate 13597 BLAKE2B cfbdb06fefda131509b04cfa780c9e9574ef0acb902479d7ef98f32ab45b18d78cb1cc94fba78bd023267a7f2a081aab29171f81a9e90912d4aad9f5fc17ba3d SHA512 44642b270d52f71637a87e5311f70ac77baa2a377f94254d1bd728b4ff02a3176f3a5d07732c0c4fb9bf303dbeecf327432ae01e2779d966cc13b5fb97cbc28c -DIST flatbuffers-0.8.4.crate 21759 BLAKE2B 00ef84f003d40851a328732679699c8894bad7ff04f21cc0f6cdba40c027b16db481630ec29bda56b5dd8876d8cc3259f35dc546de1dce079a0def58967c038e SHA512 00b40c8c268416c861a390f7f392ddc2295623a1bc4f3b4c7926cb5a6d32652b1d7c58a4570d2bbfd62e9b604457e6bd8ecbfbd92d5a5946931b38acfd2a4c43 DIST flatbuffers-2.0.0.crate 22491 BLAKE2B 06d8a7d314a159c7469d16dd75ad75f66f78a172fc81bfa7d93b0025dcf4a350a049b629a45c9152a3492c197df2b30684848b9f4b66b1f013dba6879a678195 SHA512 26ed2ff2c383b239ae3b75771c697308d02568153b6cedfee0f0263eb68cd6adfce42071628d32fdbea11ea7fe1e3a78fb917eb2d43c7c0535132302607a1803 -DIST flate2-1.0.20.crate 74036 BLAKE2B c5a1270debdb42f8612c0db9b684d339dfb668dfa3b06f6dcef94b43c115daee99c3558562d605da5ba1a554930030083baa8128036e9999d47907f29687ee0e SHA512 1415cba53183b7ae0f3396859186b92001060a78fbee10dd0dd4c8a93119aeb78bd8d782735c292badc1ae6d369badc6fa1a0105835614a6f70e82b080d8549b DIST flate2-1.0.22.crate 76026 BLAKE2B a6b7630a31a4d3768540662380f6eb1ae162174947ed76ea8781021467547bbf8733642996e391453d3f074f2101d15ce65f5995cd07834351abd8c3b759df5f SHA512 c76fa3b097774f1da884b969285bb3aa7fac489446845c93dec1afe6b94bfa11f708e6718d5e4460022b9398a698378a210c3b25e9e676d2bde9d5be1a63261f -DIST flume-0.9.2.crate 61762 BLAKE2B 0ab3609eaf1bf1039e5a168b18e4b0d35fd11f1e333658aa7f8a2b4f52a4af0ffe44f1148e7c0a604704d1a72abb2204671802666d4450562b8c1700be84854e SHA512 149e0a060b9ac12de74bd291ae331716d2adef8115e27a25c13dba1b549e526f1e032b66e4048876cd36b2e39a73412f9696115ebc42501338daa1f27868b045 DIST fnv-1.0.7.crate 11266 BLAKE2B 81da85889c91b6567e0f555e37dd915f1bd919719d1ca10c31a6861d7aec29a49ae9c1e8bc500791bf9d6b8dbb318c096d04872c5872a4b1f7d45fbd8e12842d SHA512 2195a4b34a78e2dd9838caf0ee556bf87cbb4a8ef5505aac663b614eb59dcfc0c40f432463ede41ecca57bfe7711f72673d39a85fe03d426f1324097d5628334 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.0.1.crate 8773 BLAKE2B e2d2224dbd85d053343aea29ef1bd540fb8be12fd600289e9c048e3b74bfb009d0770f8296556309ef756086f22feec4713dfed1006e1101075c8897be5471cc SHA512 3ab371c223561a27ffbd35cf648ef4a9145d47bba9d71900a7c54cfc2f089175e9361f6352331a9a7fa018923b15e7a3553c8f9ff9fae80e1626e641a5faff68 DIST fs_extra-1.2.0.crate 29918 BLAKE2B 92e5de4cdaa16ed8c2737e988f8f2419e394f56e30ec43d9a29dbadc13ccbbdff7cf2b30788d37f160123df83fa998b966fc9b5f793b6e15f84af4dda7ec4cd1 SHA512 66670d624394874d7f786f8d362438c53f5b18008909ab8e7a74e82518dbc189e37588836f05f19dcd4718f4c1a5296fdf274380d574b1f475e28891ecdd6c91 -DIST fuchsia-cprng-0.1.1.crate 2950 BLAKE2B 8519407ab5d1f04d03cc946a07050db4dd7bc70e03894e35b9e66910a3be11224084a86ba45103fdec845e94b7ba4defbd7c5217b035a0796c0c4a94b9562cd7 SHA512 ea9f5beb0dfcb023c22cfc2b37ce52dfcf3a2cbbed0f79ffffc332878858386805c65dce8469a431002367562d857a6c064e075688540c27fcb4056a110059d2 -DIST fuchsia-zircon-0.3.3.crate 22565 BLAKE2B a4dac3457036efab8f79fe5d5b4545e4091e994d3dc63188f71fafbcc28bf98ef359dcd20add30ac1d990ab2e66159723302fb66697349c65fab0aa58d54535e SHA512 a43ee59452d49742111e506d6bdd8b8399a3a646e08648e25292864d7f71460c1dd1f2d77b8efa8ed09ac21fa4ff0442a2709f16d8833a3849bde0c388d83a93 -DIST fuchsia-zircon-sys-0.3.3.crate 7191 BLAKE2B 530bb5d475ac828843af248c6bbd24ca3b5dd8118c8884ccc6d7261818cff1c79038077114ffa04bc73a078177527824c4d9d20a9b022e4057afee3330258cff SHA512 978b7e8795a5877a68409ed3a1d7b4246263f8e7e7ce9ba8a022643be98f58f329cc1c234717df80a509db849da4394f39e90a8e2a6f56f8fa8dd3c07e7d4386 DIST futf-0.1.4.crate 11341 BLAKE2B 804cdb89803ecba0371ba045d3af3f4c4cf219e31f0cfff3ab96720ef39cbde14418ae8031601c211b279682781b1d3e6d2ce31c2d212d21afda7fc1da64d8cd SHA512 4cd5ecbb8c180c9b390a6884edf65bfc3aff53ffe7b930cf2b432ff9c46a8c5a06001f3f412f99c41a60def52207e709ffa07a4b432ada488e77067fb5e1b3bf DIST futures-0.1.31.crate 157731 BLAKE2B bd1c51f7b5c6018547d1aee3ec550fa55ca955b48c04c8e9e91e5aa944540fa69fe590d2296085d7e772c7aaac37dce00624323bd6e31f92af269dcdbf30d511 SHA512 4be7199261201ef4dcdac5a5a237a70eee33d8fad9a81f76d739f4fc7ad39c87fb2f4719ed7e7a7bc5773c5b51196e4aa4ced5375292198c8d89a03f1692b341 -DIST futures-0.3.14.crate 45557 BLAKE2B f58e82dcdd7a238427a394aa05d98104fac3bf498f73475f2ec6c5af021672f41dab71819551b2ae4b2a472764e96ad020bbc2e9217a887bc41b08da247d0859 SHA512 a5a93ec0bfc62409299816022e93850bf110ff8038b2d09bc0ed533fd7057e002b32b0aa141852d961e218190d1e1a0dc7d483d75882203966a0b89469932e2c -DIST futures-0.3.16.crate 46410 BLAKE2B 30fab6c72c09c030ebfa8d4deaf35cf5d5efc2b14a8cc7c3eea83109e1588f6042daab3ddf2e660daa643d26cd227229e2f3d780e24b7686dde1ca04e24c7d08 SHA512 57a58ede8599cc61fcbe555c84df312aa890ea993ba956759ec8effb71982fad668f024c536dbd20856388d6ceb93841de6c063e5321affcd41e96fddf7a9a0a DIST futures-0.3.18.crate 47643 BLAKE2B 4bebf75ea530fda4d40b9ffe5c01b8592d5c4cbc9d498754dfa81221914a37c325ef64eae439cb73bffe8cd13c88cdc86aa3cf4cb60cd871caea32ce33b413dc SHA512 2e5bdc685fe1b7976f9f60d99a6b1c27a3c300744de9d7d14e26510f8f591d282a7c11ef99bafb4971f5a550cc6668c493c8c29a9f94e47fabe59aeb45a41f10 -DIST futures-channel-0.3.14.crate 31260 BLAKE2B 86809f71b17c5b285ca7c05b02f5d864afd3eac865472d08b45e71cff54574dddf9f0069f4db2bb9589e4ea32377787695d8b03c7a2906fb4c36478d1be5fe28 SHA512 0f88863d9d2cdb58426cdf1898c050ccf08f6086963308518725e3b778eea87ed632c776e450c0e890c872d6e67ad9680554d4d1c7433200986877e593eae642 -DIST futures-channel-0.3.16.crate 31765 BLAKE2B eaef9d4daa760dde5811355230659ee5ec1e8ad784fd935667664cb3db65bed30c4e342bbb4ec4687ed2ab299c7e733d30c017055b18e307296dc8e7797cbc5c SHA512 84baf9a5b74693448ba3cdc402957d0882da6ad0becd3588fb61107d0ed9912a6ddfe599ecc4751713c81f4c962cfa283f0b3bf6472ca17383ab7c5ea5821e65 DIST futures-channel-0.3.18.crate 31941 BLAKE2B 518b55b1d943a80f89fcab52142ed710c2e46b0c31275b1f919a6803fe5a9dd3eba4d4db4743471dff5dcf1871881aa758242768a70124f985f8735cbae6b5a2 SHA512 d9dbe1bd543c46acd6d51a43e3ef45df3fe79bb0eef24e0179423dbda582d68936948b5bb2ca48b6d169fd4906ec7922cded10f1e987095514ba28c4fdb5d6d7 -DIST futures-core-0.3.14.crate 13831 BLAKE2B 0380b7ce85ad227715db962af37b7427de60ea5a033637fda5d9a389a9e92dd21346182490bedb02b438c3521a19e25aa1ad1c45f5035cd90f0ce662dec30bae SHA512 7cc7c7073a7a5bfe4295073e63a7dff82f32f43df3a0fcf6e7c0905a1272a50a19a8bceb32755590e456c8cd1b296574a2c48d02b8fd3622aaad305ac4520d75 -DIST futures-core-0.3.16.crate 14486 BLAKE2B eb6afd63cea682e3b3252e956a213d9a6a7135ee3631eb10482af03e3bd717e1c69b49c6956aa3390cb4c9961a50b33cf7e7a356e6a511d98de9893d93f2f9c3 SHA512 cc3aa3794a0fc6005c88134943552dd426dcdbe0d117a2ab3269fc6b5b7ae637e0441c28f5b25bc544585c8830ceebde252241a0502fe832f64476c4b4774bb4 DIST futures-core-0.3.18.crate 14665 BLAKE2B 848f8038511085bb205d1fe6b7e21790a109f0a77cf17c31323b83aab0eb8e5f58a35c3ebcd5f0fa1228c1979f2c76c55380223bd08a3f64e0e72098fee945b7 SHA512 3182345cb62a21079be53a77171b54e9822d2efbd01cba1e7a30b948b5a60446eb90b55c2ef76a760e68ff1fdafb86ebe51767f44e47033a3bfb53d4cc382604 -DIST futures-cpupool-0.1.8.crate 10583 BLAKE2B 5832359dc451551a3cb77e48b73054ec1505e28e04b2307af5d8e17a3be9e0552941deaaa94d477082b924daade1a2aeb15a0e095629e29ce983b0788a15251a SHA512 49d7a75e2e0a6a6d2103212a9ad9474119f4f33cf3748b605dfbb461ec822330115cada6bbf6457f2093f4af4cc04b4db63dbab8c0faa8b25ee31fea29f660e6 -DIST futures-executor-0.3.14.crate 17110 BLAKE2B 85f6921bc1f6ae884995bf2f75d059f99fef2a6f586ead639eba9e9454080037712de416f2bb67220d1792eec500cca56dcca705f09e35b9169e13cdf4808e4d SHA512 15f3d71a699b6d900bc3ac4c0ea13997877f88f9ae3c17b15039a4adf1a8724dc238e18eb1673137977fd81a32d7611669de7ab12118472cb92697043e098523 -DIST futures-executor-0.3.16.crate 17104 BLAKE2B 8c60033c4c1b0880d0e31cae158aecea49056444b0425afe209ae7f669975e1edbd16955b5a758d1220aec5fe435a1822b1c448b2d477a14566a7b2faa9d5c93 SHA512 fc878d29d0f2c181ce78c67d64a2449554c84f079716534db4217039c76fc7f64091d1c5b8b113ecdd842bec85251956fcd9e86d80e7a8a7ea2a4a6ca32133ae DIST futures-executor-0.3.18.crate 17290 BLAKE2B 3539dbf94d38dc3171242222c43b3ddcb343e1acf63820ecddbb839f83889f90f7226c3f41c35b47e5ad5f1217e4b47bb0b5f847379444c8ddc1a54c07a2f9fd SHA512 2033bbea0cf328feb5c50e40b28fdd8b8f1d01077c1a74be47f463f13cbd0fe2ece7c90f4ac5c54300d0a305d795ca91ebf7bfaaf990fdda260f311e2781f58c -DIST futures-io-0.3.14.crate 9056 BLAKE2B eec9cfdfafeb2794959cb3a94f5c8b463ef31a55d68e6a762e82125a90cc61233e9e9219e355c5bd7354e7c133669811e40fc5e8902ab9651d0b88e1845eed10 SHA512 7533e75d82864709299a29df3a2770aa9b14cdff91c6a2b6a3f98e577866afbc20f329ae71e748320553fc1cb7754027c6e11ac7bf28913e9fe8b26dab59c01f -DIST futures-io-0.3.16.crate 9050 BLAKE2B 60bcaca9e006adbc0d97af5cd9a5a7c3b50a94f017a130c21d7132f7f121e1e74f5ab538362afaffe44d4ad1bdb67f89dc8c7fa28ea69ee30dde84019ebe4c70 SHA512 cb9edb5224741f249f1936b3444e6bfd4ea4eee1d3964971d242ae1f80bb191067b1e3f0b36045e3234ea7f35738037c863fec204b952a40f84c5f46026c9ac9 DIST futures-io-0.3.18.crate 9222 BLAKE2B f710ae8ed982b42a37d0ab797829b5366526fbf4e830ea26a5e9ae89a7a8c57584c467251185195571dda5a92abe072a881a33829a2558e593cdc68e7009f823 SHA512 f941da4a9c606a25a021fb55648fe0e864fa716b7ee01020b361aae99c33bc59035e16f5d60d84d3b9d015ea2be7c169da52501d238e5c71818bd0984ba0b3ac -DIST futures-lite-1.11.3.crate 36241 BLAKE2B 5f8d3eb8de85807b5882ac011ea3d07cc719bc5705503aff4d5147362a3b5526d53e29c118ae74300aece105841630933814573d72c9ed721e7e7f1a238e80be SHA512 ea314fe3b3d1022df46fe83e2ea1101774d0f37dabb1f9f24403dbc0bfe1aa7ca59a0cb70463a4fd6eb5eaadc74f70a843d8c128bcc13a909d6f85617fad6522 -DIST futures-macro-0.3.14.crate 9681 BLAKE2B 35f8870fd86d33c0713535de85545726b7b22fa019f363d4b688a24367de1c87899b10207e8df73f2dbb4249b4d274095901f2632cc558621ae793977a369e7b SHA512 07e50e955f4b666d2457ebfd15503f359b7b9605d4736e6be939a02b30754be4f8761201780d8cb7929429a293d013f7a853ac1d9be4b7ea2060dccabebde489 -DIST futures-macro-0.3.16.crate 10779 BLAKE2B 94d23ff28c5211f27faf1e9f3444b00a226dd1b43594edc8016dbe425b07ba59d335c1fb93ddce63d1ca1ca2c9ccdf3a56dfd6d8088391d62fadc71fd2cbea97 SHA512 ca36a9499937d0afcfaa9fe9f3e29fbed1ae8fb83e7e6cd267c67fdc3c723098788aa25a941ba8571fb9a5f9e40431a1024c647cd719ca57b847659b926cc515 DIST futures-macro-0.3.18.crate 11256 BLAKE2B 82b9407a5be5f0cb6e586e838288ce05d96a51fe6fcad86aff776bf5fa0090ccce56f1379b530db341555eb9b64cd98565829024a87ae0c4071c22004562c70f SHA512 5163237aa4b2ee342c0a67fbbd7db3ce45a50a6289ca0740864cd5edc9adb3de7fcc50b5b0a75dcac6052ba5b9871e01df8f94aa956b2dbbbba232dc83dda477 -DIST futures-sink-0.3.14.crate 7658 BLAKE2B 7d560ff741ae650497137f4b23720bb32f7f7ee57346e124a0fb69f742f4cb622728be35ac917870dca52e8ed44c808d522f0a9e42235c10f400cb7e5676b6f0 SHA512 839f1a4fd62e4552673f2e35c4abee5d84ce99acd4f27cf4845662fe951a255ea5617de2b2c2c8882fea416407ac6b3b826b23a46e4f4dbbab4e98cf8587b425 -DIST futures-sink-0.3.16.crate 7663 BLAKE2B 355c7372524be71fbd6405f5bbd173765eb191008c725deb790f183eedae194a8b5c09c512a8e4641a903c409c2a903fc6a2095372ee52dc15f9e10527abeb98 SHA512 32d42751026ea88aa169c0e8f69b80aaa4ad582d852492f7056da35859ec3299d4ff57f508a5fa2da18c5931e97c924d88ec72341cdb342ff79f50f7dba1f87a DIST futures-sink-0.3.18.crate 7851 BLAKE2B 66bf043a8f3abc02960bc0968e68e7e3e649dab488e631f505c26105fdec3b98a29a2902dd13c484a5f627230976f6634dd8f25687af1bb53a4b29048da224e8 SHA512 4d6f937dcb8091caedef743fa38e32a730f665e7b07df5662850df79b0a460fd906def3d8fb7c4284b96dae4fca1bc67d9d21292c490bca8029a790591d48a0c -DIST futures-task-0.3.14.crate 11115 BLAKE2B 6d68f897fb4ad7f80ee4bfa851da15516da20177c1ccdb610121bccadc6c587ef9869c01d266275bbba4742fb400be23be00db68565a5091660b5d987c76e3a9 SHA512 32e55a5651e23733e2b60872de25d307d201fb9990c1418edc955ba2c93a083a52584a16ab951c28560069ba4da588f5b070b670c7244fab0074e28459a49da3 -DIST futures-task-0.3.16.crate 11712 BLAKE2B 88c095b45590e6b4d645413fdfb82b3be178fbfb44c6e36c31a6e78f97cf4a7f53d896ae57b0e34da4195678a49c68a684b3af2f3182435352884a7562d30426 SHA512 7c95d177e9cca05ca8982886957010c4defa9c5dcd3b425738b68f750515277e27fd331148168e866d55da4b2389aeb8f0a7af0174553914c55095654666b6ec DIST futures-task-0.3.18.crate 11901 BLAKE2B 5fc9ac94ab83d340ce490999ffee60c7fee9c7d0bcef01932438e105b4830aa0e92a04f6c49d7ad55cca43bad7d15dd17b59a3dc16a46434e1330dc85f5deac0 SHA512 fffb16ea3d8be7658204ebca6baef17fceb5131c5c879ebb4721235acd36fcfb8571f619d4ad0ca7595cae55ad2bc945adcdf948c5736849bcd8a7b065faa502 -DIST futures-timer-3.0.2.crate 19879 BLAKE2B 4e25777e567f390799b4b01186d59977f1591f9f8425b6951679226375cf90764bc157dd2271614f16b7b13d3aea67509da0355f3c4de3d323b1bdc668bc7525 SHA512 47cc68f9f134e557d66a003d942d8a4201b1db56f1ed2ae276a2fe6f56b24c06ccd108d9852f9fd9db7d254bf8aefafa56cc0410bea41c3805d7e4bc3dc4d73c -DIST futures-util-0.3.14.crate 140139 BLAKE2B 8d22ad08d86e8ae11f4bc9ee53a458c126b9bb75f43960f66a5004a8bd4e6dce351e2123cf80972c2ff67803ce40147e8c955e84f27c31f56fd89bfb79831355 SHA512 b1ba5bf402be6fefefe2fdd54df7eb802fcf11470ab6cde987ea01c9ea0fa7da61a5a4cff79e3a7f58db3f1c8b98df39345eeae8d9455e337878f8f6f395f341 -DIST futures-util-0.3.16.crate 144642 BLAKE2B 0ce9ebcd85868d6e64622ab498962d8450f7fdb3d15357b77d94409640f6d09803f4ddf6423a118a87231799f0dd495f59ec431e4bd3e823f0decb035f5b43f4 SHA512 21815551e0e22d9fdfbb7ad36daeb3b01bd01c58e85091d0fe08a677141338f68f8754012c9e7b78e031e3baa345927fd05851f20de29fe6155e532bebb19b26 DIST futures-util-0.3.18.crate 148706 BLAKE2B fdca59d8972871d26e4116d70bd83b4d73e869f43725b50751bcaf5db6ee8528981be476a74b26e85c182e8648733d16956e80c1f10d975b677866d4826fdb9e SHA512 5e6488aa11493aa1fbd688796c6f9af92d288ff38f4460b1923ee196a6513185fc63805abec7f5fa7ddbce186937bbb2aaab41da8216d088c631f8984b66d63b -DIST futures_codec-0.4.1.crate 11463 BLAKE2B d308ebb32852aca5c133331fcf59fc971bea93568dea511893adf892549f177baefe4e90a7b9b3b5b639d5080ae1b572aba6daf7edd83eecf98ad69c8bc32012 SHA512 0ab9ce9b8c668186785d66e41d688f272ab145604213a7a370e1cc7eb565599130fd24aac67316b2f76890707c1e6a837843677364c8f37a109ef97dd24593a4 DIST fxhash-0.2.1.crate 4102 BLAKE2B efade6722efed1cff0bcf307ababd9c9031af297baf410367212758411a21d61a473456c7f9b5cb15e444d115a62120f140c082e70dd360a3ae83f2f71bec9e6 SHA512 638e1c0a4e7f365483a329e715afbc2e57e47c03b32e0e1818c879baa96996e81dce8ab39320e24a3e1633f73dec1e5f18a06c37f3ad38043002fc99b55efc38 -DIST gcc-0.3.55.crate 37262 BLAKE2B 3341dc7136c14fa822a67fdeb72f7ea50b1264823e695e189d69604b8b8cce898ee2d40d8a536d0f520f5e190576afde16afa5d9cbe0a2c4b8600cf50bbd1447 SHA512 b045b60cf65c1deae44e4f40d0f511dab05c82be5065390dfbdaf5b51ee2d0653c3a6d8d1e7606e4bb6d234adfd22a8c68bde724406f3edb4bb6366617d46a86 -DIST generic-array-0.12.4.crate 18212 BLAKE2B 6e7d77c884ea5a2a8a2d34d7d714730709bdf52f0ebbdb232a1ec8403de4b4f431eafedfc3c2d7ea1f8a28a84660fd34b71b09117dee4bb86052912143142734 SHA512 f92002b549aa9db2a80f65c50357c1f0f490a63e104fae7a271e0b16d6c43ec9146cb7f371f00eb1575a1bfc713ded3beb51f9e96ede93f2ce66ebf78ec85cb8 -DIST generic-array-0.13.3.crate 26956 BLAKE2B b8df2cfb4b37543eb1d2803ab7c6d2daf4a1dfe7d652513c259f93e26ab3049aa033072ea486f83744effd188cc53fc785c3e4f3c256677f0fcb221603221ee4 SHA512 d66ea808aaf085c9162fa8c96a5655bc60b42df764c5dc17226e0aa24792d48230d51c9df61db6f551d491cd173da48a5e06d5e4e010901b14c3f044c7f38fcb DIST generic-array-0.14.4.crate 28916 BLAKE2B 41adcb738bb316d17967e029a829dcf7377427977309b010c2f2e365f16306b44991eb5f65698782497f614b129b14cad11bfeba2ae19b45efd117114492517e SHA512 34ac71fee2cd50ff786d39b4abacd9e090a8598baf4dc36ba5fecfb7171cd8e4f58e5360cbb0baf02a87eea26b7dca85b35555b82bbefe06635d2fd38f7b8b40 -DIST generic-array-0.8.4.crate 9820 BLAKE2B cbb5eaddafcb58b9f2ed5b02196dc3ebdf217bc4de9aae513bfbf61351ea78b028e1b19d5829615887fe66a244bfdcbb8fa6365d04c2dfb2a3fab5bb8a37d963 SHA512 410b136fb535bf9373623bb4025cd0adf7189165c32ced8d74ba91a8a3e7847a2fe9367f1b6357a201b035217e60b49e2d735184a3989492ae1961d1ce6de059 -DIST gethostname-0.2.1.crate 8988 BLAKE2B bfd052e0616282172df3951419ffb4cd67994753e5f34911f9fa46e3b3027a17c386b90903f2e31a22771eff61cdcea435684acdd2552386883964bfcea4bac5 SHA512 66a65ee64283b2aa7755f0e94e628650308dbf3fd0b564ec79bb0a934a820810fe401ca90afd476ec5806b487057affabaf6866f3e95f7f570e902b9ceb3c852 DIST getopts-0.2.21.crate 18457 BLAKE2B 10651e947e49acc768d99ae56ca5a7f37c1f61bbd1674e2ca58e3ae563fd64f3563d53ccdd0ae7a878710a39e13a99ac8c274974157db2c691f8c222de14992d SHA512 5515ae6ccb0f03efb783683f46cfd1755342c4e83bb673ff8914c7f9dea0dae333f8d9703865e992659a359067df0e8b0e2253de0d4b0c7707cbe7d73401bb1f DIST getrandom-0.1.16.crate 25077 BLAKE2B 0cbe96c27e78100c181a064e5fe524efa9a7a267fe60f8336d2ae0125883acd5d575ff17d1d56607255d9b2c30cb9d962026fdea1a5c3c29a5e0760d27c3136a SHA512 c5450c522c07c7a38b326f9a9062bac7d089630219d577ea4b55abad4e0c31d17b7cde385fc43912dfa100b42334e7a52422c55fda8b738caae428c6f9addb53 -DIST getrandom-0.2.2.crate 26010 BLAKE2B f2df79db0fff4a4e57bb5c748932dd7a8d24f7072f9a81fa92159ea79de29a70e7b834af6ffc5178e898af456188f16476043e9be4dd25c6e7edde06d93cbb8a SHA512 f498fe00c9887748a0be88fbd698a6087ccb79874cfeb35a18f90994603be29cb2aacfbc65fb8ba967190ccbc41ff9ff56bfff1de40811e1bc99a08b0568f59b DIST getrandom-0.2.3.crate 26261 BLAKE2B 3e52a87b9355f850e07e5080c20e1ab3acfa927bae28c63bb8bfd6a773ad77be96d3ba770c344631cc0f2d9a95aac920790173168b102e25f50480ee96663569 SHA512 e6da64ed529cb0fc000b613f75187ed6b20f716e721d8a02ac2ae39c507fb9f6189ebb66b522d28584eff1e7e9efc274cad6bfe43f464f58053701e1d51c603d -DIST getset-0.1.1.crate 8040 BLAKE2B caacfe1132e99aa24b44d1b81c7992080b2cda4d0ebb1d0c7fe472a59d44c679d7bf9a5c0a0a011163796c59343f87a2106addf5209f640584041ac4bdd1d2ec SHA512 6bf2a3e9438121e6ed089bfc0ad9bd352fa6e07269371c8df4119d1a8b385e3188348df342bb8860395d6887e4a824ce4ca43ef597d933154d7f1d90d91d1982 DIST getset-0.1.2.crate 8831 BLAKE2B b1408f4c0b2ece039d06180e3e2990db2a4ca3c74575be3b4d3df562fc48a43ee8feda42cd957786aa481fc77a554a8e944f34a6a718c07012aea153a1c299c0 SHA512 54f162d0d072253abcf26c8779a9d8eb423db9df85716da13a785edb4c61757cf0c03f3563dde5de4534be9d4d50498c03b8337dcaafeaefc29c9c836dff1371 -DIST ghash-0.3.1.crate 8777 BLAKE2B e3ba45d75f1daee6ebea30b546c8988637b912cd01de800a8fbc82d2e047cf1dda94ba758cb30f1a1b61b61c6c28b20a249ce7819ac4b9ac69032b12872c3655 SHA512 a95f25ba7c25354335ff887a50ab49292e0d21dd23715e8595c9fd22add0b279a5c5e618b9af82d814c619aa98088b721a14917347a5f9c3c810eac25b438679 -DIST gimli-0.23.0.crate 702175 BLAKE2B 9acdb3afc092e43b25a11639407eba7258d25e6dd57c1f1aa18d17ac7c2ad73b422f85d850947498deb3ad8c1b8001077f9b636f7c1c11a4215b957c990483f7 SHA512 b5dce7b563ce7b8dd6cfec5258793323d370f217779d0d57265bbbe2b1eb2704dbf0f25c189ae6e9079989b6ac7d5341e10fe49457577e482a3904c745c89b5a -DIST gimli-0.25.0.crate 705238 BLAKE2B 61b3da99b6cfa732b35d1fd71eb5bf5003b0caa5464e6da8daeb31486d8066443eeeb693b1e84d49f390a0c33f24fd3c0332aec01986127ffe26f7e770a94614 SHA512 f4e90703b8b7d83c36a63ca7a3d4ee48eec2b0762419780670558c4496ee840489b6a275eb2b635676ba25a010c0e378bae429b54aa4591b9d9868b48e0f0beb DIST gimli-0.26.1.crate 716168 BLAKE2B c138e890457e8724295cc8996f8e60f1f4d3eed46c865dc7ff2379c65e8d470080953eee70718867b73524f57d54d4a91b5d5ba74d79bd3da38084a880f3fed6 SHA512 c341354e13a78c4afeb651a0ed651f60d188957216ba51079512531ab1273b1b79c86c57e904b87064015f8e7efe4280d9edd4acf90e25fb29f8813a4c7bf9a9 DIST git-version-0.3.5.crate 3203 BLAKE2B f73d2f076c79c10c7395e584d811b6fffc7f348954c2c142099c48ba4440d257eb1be59ff26c3a61f37a6bc119afd82105a1697c37f8d7b973f3a43108f099f6 SHA512 7017d59ec7eef1d69c333ce8bcdee355dced8e912c4b5eabcb2abb93f6075ef3d1fd9486661d472c29787b75d7866fc49835d1faf5d06e42837c95c856398629 DIST git-version-macro-0.3.5.crate 4302 BLAKE2B 39173a36199b34cec11a1924faed795334586b21e3042bb91f3d38cee2d8b97ffb5bb4dd45a3c192d8c1b8d2b2a5bf4e0d3b23927b6f4212cfeb7cb9dbb16d4e SHA512 319729646469ab6508e16e6f3b88f588580fe7089479f70522edd6ac7eadb3c4576f0a57863bd3927d1ada693c3fe3706dc6a75e6cd75723db7f23199dc69ae0 -DIST git2-0.13.18.crate 189821 BLAKE2B 7ee264af12e64131d33be2161ea4be98ef3d334dbcfd88182a0aa26b7f78449571b22e43832337a24719ff5f548ca1531710f05b7c5b6dfbf8eeff2538ada3b4 SHA512 7cb932b92d81e52cb3561fa782ec1b03ef73e1ec3595ef933a0d79afa65f781ffc2f3c83766089fc06129b097d17e23d2d764fb47562f683a8d08a686377dc9f -DIST git2-0.13.21.crate 191193 BLAKE2B 430a2d43d2ee544c6cfd014f979dad42cf5e28215fda02998e967d9f98e91d77c7383fdc3935977657c20f1222c55df1229d796c9bb18372cf2726c21bc0ed4d SHA512 836c976c86eb8b818c90b9b3d498183ede97934ed7cf84828760c9a4e1c08ab4cf65fccbb200b0d14c129eee811a4c2c405613e1d3f27baae5e9972c7b0e6a9a DIST git2-0.13.25.crate 194192 BLAKE2B 7286ce8f37421e5cb626c3b3d4f0005d4ddbf4f893fa4885a9bad28ba3f0e24d4b2161df8788430d909394ceff77eae586b26ffe343d6b0ca287ea0b63087068 SHA512 666f11464f34d82abd994f00a0b81e960551c4c524b4f00d28e5c728172dfa894fec65050767cc96d18d1d5de57f1e901154fe8d70e2e31b93b93790bce021ab -DIST gjson-0.7.5.crate 2974924 BLAKE2B 03901a2cf5fd6faf42f7d478ae38fb57bcb75877b483198b58f81efe4aed1077ea28838d9744c6f00d1276e63e3fc264737472d7f3f297b2e44acc3690ca9cd4 SHA512 f0db4b6d4dc4e02601564b552d491d5b5e47a90fee25f77fa139506ffd99f5418a6bb9b033aea6ae7ebe1289ad625dacc3ac21185138aa2cde39a61bd593d5be DIST gjson-0.8.0.crate 2975387 BLAKE2B 0fca1f6611592f1152bfa69c423029b26a593dfa335e82bab5db4be9b193c7f77a6fb5f5e21ccbbba7c789bc5ed9fe1cbffd4507a2328c6c7a82084396fafc2a SHA512 0af6072b1843e046d67f36410d38849f6fa288722ee77737e13377f5251cab7bc6994be7e23c53ce6ee125a7e35f4b0d29d884c6e0b865bc3e2a852f6d814693 DIST glob-0.3.0.crate 18724 BLAKE2B 1f1dd380e7d668a0c2cff9134279ebda958b4bccdd4a65ff01f9665b45ec4cce8ffbd47eb46e52cf516c5fd5803561e6bcb60cdee21ddfbb8601a95d45500620 SHA512 87098ffdbc518442995c422120cef71f83069c8f88a1970ecec5105b0f284ddd92bcee929f5c230d5b90ae1ead7e1214c3eea26f4a8b26715a00c1ab8b09bc46 -DIST globset-0.4.6.crate 22893 BLAKE2B d47dce5ddb342b5c544f50c01160df66e81e80ca8a0abbf90a74ba67aa9c585843c051ea98ceb7249d4a56e5c1b985b00df734ec0fd19439274a8c1f998dbe75 SHA512 aac2b1b0f47103a0e8b404f4c97bcaa8561d51683fe741a85d745b3f30b56f0523c2fa21f21a680d9e883c697eb4232180f042dca290e954ac55429ae251fcbc DIST globset-0.4.8.crate 22886 BLAKE2B 726fceb279ef00589ebd6f77bbbe0642a22a9852a12ac9d14139af679ef2af0a68bb90f51f9cbb08d44190eafc35145df72ea3ff2f346d23cf22e428c887bb42 SHA512 1a1fb9731d310ced63742b2c6f7ef7f414c89780751d9881859a6e6fbc512e91bc23c91e3743bb36114dcef6dc1962fd376d67bc536752ba6a8a2fda7aa80bec -DIST gloo-timers-0.2.1.crate 5832 BLAKE2B 961384f97970b0ad543d9f38f48735909c4fab6b89a7490eeaf365e9fa94263d45e359444b5149804a515162b507184c59f91d4341643532e9f58b387036145e SHA512 c05881434f81aca49e7bccfcf0d1122f0320a59332d610c6891b452a521b7a66f3a98e59605a62e9145535e78df37e268b581a54b223a7ed3d3f79d6df82309d DIST grep-cli-0.1.6.crate 18949 BLAKE2B fe0c1c615cd2b1dbb8b7ad3980292308d9f06390ead08f42719b835805efed8a8243a7ab9e5bbf3cc6aa5c2890aa2bd53366a0bf65d66c19ec706f76beb58cbc SHA512 ffacb90586bb28afc3ab2a780be10c78f32b83c5ef5b28c7729ed61353ff5197bdafa485e87371d5ea10198bc9c28c46a22172a9fdb0adad0119274c503214ab -DIST h2-0.2.7.crate 156989 BLAKE2B 2f75a2f82391c994299e01fae5958dc7e21b78e38b8ade83a0c90698f54d232e6f0068bed88b98314e702bff773e8753c600ecf6b638b5bc1c7e692ef636d289 SHA512 6157bcd335d303246478f45b8740dca687f693dbbb462a0ea9560af12d1fe12a9c680c57c1e7ea0b0842137ee66cde827f273e0faa619db3b6180c5587bd0fc9 -DIST h2-0.3.4.crate 159228 BLAKE2B 50ca89c8caaf9952d1059175cf28a5050d334bc95b952e9cf5404556ea153e302881682699505c068bd4905c352fa61df0ae464f09605c8db7d86388a7f93144 SHA512 070def34be02d7c3eb3324c8a1d86fe51afb0dc6506825a972cf1df3311f184a46f20701a76e78b3a105de56a09dc5b3c098b743ae7f9f0d3b2f927d83bd536c DIST h2-0.3.7.crate 159246 BLAKE2B c75389ae07de135510d7761b8b3c7d3560cd017a59d4b286496e5049ab6846eb7ad3d27945591070ea0e329ba4b72255627206f1b420e705c8a2c28cc9edba1b SHA512 673d3690f29dae2275fb9e93a47835a00195845915a2a037f666dfaeeae70bc626db1fcefd5bc18478ad49282b5e137e0e6be3df1bb16e22067c901288e68813 DIST hamcrest2-0.3.0.crate 17640 BLAKE2B 1f5691c53df38e5c39a901f8287e3315fc4538b26c2782b3790d9e31802b586134c5b35c61d0a704b6d49572ab546e26a02a53ed6395e18381b83837029b4caa SHA512 e8dc89a4386f2fc335994f5b8468c7d2f56835c1b74ee735bed0f81af7f77179151678771b1cffe2134528f5b42c818c57c5375c66d8fe8a20d3c4e9df6dbea6 -DIST hash32-0.1.1.crate 10967 BLAKE2B a87b945b6c39a98022b32c5b29cbd6cce64e20abeb80b32131f95f7e919c979f3b5b6cf440e2255ec5a9861060d7a95deef3cfb280e26cdc0247f809eb2881d9 SHA512 57ea9009c6365de6a55bf1c4a514eb997a1671fe72877354fb75de858b531c78eb7a3c9e2477491d595a916ac4dfd5e976e1febe3e0ef6bc2299e69c37389215 DIST hash32-0.2.1.crate 11168 BLAKE2B 26e157c3e8e1c3f72c06a804b0e991544d92dc46ed6f12913074dc3f22861939e24644d7fee8e4836ba4d36fe02cf7147a5c1f30998deed33fb3ac53854d20a1 SHA512 e739445fb07403370fda110dc76b82046e5df0250a5e9898ccd0b33547972d26405527f3e3e9cddcd2caa775c8afcfbfc098cb995ab59c44aca642d6c539594f DIST hash_hasher-2.0.3.crate 11057 BLAKE2B cb4bc67a258ed3c340dfff78481ae085391d44a45383f2976287a08b505c014f826d7b3f5d87c832b97af976bfd6b77ef4eff498f806649222f365e8a72d2ee5 SHA512 de542ae43796fdafb843c9552d812e325cd8e8ca66f74c463ccca730ac556bb210885c16cce1620fead52737825b754d152abc333d8caa05d9be59e540015895 DIST hashbrown-0.11.2.crate 85713 BLAKE2B 402f9f1bdcb92631206f9b72923ee35e28db8623e87469c0f1496664bc7185077013ab3c8aea68268241e5b2504f10cddc613a350abd4291050deda6c112e559 SHA512 c21ca68fd49bbb741901f59fed04cc124b8da99e2a4dfc26e2e5e1140637872b344612a01691bd30cc771575c571be15f756c84dde225441699cd2322af2ad6c -DIST hashbrown-0.9.1.crate 77734 BLAKE2B d59002253112cf92173c3c1b305fd03fb7318ef187d7e033433baf6a354db046d1f3fe0387b3cf500fbcc0f83d2b2076527ba7cda2695f7627eca0bc3e3487c1 SHA512 dfa4742111f6fe757b7fa97f04c7b4a78ce9708c87e8e09ecf3c28f2566e48af9885fda380ed918cec37b5c696110fbdd30273aba6e7d2221c9e65f72af064fd DIST hashlink-0.7.0.crate 25309 BLAKE2B 39370daa12ee047f1fbf4251b46dfc797a75cadb743b1dddaf94295352888d0d9cd2fc2049e6646ffefac527cd16126c2d61b62f271c9cb678ba40a2677e8da9 SHA512 bef02ac4ff270a7021e0da24f6f0a7c2d601c20e2bf347bb4ab24058d97d25fc863d6aaad7971fbb7fb777643f66c7e1af47251acd89e12a123056c0a7810861 -DIST heapless-0.6.1.crate 61144 BLAKE2B 0a587c7950bda62c001d7f3c327a0abc2b28a2d78d9d9ad239a0c09014f22461ae8d2939193610339e08a81f049b03d269a21d05cc913e2feef5244544df1613 SHA512 bcc248a9110de8c2b350b24dab46d948b7459608124cbc76846e8a3005952961e0a0f792db90a0b59749e46e8e548a8ae43f50b073c35d4158826c2f05f859a2 DIST heapless-0.7.8.crate 68584 BLAKE2B 0eb5619d4ec98f0ea96758e38d4115d4651abf72214d852900ea9efce422c5fc8f5ce020576d1deea5ed3cd36b41e68e3add2703583cfc2bc2e259551f21537e SHA512 ae2e3341168ca0c7f0ce57e4c01c94f235332eeec8b650fb1c4c4f9de321b9b11695d635049dabb39a4364e7ed3bc8951d5e8c00a782afcfc073cbe161e20cc5 -DIST heck-0.3.2.crate 54718 BLAKE2B 6514f604361932e0a8e1a86786d3ec7218d95f8b3b3bcfc9e21c5fddc58ebe28bc0781e2ad24de4dd4296da85e97c742d8473370c99a593e7e5fc7df00fc9b4c SHA512 cbc72c3473ab14fe445491b1d9586d50de9a462af344638b871f7309fa805069a1405bcb1e0859b561f48583fc71045f38d03b92332d35131c67e140ccd241ad DIST heck-0.3.3.crate 10260 BLAKE2B dc756738081d855583f239908f671e9b5dde72ebfb577f6387b1a169817a03332464cf67071708a4c4f06b1ecb222118e8c719073ccdec1c0f938e5ef378b13f SHA512 b3498e033f44e03206421e565efec5b21d13107b60d35e4476331c44e6effd75c81f7678f2452c822eefd581209a2ffefd2034779cca2d8b4fac4583bbbf777f -DIST hermit-abi-0.1.18.crate 9936 BLAKE2B a5a1d1c9bdf83fdca8edc392f8fa7d9b9b248ac8d716e009300220befa5d8d80601643e768037be89bbbe6e21adbe6349c94c595cee3837c4b92b5f98ba838ad SHA512 54f060c6c1c80d41f40cec7102345147efb535aff9fa5cc0ed4ccd7f010bfdb6daaf40626fd5069af60ceb42058452803b59d4bbcfbed4c5546c79b57ae0f914 +DIST heck-0.4.0.crate 11161 BLAKE2B 13b8bc39cf3ab90e71433e3c7b3e5f1c19404bec58dc4298dca05d94d5c14c2fc97350de737cb78aa45196b1241aa8f1ccf3a11ca309da5fe0f6a657673412b3 SHA512 33bdbf4ff9ecc4f4d74cf06590e056f4d96bf0d990d5381b9da5b65682b2495ed74e27b45419c2afa986c1f6200909d5175b137ae73ced5cc8ac869e4e1bce8f DIST hermit-abi-0.1.19.crate 9979 BLAKE2B 801e8052b85341cca388ada9db4b06bb1bd7b64474185b2ad06c0256b9e597639bd3dd4ba0053ea010f922e53969a4ab47b90d451fd9b94c8f2324055d151ea1 SHA512 1c877fcd562b15d2de9c151fd6c5f3ea4bf48abcb799e6139a180ffad5d64b632f0000d5707bbd92ff23a0e5f349157b9e0f5be8b50f03680b0fa47315dbb78a -DIST hex-0.3.2.crate 9053 BLAKE2B 3ac67d26ad367df7543967a8153a2ca7c082d5f56df16cf63a37f76157ce94c68f4cb11c14cc75621a9c45d19c38425acb92b552dd6f45b9052d90cde2ea6e5f SHA512 fbb5e86da5c7fd4b7ebc505d4c0da1258b06406d40a5c6c1626f559e1a91525fa747cbb6e35a687c63216158832ceb49dc61d68cd7d74f2df3630b36ac423852 DIST hex-0.4.3.crate 13299 BLAKE2B deab49bf3d97f6fd7c0a0855b50232422443b226362bc7a4a19e57c2e662fff2cb046d4c5bd7618ddd523045f3d8c78754508f862f9a8ca29ca9247da6d6ec79 SHA512 fd8ff33b68eea2d6f2c6b02a6d82a2807cbcdc209ca5a76e3e3e5d006917ee151f236b6d18e2646cc9a9674bcdda1d6ce6ee363a89cadd99bef00d0eea9989e6 -DIST hkdf-0.10.0.crate 13966 BLAKE2B d808517dbee7340d10baa994dae118135ff3907b204ec6f92ecbeac8796946969e1ef54532594bec0669834dfe2b80108ecb30b9d8906202182e5e30f8995b64 SHA512 c75ea5b79953d28a793ddef5eabae8754ba74b5e57bd7953be6e4e8f9ebbc3b62d29e06b1e15eb101b849d51f91df61f45766d4ccecffddad33c39ec5d5668ef -DIST hmac-0.10.1.crate 11120 BLAKE2B eabb92f1f276f2397f7e28d306f4bc3ef0928f83b4b622f120dcf1203cdd420c331ecbe430e8f8424e6709523118fe01d425712cb8e520aebee620144f666834 SHA512 ab61133d280fb1b149ad097e29f6028a1998475d2f1995e3ed4f354a8fc91eaff01cf9437a13da637ff433fa05b43d7b144b5726c1edba1130c7004bf18b1c3d DIST hmac-0.11.0.crate 11385 BLAKE2B 850527040c0fef278175f35a0c8bf77bc005708539af8ec5a85111f83e9c94a912741a2b24965c026fd75db6c58fc82a46a9c5de9454540400c9f19341561b4c SHA512 82d83071d1cea14603b1f1a85d564c78e28d982025a029779d8d83522fd5c56583303dd3a902d8023b5e9df2ddb5c5d9a5fc88000d41dba45dc026239ec81d0d -DIST hmac-0.4.2.crate 10800 BLAKE2B 9f49f70a98ffd48acede938a76289a3f614a1bc2a86f10bbaf490eb7512b9f79a754667ece1142e10ed81a32e49e15c20880736a8582252fafde0bdf7d6c2c06 SHA512 3870cfaacc4592742d9acc375ee96b1af0631b1bb93b738edac43f7dd9561167ca773976b9644843f6e4be26e3ebaf0282de2d950c0e42d105eb6592a087b807 DIST hmac-sha1-0.1.3.crate 2283 BLAKE2B dec107bd99718fc12c317e2bdc1be4faab26d203906b02b839f2c8f870155cff386dd844dae0a4c123a7e54858bee51b3f5c70a44621eaaf393822a0ad93f15b SHA512 968e11aa24948ec76a034c288aeca5e2524fb072650d59b9cc3723fef13e2fafb12e27c4e743b289948edc9f3766faf2c9f8069532fa40aa4145dc4d01763381 DIST html5ever-0.25.1.crate 73165 BLAKE2B 70bee0c77337b2fee3fedda6fc475969b5e9a20342bf6890819fa9a69be8cac66e0dfc0a608f5cd6ba789a780f403ee736dbde1af52cb800a599b0113801dc99 SHA512 2b946224a0c5859436a57a507a89601adeffc12092376fe47429c5c5a61bd1d00b3271f0be7dea82ba1dce93a1cb820f72df8ba4c90fd13bd1ec408cff6ca660 DIST htmlescape-0.3.1.crate 53226 BLAKE2B 428d4b1d8d5acf473a44069cd7592ffbd00e970e95d1db876e34a672b90c03676b6a80ba039c877a9932db1268a13f632691b78479f5f7520efb5b4ce57cca94 SHA512 36bc5c45ea5a802dd0206b28b4ece4b00d2e143b638219455e34e04110d35d4f12818f641f9eb2623fed8dd124ec8a36a99a36a5fdd99ceaa6121c4d5479bf6b -DIST http-0.2.4.crate 105489 BLAKE2B 07acee6b91b6a316f3277ad324df6da1d2ac804a409983384d2fc027ab63ed05390278b21867c0096730c91a00b8f8971ab6a66d17b9764f119d245592a1cfb6 SHA512 0b5c609c12ae4020801a184dd6c751919bfd4db985844c55b53368afbe2b9f641cf9aa523ae49a0b25a251cd8f19ed634fa28990d4582cf7a27f10c4304eb465 DIST http-0.2.5.crate 106297 BLAKE2B 02917ea704475510cf9d71739b4cf3cf8f87a013fdd7b9ebbc21c702642bbfc9e33d7c7ba47e084c86cbae4d95a72a51b7f7d3c00ed5652931c9286d83f5b980 SHA512 ec56bea9a6329c82053a757b6d537834985284f22dd677f9bdd335785e8ae71acefce0e07a7fff57c6648d0fae54a8039d71d74936f10a9b5547fd90d2fdf7d0 -DIST http-body-0.3.1.crate 5394 BLAKE2B 9dd7a35cd22d22060762e17f028e9353fd66fcdc81c0fcb2f0361dc7ac86bab18b89ba774f28e2e2b451aebd01a31b01029587a3d119c5a30ff176c203482367 SHA512 0c81b2d8512be3f07d5b08534d2a27424fd6abdf175e9bad9a657b9d95a48e2916c8713bea8de3154520c7ebd097324de246a1d2ca6595f2355e1c93fd9fe6ee -DIST http-body-0.4.3.crate 7660 BLAKE2B ef56f26e844f1f234a5fd96f29aed91897617ce126e6f143ee29fda2183858b3439570ee980469fd092ae8d7fab00ce7d4300e0f2506a9348876df766d80ed50 SHA512 2d72e11cbb072dde536c5187f22d88dd9aca0768e7b0191003e463900d50ba73e01ec6dd8c98d348c0fc5651ec022b859daedb5194c71fd787af4f2dfb97650c DIST http-body-0.4.4.crate 7836 BLAKE2B 7f417ff8520753324d5915e3f092988fdd26b2413db5e917045a1201d7d701d8308b468c05da4d4ddb9abb7b0a0eeaf82f15a786f29cb1ef621e4c168f4e4bfb SHA512 cbfa91e31e91807f004df77a9d8999b1224f862d4765ba92ad4d34d288fcab67372734295f30760a96eb32454d78fc527c6519eb45b484e341617686e743381c -DIST http-client-6.3.5.crate 39838 BLAKE2B b0642454d763fd98b80f19f847273acf81f04a47261c34de1c04b29898930bd81a0036f883254d2a7ac1080ec9a086bfdc4afc6989d24bca6f4c4e8ba0dd3499 SHA512 b94cc2b590e21dad7059b95234a58f3e2cde6821dbc473378b6f57825ead89254cc00786b83c327385be885e0dc6db5fb1c194d977120449f577c4c246428ceb -DIST http-types-2.11.0.crate 1193281 BLAKE2B 781547dc96222ff8a016ad2be08775565a2178d32bf46581abc9f040f50d072a5d97fc9458752c534c738ecca68c7effbadf91c848360a80a15aa637d14e17bc SHA512 421e4dfc1ddf2f4c9271331bfb5093f0cdf163d4c1dd33daa1eef0d6f9748aad03e8701f3c92c5eb018e20e25d5121df2095d924bb4e8b3a4f0a8b8d6b64266c -DIST httparse-1.4.0.crate 25546 BLAKE2B 5ea52423fd2734f423643c37be2464d192644eddca5a072567cf3c439acf7f686be002d5d3c4969bace7c5a6a8f811270e3dfbce704433df255d41477abc0594 SHA512 378dfe2fa2600eb186cef45cbf3db1051750ac863a6c31edb421a59671b876fdc1668cba270b1625f5d4c4cc892a50c6bc00d86ab0375585d2d7f25c22baabc4 DIST httparse-1.5.1.crate 26758 BLAKE2B c2f17a601b54032c1898b88feb836ec380465b5305e240d9466760aea85bc709ed873d1677714acba0d493d27fa5f5288931cb7d62f240e50e2d6b84d4e72046 SHA512 70eec6bec5927e272d7cbd09472a14b0f33d153498d5e1894c0853bfd35981c0d249a799c3f4acc01b8499c29519a49d81efb755bdbce124e55f73eb75cf8592 -DIST httpdate-0.3.2.crate 10768 BLAKE2B b435d0a530fcab46496a921a565c3ad8654cb39ea038bc942c8fefab8dee2576e9b157f203b376e80a10690650c1c899eaa29e5af75888c8998b07d5d049fa97 SHA512 5cb56c85aac5acc0e9e2c72fe0913d2faaaaeab10a15c0479407ab779494bd81f8e3fc9675f5990186a34689e841427e83723a87a91a5204ff57188e89be98ea -DIST httpdate-1.0.1.crate 10293 BLAKE2B f25b69244fd82beeb0c9c8f4691d1d057df6f835883f6cde069a4eb28bdbd7808b5f02c8a48b88ca4f60e14c2e0dcc84f4cadd733edea2f8f3d061bb485fff1a SHA512 1a63f11759e331e5938697d181c7f021e953e3616741116437253eaf6da862b6cdb08a0fef5808042d8367de9fac31b63ebcc917cfb81b0244b4d238f95538ab DIST httpdate-1.0.2.crate 10673 BLAKE2B fbe2230262cd041e1ea8d6f9782376c25b0e841d711961464fd5cdae0e9effa33f50841d8adceb6b9753cdab911f3456c86bed0d2b8acc9be5f81da8e62a1b9c SHA512 4d650dbe7ec1d0f457bab71cd009fd92ee296fbe0a6b0c0ce4d71aa3bee720094a03968c08e542be60869350e05b4a1739542c6415e401407345f5643e15f8fd DIST humantime-1.3.0.crate 17020 BLAKE2B 37efaacedac293197ff7acc8b0446a73243a2d90ed8dbdcecd9cb0af6e901f135e1d92aa1a642460f531a6811a5f08075f8aabaa9941e96eddef301e205fdbe1 SHA512 2589bfdac96108951882b7ee497528b9084ddd344a67914810ea9961a1e319167d5cab959c66cbb26e398e75ca50d488a251694fff35f3c2f69a88b6f22844da -DIST hyper-0.11.27.crate 155617 BLAKE2B 56b7a1b60b1b900dd7468cf623f48cb2af9d939660ceb62fa1167bedd50d8db563ce6cc7e27e65cd51935a46874eecdddb3f621562b9313538af4bcc3ba671e9 SHA512 912713166f601d086a7aa68507143c143ac69c31bca23948e0446eeab2c7eac09fc75c5f2e61aeeed312f2ed54b91b0f212d8e46e30ecccd3be1af60dfcbd59f -DIST hyper-0.13.10.crate 141981 BLAKE2B 8cc13ed7579957040f19a81aa2540d4b9d453737b6e277dc65df648530673a536ba009e8b1d61f61da88dd2613d2fd5ba537271b1105eaa528ba2933cd66c9d7 SHA512 cc7c6b00e1864c44a647fcdbe6e59c7a7574169b787778b1074d102a39e092a80802383d93eb4a6d0f7f5da9449c45e5dcd1e6caf6efb946ddebd687d2c2c10a -DIST hyper-0.14.12.crate 169745 BLAKE2B 946e0113cf301ef99c0c4426af4530b4217a50b61fb38073e9759663974c0ea7d31127206fdc592b714f7009851348e848d4195769aeae4e7b115ec7bbfc47dd SHA512 bff751761be9931a577d79fe4041da97ae574c178f14ebcf2e2dc53e2cb14091f978f6647685382bbe746ab4f928ccc81f2b61c5c36b16836c123ca3137857d9 DIST hyper-0.14.15.crate 175489 BLAKE2B 2509f448ce9c101ec1fccfd8946d3800b76591a97252fe393b81f0b7960f4cd1f1fec543045aa431e50b2c1f20a7be06c5464c8f40be6ce6837915750637729a SHA512 0d60aacc2146107de291c53c3cc275066140e54b478db81b6f77e4ac44cfb634dbb4858689d0f0a43c12b9f38c723ceb30f6d8a8912b7eb22ee6af04a6e00283 -DIST hyper-tls-0.4.3.crate 14195 BLAKE2B 9dd7586f873554af044a6ae96858337a083d9ed5f39ccc89391a6fc6ac534a2c01ca5bc750139598329cce8bfca496cb0bcd5c4e13259d3c9014762e2272aac0 SHA512 4b16103a8490d9b39569b589747dbcad60cb5a904cfc1bbd19fd6770bb7a67ea3de0afbe46b3f08f107a8e6ad00bf74e2049d99b5d4d1cd04f1dcec4b0a3c301 DIST hyper-tls-0.5.0.crate 13257 BLAKE2B 50cbe4ca7c1862fd3fff192de070341dd32bfb9f108b516e1e261ec8da7c4f7972b7b66e3d45c1497733a913b0281bef706994270ec8bd03eba7368612127aa4 SHA512 45dc16cc9ce48706e0b3575dca35ba1b6b3084dda8c2cc489d126e1c4f0bb96a9b2baa860d09f68c5e0a48c2a69e3eaf62f4f0406fffc4efefcd79d26c82896e DIST ical-0.7.0.crate 17601 BLAKE2B c0feed7d2dfcf2d7910b23c198289ebe714a8cf0cac147243893416a8dc062d033d6c973ba8ae077011d14c6413b614d898668727583e6041411977822e3af95 SHA512 f74e505e7b981ff1e64c6cd8380c9542b44c52055a5ccce6a83bfaa4d4b8dcc063deba192d6e4b0752719c5609d041d34a4a8357975aa6f550471f8b2efe7305 DIST idna-0.2.3.crate 271023 BLAKE2B 157ece18825fd3f8055581ccbd14191a6923da4c806ce51b3d6376682878db000a1b873f744c8e9e1966e4c1f8393643bcb603deae299ed0bd87847b0bd2c591 SHA512 1278bd561ce329e1dc7a6f24a10f83d9a068af5d15a088414f3921c6728b0d54f4d60d6f4d0d5a786596ad226263e1e50c3842f192d5758aa4665ba4ed5c269f -DIST image-0.22.5.crate 160338 BLAKE2B 53de92a5034f73a39a27a5c79b5c404bf59973c4b5e86f497bd3176e07c215484e2ac14b68efd50e2746f18d70619d8e969352408ea23b8a1523ed1366211332 SHA512 9ae1ef7fe152e43839e5521cc942623f048b78ab595ecc1b631e864b48dc75c00129862ba2b586d5a9710fd516f5072c9cffaa4fbed520507d3149d9a0e30e6d DIST image-0.23.14.crate 226804 BLAKE2B 0debec9484b54cb56eedbf07c246b80afc6de99b03e5f41b5cb9aa29ad2269cb7e9891b7377ef7ff53200959317bd38b24e823ebe5c2125677ef2588eec81ae8 SHA512 4eb07fd698c2d902979ab06ae0baef4a53db74da78493c45f0c32d5903c5399cb8a1a25a2e89bf504ffb612e8153eaba4ae41df3d17f02c27e7991fdca518f63 -DIST indexmap-1.6.2.crate 50225 BLAKE2B 38f40c5aae0c5dc5da515e610007983b2d581994293f2eac747a3fd78c9cefb9faff64555e0c6dda146e9d1332d59f23c353c6758e63f99b6c4676123723ec67 SHA512 1509b6aa6b3b84fa15b98026052f6d5f0f1aedd065b02b24e31b799f8db68d5770e9a8302ef10e1ad16817256dbc03c55593928a48eddb252d25de7e0b7e6406 DIST indexmap-1.7.0.crate 50363 BLAKE2B b45318ae2a6e1f008494db77a3159eea3fed4f77eb04ae65599be9392d6ef78d4677b65d04fefab8f917f6808fee821a33bcf53a50b88785fae5ef6848e3a08a SHA512 9b882b4a7068a686acaee0a08bd4f3b35b58d36e786358cf14a3436eb61339649e64f1757331cc7833a2fa364c76eb6b75cf0c732afaeb202113de1e66b72ab9 -DIST infer-0.2.3.crate 12401 BLAKE2B 8db9c350ab57e2b17ff4a698827f25b100c75e881d6dd9f82264e304cf4065f34169d3d1b558ce760937d92d27174dda4dd2514df06058c72f5e002b7b3cd057 SHA512 ac349efe070df8a0e6ff50d233882124402cacccf60a1279ac3b0a43289297ddbcc964346f7bb60ab8e8022a6aaedb42d9f0d9cb69ace0d112a31bce4ec381d9 -DIST inflate-0.4.5.crate 17715 BLAKE2B c46dd3e4d064c135921670b940a3cd3ae152c5cadc67e00f6e4a350e7d22efc66807dc64b6e5943af30f1b985b2cea2dc42e7d923a05bcc268deec22a0a7de17 SHA512 1392402f72a8463dc5cdaf815d8933e8dfcc914fb3a91e69c38e54deb7d55b5211e157b640b7cfa999400fb4d2e233a4a1a678147594dfa0be300894126d17f2 -DIST insta-1.7.2.crate 517272 BLAKE2B 79bd5a5724b8a789132f0c53e0dfef0a24f5237c406bec8219c9f7384999b19d3846277874551e13b0ab77ad7129920f7c587a4f46a2193d808cd381e53b5d77 SHA512 97d29d2b5c15f0f261055ac78053eee12b59fdca278280f79853ed4f9d8d19f4fff2be2a994576e9926e74b072a9a236ef03f0233378dc3d3f4ce24dca227715 DIST insta-1.8.0.crate 517581 BLAKE2B 94ab23c10c388467bbb797d1cac096b80429a6c61403a84c896717d5a25000dcb1c22368ac963b381b55d4cf193b9f167dd17c192db929ba2c43196beca083dc SHA512 40d6d1c51d2c04a5a711b67721ddf7d2a6f635980cc566369e3add63fe781dc3f8515116377530bf86dbe520efc06a98f121c5abdf21288174e1693fc542ff8e -DIST instant-0.1.10.crate 5218 BLAKE2B 1e4203d235006ca922134c715781a5bda5a932f6740b7e22505db21d3b675758bce10dbb370e96694574c40c43a1d71ea2e6372df7116b30fe8cb0b65a3b95fe SHA512 a6b2c7e0a7b954e961f2d904a4cd6f701617ad70a7ea13230ee157c473c903803dd64596baa0fabd075e995cd3d013e10681c8d712977341ea2b6f97dd48d596 DIST instant-0.1.12.crate 6128 BLAKE2B 728923f757c1ee4e4a7afb90e460eed81392068961240a538e5c6468e15a0b6491f590fb5f6cc46e6d78901ca232351f65abb9f2f230d8f4983c5e58c4011902 SHA512 fae494c00111c51c840f9dd6a10febe403e27ebb933dd16633a213e9c20f2bc11adeb431c71f8a6713bf88f270a010941e15d83df294e658791934f83a5d2407 -DIST instant-0.1.9.crate 5213 BLAKE2B fe208faa09852079c603930e88b7d0392a89a55d3b934ad45ffb0c9e44df5ef7e8189ba2fa12452f1c8a6416d6f7c0655365ba959bedf2b78228613944be8278 SHA512 3915f67c3629ec93296d56c4cda0cf97b29b1a70930a9d546abb9518139d4c2f35062563a5094e84841ddb1f00b0f3df9dc00801d96c01994765221edf03ef7c -DIST integer-encoding-1.1.7.crate 7964 BLAKE2B 859ac942cd2d7b63c7d930b8aa74713127f7c85034c8d5feab1c4ed933ac7e6ff00a51cd150c061664fe2aaaf5e4d06fccd94b2df505be7fd7ab89e7d0d52bb3 SHA512 ef15185a5a747ffdd475ca62a5bc7beccfd77d614bee28d1652e0e5fa92a7fe56ba37a06e73dc0634bf6c7e040898118efbaa8bfff555bbc52b15b53feab44d4 DIST integer-encoding-3.0.2.crate 12365 BLAKE2B 21532d3e2f3184649694f82827a7aa9619c7db38d094596f07a54e664e1a279df89310476f2460865c575c376c1251a65850a997446c6c2dab8cb376c80d7a5f SHA512 f00f3e6a51933db262c73fdcc692942e5b4bb6eb97c5a7a5fb40f6b7872750df566932ce76327d7266aa74ee8c602d3f0573aed7d864296905270fb8fb1177cd DIST iovec-0.1.4.crate 8720 BLAKE2B aa1b4cd98ebe47901c0959cf1d8eb2586a803d0453e2a8bdd5c63442b32886dbcb37650aa218c748fd45c9fe3a7fdf20569eae5b19716487b139caae1526da4c SHA512 e23fcaac239807daea20ddcf2cdd4fb858ba1aa970ce6248f70f0fba5bff7ebdb27247c0997ac0ff2791178f86ff9657e473d8f64b86c644763e5b3474edd158 -DIST ipnet-2.3.0.crate 25031 BLAKE2B 064888a6e37ec67f70baa4d571708a9173cc788921260511d8092a0e32982a0de4cabfbd28e17da812e1a50249e2106e82f95981163a0bbe71158b1bbca4158b SHA512 ff77e4ca8ae0fe1a8e9969e8e131081a092b258f64a7211d550d3338ece61dbbed499786b5e97a8515c33797e8cf41b4e38d7832e0d1b18584b0e5231c75a22c DIST ipnet-2.3.1.crate 24932 BLAKE2B 26be72376dd7f62d3d01cb9d3287f9aa19e7f52e01f3b47ba8dca1734f959683f17506d4ce071072b8f288e7c494b3daba9054770b9f5f9959e9a450b82a0baf SHA512 db74ad4850e61b20b5280d0637a33a0a1dc2e3388bda38efbbdc221c04dfe04d304d57c3704fa68a824e65e8a3bdea2e743b2d0c2d06b1a8710c192cec1b6100 DIST is_debug-1.0.1.crate 1897 BLAKE2B 870200e87f264b1e3b886b9a103853de480ec6d5fb4f7bfe4943f06d445d7c7c5725cdbb230acdc62c8520834c4fbba2145c7589a63443c56a11d7d9d2504ff4 SHA512 08eac6f8ae7eb63a9c90430572c3e76159bce772d78eb892bd93cc53fe05d4706a72fc9408c72daf6f0a0287cc100dc201b1a197de4d7b66ef4e8e42f43ef594 DIST is_executable-1.0.1.crate 9550 BLAKE2B 64fbfd2805b9e7a2498a59bd1ff924f84a42c5f1061ba59e7d3cd72cbecb394272c3f9af101f838c7a6a636746d8ed3b7f698c5720857675c58127cec9846d81 SHA512 677980983db2c8ed72e87a2f2df3bac328dc6ba6dba6c3e8c4e4eaa7b8fee160ef4e81d105f65ed718fb7263137ffdb21d86b148f614f04fb9e24201417c8a29 -DIST isahc-0.9.14.crate 175279 BLAKE2B c76720414f1ad2ea174a3933ac6b9650b077ae61e164e405efd82d3375f24b7eb064da303e58cb350cf4b0a3277ce6b5f566d67bd2702957f9776862b0bab678 SHA512 3e4738eea61b3854163e4f09cd50d75ed0d947d9ee37ebe1ffe9829b49e987981f4c7283384b2b5d927dce951c02737d75bf211f2dbf1b305f3d3a9248cd8e2b -DIST itertools-0.10.0.crate 109656 BLAKE2B 73b65db4a9f02cd6940a81966ff433c5d9d82bda15b2250907728b2305451e2914e0211ed16e9755585d6a4ea67c3f2b1a5b1ca589afb60f20f23d1c1d31da7a SHA512 ecc194ded512a0979c4429c0395125e1d3968c61f673546b755c0a8bf2fa5a604690baf77e95dbb91dc26a3004b50a856a8aee0dae0e4c1bd83073e5e7cacefd DIST itertools-0.10.1.crate 116219 BLAKE2B 7d354daf7b069515ec7fe77ff2f4f07ecf870735d7ca166fd6b10ba89431cc27bf264c648efd2052206e8edd8f596485b913071453f37e5de47da44e935db79f SHA512 8626eee66aa598e16f5322a6fc55b17c622656f58635c990f5cbd8faeb4739690b0abb3efac4a9a3073752e9f2a51a0ba29401edb12e0f6bf9bddd8d1b394dbc -DIST itoa-0.4.7.crate 12099 BLAKE2B 0e4ffbaad504565056f74c3ef560a87eff321a0da6d7a2c8fa35813c207713c22d77080c3b830fefbb21370dd29cfbc6a2807044485b38ac1e0c9c1de3ccebc5 SHA512 c61eb50aa00591af28698b45c528c36bd92088f7cd2f453cf686a1824f4656292638bebc468cf67f903473a5045f22777af623cc0515ef3bf25146b89a7c454f DIST itoa-0.4.8.crate 11926 BLAKE2B e5a648b490908d0ffa3a0832342ad11264eb4357939bb39aad014aed3938bb60e82703b7e31929a458525061e9bc40539d33753bdbd722a03b6804e57dd1f70c SHA512 6911d269ff3ed7350e4f0dcfc6e9e0d70e25833e1e7cfcc57d5b8aff1f47b8be4f2e9baf1b92e5517cff63492be489b6d29b48dd9bb642e428acaa431216b68e -DIST jobserver-0.1.22.crate 21175 BLAKE2B dc0f20541fd14aa5c8b161cf36829a36e550ef414215417e25516ef1cf67cc1c7100cbe4ebcf8d2530e3245f8793a3ff11f407a0ec5d96385ecb6618e2de7a20 SHA512 ad3d180bb49fbaf51c9a2f40de0e2082947a0cb5bef95001bcc664e4c98f75a4c32a6c53f5eba90595e415b600aacae54d92c2f613dbeb8af94fa08b6d770d8b DIST jobserver-0.1.24.crate 21303 BLAKE2B 571e6f18f09d56d8281d2b2d206647666dc6e9ebb0a1fa48f707d3cdf603880b78ac6a2ec2239658a220e70924ed1612dc19ad90fcef883f21972a1df4f67d57 SHA512 0feade0f1f0a458bdbcedafce8fc39f44adeb56772ea94a59f16f038a743f506db1405a7c8deae65a6a5c1695bfb363c19aeea1c82c41c7f4d1101469f32e42e DIST jpeg-decoder-0.1.22.crate 228366 BLAKE2B 97dee932aae8d7d08ceaf37c9659d52a93be7c964468087aa39377fb2657c64cf8fe20516337cbe5fe0452c3686e9d1b7cd6c0932bf1ca6562358fd4a8cd69be SHA512 3edf415eb11909b7b16755f54c6a5b082200f81e6ce5dede413e41be221c8be5c14035a171fa1c21771c8d11f30cd990f57e6e98e3204e34e3f0e7ca2c3e38b4 -DIST js-sys-0.3.50.crate 67123 BLAKE2B e31d81932e8c219524aca9159013e3e7e24519f154e6789b9b5e23de7da0b89e7ec5bf3f949a28a87a0a9671831d619aff1b84ed0b2011ddb01668b110c4d9b7 SHA512 961f1e2949ae8e662aac866807b2522537ed8756caaeaeca2be837329d6b684dd928aca1a7da9dbc402388625c54177dbc6b8141a1efa4087c78a3240d002d87 -DIST js-sys-0.3.53.crate 67683 BLAKE2B 40e1483dbb936d745343e75d005edb0f5f12fb89ffa92998278cb75309e3534f2475258ba0090c691bcfbdd126585c2754d980d5492c237a865e2648b8516a40 SHA512 286278089fff1eefcf206c49c4ee35a3197129cff7bfab93f36239d975732da720d22134711d6c201b12e49f05022934dcc9cb41c4982bc99d29cd7c4a8de878 DIST js-sys-0.3.55.crate 70499 BLAKE2B 6108d6bf4be72dc93db5c2f45d59dcbd7b94edc02ccb368a05bdc0e259768be4708e449647b254bc3c542a366492a02f0569d08e69c00249f58b07a566cdf97a SHA512 bd51d61684b3683d5b80df42eb80cb2e4688096bf14fcbd30234503709b1730ab25c7b58112516aeb5d7f44ae20e0ba08bdfddb0518a20603bbb4ca74544d4ac -DIST kernel32-sys-0.2.2.crate 24537 BLAKE2B dfc4a1e31d3ec9e2ac62b890839919fb7fed1444070c1dcd75bb75acfb53556d6cf2eddf5a6639e7852a3df2a0cc715c5ce1d3fc898ef16a1687020d98f715bc SHA512 682bc7c629aefd035966a2873518fd60719121cca7d63d89d6c97ff5306f24d8b5055a3c91b4eedaec22b1d5dd3fb8b48ff7341a05bbd72d86e06c422dab473b -DIST kv-log-macro-1.0.7.crate 16842 BLAKE2B ad3c028863d78730e4b2bb2e8cb980581b13d741b5dd2b76435ae91f5a7498a1e9f99178a0c9370b693a3af6a95c0682ff0d63e81a2515a267c6564d50ec3683 SHA512 aa7d79ae599930dcbca06f77590d9623dce461b118435dae1a4128fa8f38149a820109fe4bd1f19944b67285cf1b41bbf78e94b47e561dff1af683953c55a697 -DIST language-tags-0.2.2.crate 12754 BLAKE2B ea59a130fa723b1537e451d5a51914391fc0d375d40df1d8b3ccda64819e918332e344585523d3ba61bb0394899fc1663cf7a452aafd4a7e694f8d70627f1bc1 SHA512 54a6c7d1bc985860c194c842d7b5ec731d0e06f9c77ead8cb0156bd34addd957d0bbf8b6a9dfc6bef5ea31e39f84ab447d1ccec3c178a6c18c4a222a51e1abc6 -DIST lazy_static-0.2.11.crate 12361 BLAKE2B 3fe6a480c30a792448a3a2b378e05634ec59603f07baa03c0881fe5af85ecde5a172bb0733e7043fb6c43eabc261635b23410658d48add09eef6d807a750d22f SHA512 c85ac434d1b7d41d638e76a142a43d925b96bdddda112b1abeca1bae160d828262a85cd333d72499fe1dc7ae9574d3db226106acb433328c056028eb8c42bfe6 DIST lazy_static-1.4.0.crate 10443 BLAKE2B 25b2e61bbac48f0dcbc79c81d7bf01f2403d8269ecb6be3ea6147bd00f7a588df15a91f44dfc18ada19b21faa71de4637c7d493a8628cbecd0e547d74e616a23 SHA512 e124c0521ec7c950f3c4a066821918da7a9c6e711115d98009ae7c351928fdddead852e7596fea5937a9c30e4e4ce8eee7099b20248b5d6e3b2494b6a6d88cb8 DIST lazycell-1.3.0.crate 12502 BLAKE2B dca2d3f46823a52dcf87b7d6103fc4f1f83bc5247ce361946ac2d9df239fb43ce4b418104503698dff0242480cd014996e77da4ae0a88f3cedbce4eb9d3c9ef8 SHA512 f9d627afc28b61e9687a3f72260eb013401fd64057647641ff2e763770d7380ab1d2d8cbb4a3c8818d53d504c618a3b46aaf701f72f4d7b25d226042824c2f8d -DIST lexical-5.2.2.crate 102038 BLAKE2B 656a9d6cfd08cbe4384f470453164ae7578585b0ff8d15cbe07d1c05f26cd38fd9bf8d2acd1d87bd03b711c60a4296d6b654afec889c958e47a29de3f91b4211 SHA512 14caad364fc62b73e4a3503b157e0809dd8cacbdb7d1c3ec9ab8b705c2e79a73fc2fd4ad0c6aa19c8c933f16778d52ee25e20b99030381eeffa33ba12aefa993 -DIST lexical-6.0.0.crate 20943 BLAKE2B bb83bcb970295118e485d3ee0ba2221c5197d6a8a00cebd930788c5e1f7380430aa3291746c7a36022f34a715c53b72c7612ee37cc52a74526c69ec71229542e SHA512 5ae756c2cc8d432cc79447c18636c10da4467b144e65611980913042a77ee85e0dcc47b433a192ddfcb236499038e2a2da99a1c3441ae11861f7d312304fb9d8 DIST lexical-6.0.1.crate 24183 BLAKE2B e3047bd8b42bf12a0fa8a1b2a3ea5062052754dccad121d3da9519ed75d0601742f6c97a0f8031acad8ed9737dc4a1670e01719c0eb8f1713e326922c7f59a9a SHA512 6f81c9c413dc1d65181c96f227f8d5b6906945759473fc633fb2fee7855b5d1a3619f95bb9ed46e0bdb7c4ade5a7761fe916d77a1dacb2eb1decd9d178a2844e -DIST lexical-core-0.7.6.crate 494385 BLAKE2B 417644e5e33a70aa4165cba77bad45c540aaf7bb2037a5461c691b646a5470c7ad68a60029ac50f1cf25de3b6928b3f491e9b7ef5cf5a7d3281d83fd33a173f2 SHA512 fcd7e4e073e6440183284f20a6305bbe4aafb5513a20b8ed793439e4b5a5519532a0605f31e42539f3e6236003254812b459a9b9c47b3c449f5c582dd62c3172 -DIST lexical-core-0.8.0.crate 23473 BLAKE2B 27c0e1027ff7f032ea1c9ca4b5842cc39a587bafdf64e31ea84203bbb8b4d77797c89ad8703f9ed0556835fed6db8805c56d6fc0a19c7aa4de3823951ee4e73b SHA512 b7083f39669b26cf846bc209c82caf6bade70351b102b9e578318017f9efd1ce394a6d98722c0e469c5bf1eb42945a5aa663c999c61308ad98ee65680fe2fab2 DIST lexical-core-0.8.2.crate 26711 BLAKE2B 114b86589b4aede9437c59706ea45b73e0dfae25e840e697297686624815c424869f94971e03380bcc92db796205a95843c316697f1de62364626efb718a5e3b SHA512 e1f326b4c1b7ba2e6ccbdc6f7bf900c9000dac37365dc0124e24ac72f54f3c118b0c51d3dab13f31065690b3b00fe12d1dbb7b5e994880bd47389eb402810d4f -DIST lexical-parse-float-0.8.0.crate 176510 BLAKE2B 674e0d2639452fad9ff09031af1618fc0c422955e600bd4f9f3147e2870c22d5a99626b0e89e4d023ccdd631b27fe994e8f0c89587becf4dfe65caa3928ffd65 SHA512 24c7646a7c5cdab8c52cc3aaeddbfca50b6a9a0ab76a28453dd91bc9c065e067393fe40a8c132f836211741300ee5037e9c2b7a4f5ce4060a02a8144f3c923f2 DIST lexical-parse-float-0.8.2.crate 179658 BLAKE2B 399adb323e47423af34e7c29ad984cba64b2adf6c1ce38c9a7013c214e0896f00d0db3b66d3f90e9405da19e0c1924835a20b18b42038443fe433b7adfb4efa6 SHA512 7f7ca756c1d01a87b2949d2aa039fbbf6bcdb983eb3fc3c6cf60ce0308f6053b3b55f296546344b9de77bcb23fef066c4a92cae84ed15db320066f38cc3753a0 DIST lexical-parse-integer-0.8.0.crate 30131 BLAKE2B c49d74bf73e1a298ca260e23d6cb3aa3b252ef9c4d30c3b363ef347f3c800c12a23862a288cc1010c60508759f962a656baf52b698274b4b46df2fdc906353e3 SHA512 b98acbede491df3e397ca8a7ac796474920dcbbb16daf7a266effe69bf256ad16f1b4c0cf891307c02c7940ed64ef2b5d750faf112d313980757743962b94e36 DIST lexical-util-0.8.1.crate 85045 BLAKE2B e7991e90d6a38423f096357c9577d3616382f91ac9f3e6eaa5128e598588312cc41cf1dc50ecda4fe5d7450fecaf3386d4545ae6e9c731ddb17f49eb633ed143 SHA512 e943cee76a4ab022694f65b2ff76ae72c575166ca10b99df20594540a1b5b8affdec4accb4e2434861cb9ad43e5576fe811b99c3d926cbb62ada2dbcc30a82f7 -DIST lexical-write-float-0.8.0.crate 96459 BLAKE2B 9c3003afe2e9cb966beecb0576db711c5b8818faaa6ddf6583982e29052f3f3a3db08d295aa8bd1336f36a9f0a1ab5e569010a8d2c848eb4b8e5ddd3443ecf57 SHA512 76231834f7974c25d023197f646170a71fddbbabfbf88e80e241d207a3d0c81dc6d7a22db3fb8ffc8316f52120527d5b3d4f59bb61b9ef9b38f3c5745ea651ff DIST lexical-write-float-0.8.2.crate 100230 BLAKE2B 27249e8c388448521618963e08172be083fa55b13d7c677361ad3b65edfbe076f0545742573ffe356759506286d590d8c7ff2baa03ba15881bb99941a5438c61 SHA512 1f0100cd0d2450cb2cda6ea8d3d2d0bb792346c7e956753f34bb701fabc6865f4dae9ddce18a6a0e03cc3151a36a3080c053be1020e33c31bfa23d4931f9dedc DIST lexical-write-integer-0.8.0.crate 52070 BLAKE2B 0140f58da5f5dbb2c99a04ef37268d4346bc7d83aa13030869577b59b22b2bab2603af76af584c95024ededa892f87298053ef027a4a25b93471b9cab352363c SHA512 c7e2ea5e70b7274ee61d921dadd09cfedd21fdb312fa65eef4f87cc3ac79ad912c1e12fd2ff2a53c686f1d7d861a1abc427ba1b2a99663eb34171c60b68e6ea7 -DIST libc-0.2.101.crate 530003 BLAKE2B 55be777a0ab91df07e06f8c5045fa49dcb356eddcda2feb3a16949afbfb395abb3a50a97fdc6b6f1b8974c07af13c9b286f8222fe8557b668247065515063d8a SHA512 876a5739c1ba29d4a4d5c9407b013afabebc6f5644dc57864104e99f0303e7e7ef1d5ee81a665f1029433b9251917b1e1571624a123dfc15586d6bc49ecfb3e2 DIST libc-0.2.108.crate 559475 BLAKE2B eb8b0250136aa57e89d256d8401fb590d74a1447039324ab4572786185a2f4b7a955c356c8cab63b019619617313fafd5b7c44dd09cfa3cc92dbb9b7fb714580 SHA512 a29f0c5cc7e4b653c2bc33c92dc90b5d3a7132d4409d6b92b94fa9fe1391d8cf57a63d339ca0602f2efac28d3dc3beb854cf9a6d03bf027fef5e5276fc5b1487 -DIST libc-0.2.94.crate 511713 BLAKE2B 6ad3fe9aa5ea5fb06a7b2beeb68fa245e5ed7d19aa7e4b21c9e2ab73da11a9249913e604f0f87fbcc82676cceee16f14403cd2f27ae462730e1682c539666283 SHA512 316717d2e46b57c200d67d0ebb4fb162cb1f0b688895b9eb6075924cda3be8ba7fae85319692682178b6fc5cb2764e8b3a9d3e7ce234fd8a21a0a9c453ca174c -DIST libgit2-sys-0.12.19+1.1.0.crate 1434327 BLAKE2B 3e21b7848bed79222b3b7b23a3acc356649e356c9316c02f2c621b501899587f292ca5e20cbc78f21d34ea896bb04bb451ff0ee74020ed32d7d26b904be628c1 SHA512 c12c16ea06c409b6b9b837050192de8b8fded5d5be3eba1ce51789d0d3fb2dea5ca081d4a7079f3d20a2a3363e9ff9740598d267d3b6090f3b73c7df076f9eef -DIST libgit2-sys-0.12.22+1.1.0.crate 1443875 BLAKE2B 58168804f8947bd854d3b5326a8956c3ee0a4dda6b45ecaeaefa470aa1038eec0023668dc363dbe6d10bc3018246436bcc27b8cce005b222d38889590656079f SHA512 20fe79a676c7fa5ca0f5096da166a8302ffea3b63e39021e31a34d8831a6b163683384a4e2e42ece19c19a80d5c8b7158ec580dc62952260cfebae58e2aad8ca DIST libgit2-sys-0.12.26+1.3.0.crate 1476836 BLAKE2B 953756b4ed1e6f90d9eabf03dd9f3db50a085ecee4018c6f5e598b2b030e3332a6281f5e033810134356a48b92a4b910fd534813f2111cefc6de3bbf2954e1c8 SHA512 de30865b3d4ab0288e090381e5646e3e8028c341fac93014168fcfa5f166f7fbad9fc4ebd285919247cc6bac178658eb936ea1fdf168068248be07ad34ecc54d DIST libm-0.2.1.crate 111906 BLAKE2B aedb58515c1f63a1731231cc3415b2269a1dedd8c56e614ec08b9075c80a0edec5480efd984b320c38a256ab97d9590851f8880e846ce7dd03fb5dd7711f798d SHA512 a037ce773e4c4b0a9c20a23a9c04a34bc468753a1ccafb42199ae1793adc100148b77b08533c4bcc0f269d7de421c0657b6ea62f132ae808cc3b998f55e713a9 -DIST libnghttp2-sys-0.1.6+1.43.0.crate 4458350 BLAKE2B 90357f647b7ffbd1bb5debaf22f57de48da392bf6ae64a5a7fe02fdc0c791c945f918432c21c97fdec75a6aa16fbd3c7ad6619e42e04462bb58fca906984c551 SHA512 d64cef5933c01cc4243f8cd9b9b00224d1d89b00d21202ce2e0baab0491357b7bd23a5310443bddf9b2ecf3309747080aff4eaf5bf7a0e81c9ae1482a3c64cee -DIST libsqlite3-sys-0.22.2.crate 2345859 BLAKE2B 284b9195b7bf48f138970dea782985cca3d105112430400ac76189eb0d44174a063751693fb2978db1503387eb4865634caebc7d7d0800cf34fcfd8a4ff4b5e5 SHA512 c87c19f7b4f2043de57da0bcf52fe0cf170bc9b894599a2c4ebd1dd489dffd40bf4f30ad78c2b1613e79fa7ccc39bf87d90d8f708d22bf278a8c682626cfd28c DIST libsqlite3-sys-0.23.1.crate 4667034 BLAKE2B 9154eeacb90032372af4562e9ac9ce77a81749387ace325bfdeb950c624629c5937fabe592ab2811b45a2a0be308ea2749fe383b7bd23a2f012b2974dd11cb93 SHA512 06ae4fcfb7537fdf2e85bd4c5f1f61da51cf0b946c7364baae2c15e9e84bb89257cb21eae575d1542327f6685e879130a853c445504ceb86c9b00b4d9e85b2a1 DIST libz-sys-1.1.3.crate 1341394 BLAKE2B 24df26f2102fb05231bf1c866ae4bb33aaaa0db7e963f452d29091b870d3cdb80736b8013bd39c028ec84b97d265f005dbd650515f503d04655bf7054ee537b2 SHA512 9ad3ac88cb3c436ba046a55123b7a3c96c56a8ae2a1b85a3eb39339e84441b16c82d35630e9aad1d51db83943f2d08cf0bd45e212b7284c224de451a0f0c30bb DIST line-wrap-0.1.1.crate 10010 BLAKE2B 8f64561931efdb39ef256b90ad12573df76449afadc11f38b5431c1fff73da3ef1dcf9ad8ba0c30cd1ef1b0a8d894a7b34327e4a5eccfea08051ae5abedb483e SHA512 31976e14355317bab470e6716542d3cfd59083a1808bb199dc2eddd51d05fab122ab054783d0996c1feb53bdb316e6fa24b34cae9ed8e8cdb2702bc43fd805eb -DIST linked-hash-map-0.3.0.crate 13693 BLAKE2B 1d533fbe24475d831d22b64896a8e2ff7dc370c797c1fa7ff2fa6cacd43a87d08e68283436347458c4f047c938a5e45048b5f5801204f7411fd775e5ac7cf1dd SHA512 4e93c0ac9fc64beeb3b800ca09d4c701f7fd35a866c174588a9d174604d5b820f43c21d48b4e00143770efb1046a053a28004258754930f2c4ed76b2ff8ed8c2 DIST linked-hash-map-0.5.4.crate 16166 BLAKE2B d6bfa091265355ae124885f76212c968f2a87af80f3d306c13223ab7fa1d6a449ffda8d042bdb887501d2ffd8adbc638f18cdfeefc16c39a1eb9f57b7c658bf0 SHA512 2938883357ec0e7d9c9fc5746063ae419c97250ddceeb8de3480c89e97e0a29d175cc9199bdb3ddf81cd5d6a2a1e319ee1644a7309eea96058221074cf87c0b6 -DIST lock_api-0.3.4.crate 18750 BLAKE2B 1aa7cb716efa665df7b09ee8d95c9fe0ef7ec108d89348e413e78e3af4d6274a49530ac03d5438a503a7c6dcfe20973c1c040d79b6cf228c5a15696a1caa4a8c SHA512 1517ec7cb1f9012da78be866e026be40465cc9befbbfff4a5f644ec19653baab6b171323c3fb8ef218df4a7bc4b305e42a6b9d6849654d0542a1c2dc8fe11fd8 -DIST lock_api-0.4.4.crate 20356 BLAKE2B 1b4a648467eba49232df5c595d7c5a0444018269a67db1768c7711d9d1a903a1dd00f99d8654c30186a470c035abdcec9994c8b1a347fc559c684b1792ec7f49 SHA512 655c8a1503b6e7f833b4c62109e1c5005727054847bff81e17d4159f91c02ac97512da0673ab227d17bc9ed0342fe3476247daf74cbc9a0b470e68c648ba706e DIST lock_api-0.4.5.crate 25199 BLAKE2B c91adefaa0dc3efa786957794b67cf219f5159909179282c13c7e3b68d73a0acebac29438cfcb39b75cbe87bc181e981ab4ff2776134621d8ea92e7a6aaf966a SHA512 d6cd948a4183a73e8b91b9167d551e72dd75820c76123fb0839f8389c7872d2c46dbcf5785d7600ecc4e27f3d214f476585b9c39e85f70500eb8d012e5ff9535 -DIST log-0.3.9.crate 16686 BLAKE2B 543a8a2425c88bd3cf00d4cd2b4790ef344f9743b61776d65f1d8aaaa1ee1069933e33aec114a2dcaada5cf698bbd983fb22354aa50bca58b161a36b2f1efc47 SHA512 1d49a0dcff0a17c1238aba6a6cbc485a61986e8c4768805ded912c5014d0fba6ca38c9bd038f3f53900a6309d41fc0216682f137362e63715878195453d2de6f DIST log-0.4.14.crate 34582 BLAKE2B ddfba35947ae1f5905cd9ecb9eb862a78af6f00ee8b8fe6258b369b140928fe677a02b1b3ca5bdec36ff2b16abd85a9f49688fd5f3d1ba2b2905e7f96b8a84c1 SHA512 796100167663d85a7bc4244cd305e9b3f0a1b1520764b63464698eb136318d0928c40c16f5d19d9f602a5bf769851275bbd48d66b088b0c37be7a6fb62def7cc DIST lz4-1.23.2.crate 13190 BLAKE2B bbc8510df4c3351c7b07f739e8a59eeaa21b81b570927214964c94166df9e12ef11f15e8939a96bf9033743f530ed21aff50d6c34d5adee3aa564f8c002f05a6 SHA512 78e4b1a85eb535d7dd55d974b3580ad8982c5a6793836dae7cf7e56699c4e7f1114ee2f74a3d7d290cf9abbc703ae3fb4feb27d994949ab00292433e7c32fe45 DIST lz4-sys-1.9.2.crate 308384 BLAKE2B 4abdcb8a12cae7c55f7333dd91d59ec7b6e591a010db44c8d56a4a63aa0d2f6c01f41d91851fa59e7673ab141f69a3867ec3a687eda5412563cc880a6f99730c SHA512 183b1c0c09e0645feff2c652759a86584a39831cfa64113e8d649cd4fb3276bfc84533b10912b7c979b9f9eeb14d032b565b61fb83bfda2d7e784c7ccea83d3e DIST mac-0.1.1.crate 4838 BLAKE2B c87e9f9283f179acd28c189d02d9d3de0ec99f9cfbefa590daa2880c275894951c5b0b935b652ab6c8c0172ac59e87f52fd49b787b230e6730365dc076d17578 SHA512 dbc6def04c482911ace311f34be79992fa04042c7ce36b71459b5af5c1c43e9fa66b6b40f63f8c3647daba287bf1c1be9b1a8031ead1d855f99a988898c96f1a DIST malloc_buf-0.0.6.crate 1239 BLAKE2B baa59345fd372db162773adbb441caff1f6bad965c3681f244161deaee76282fa09b9af0d0642cd39ef35689f85f5bd7c2efb7ba8119a58e86c7cd12d81b2c6b SHA512 463b3d7666cdd7de618abf0cc4e488060c84d6d93c56d4e922169511a0b03de380ea988cd998f5a162b244088902198763351ac16dea3762f0fa0840fc29d6ed DIST markup5ever-0.10.1.crate 34668 BLAKE2B a13f39ba93a26a558a8f03ebbbaa98bf2c7caa4fd393be3e307acd5b59a6d91fa8fbf4deff234266cd55772d5047145cc80c5a215ff8eb5b2fddb88468ae4fb2 SHA512 447b0f44ea8b786688127aba1b6eed826dc0127658d293c22db74864381b5e7bc0584243dcc0ee19929d3e757521167c13a108155ed5c8e78375cb0fd3c6f7b7 -DIST matches-0.1.8.crate 2216 BLAKE2B f18176110921b1cf6e58d52d12f1d1a3455ce2dc04421fbf1b392f66cdd81a88e924571fa27e307a06301d83b04f3b8a0ca3ae40d2da6f2decb8aac4e2801fbb SHA512 98b58f6a2694b03a7dd1be69ebf7e3ad14483fc8e4cb6e6c26a4937e4e660e843efb4dd04a7312dd9659ca02acd3775678f73b8faac44a76ffafaf873c22f590 DIST matches-0.1.9.crate 2246 BLAKE2B de155202636c6a03ed68cdb21e8ef96e19b45be040a82943d2d7e5192c0ab5c253ab6d65f0b30b2689e21da79cba684af5be6e63c48266681aceba356f6eea41 SHA512 6a2809687d30ff04ea97bf9d1610d746e097699a4c3625ffd1b7b1e4a9673ece9d559058c9f760b99d6ab509024f7b338e7cfa6fe767499c983efa98bfb98305 -DIST maybe-uninit-2.0.0.crate 11809 BLAKE2B 5e517b8c59f9ae4f1a4f86b48679ea64d62450ec2519c8caaa914479ce9e5b3aff24707e2e37272ba74bb60499afdc602fff17756337b0c50a9184edbd8b8805 SHA512 3006fc009c7c743d9147a4122e677cdeb2546f7bb46963b2f266839614eb906f9d763c161044fd0bf3f7b54124ac0734ac9ae7f7151b1a7a5f45cbc739976434 DIST md-5-0.9.1.crate 15494 BLAKE2B 25218518792be16223f78ab0bd81284005b4a65defc538fba79dd3dc99c7d80dbc8b8ceeda51dbea4851bf1da86d3f66fb64dcaea86b5486a235c43719a3dc3b SHA512 300723a785c7edad2a9abf18fd9f8f9a40ba54676b394cb5712894d1170cc48199a0ca9ccd3b525f82832d5b33413c2565a0c079b6dd08c63d782f1a91fc3e0b -DIST md5-0.3.8.crate 6177 BLAKE2B ccfe37b9ec1284e5b7a1532d521ac2a96f3a77488166a71b5e57ac5d848db6db9a3b43cda0a5f8d2ec35f353b0576f4c16f50a6fb5041844c668462f0afcd05a SHA512 3cff7965ac287077803a1cae6e808f8157ed182ab282c948fae6f936692b08ce904ecdf53d37b83989aaf57dceaf1e82984c749ca27a2ca83f8eed2945f36398 -DIST md5-0.6.1.crate 6574 BLAKE2B 10b0f6d84aa5d90da374227d3aa5ea606e9ca41e711b7847e4290fcdd787a74fddf0ac516795d0654a02f331c131386c29a95532bab8a72c958587699992dc09 SHA512 b2d399ee2e7f0777ab891e356b1010a4cdd4a5c5b7013e59289cf4462ca7f744066f26ed97921988f913ce3de340db3514f47df5858fdd57d6a0101fa51eafb2 DIST md5-0.7.0.crate 6671 BLAKE2B a1c8132cb4d7497ab3f4550e6fffdea6b118ad99a31128c068ea3243b5f76c4b059042da376a0be32fb74e866571348a581c2ca727d6acf855d823ce15f593b5 SHA512 569c992eafe25986a1328666a428b2335ecc5cb7a5ba142c34d7abb1247f6768c0bb3dce790121686d4ebf1b4a1832d65315136552163dfba5f799f99551544a -DIST memchr-2.4.0.crate 63392 BLAKE2B a3f30546c3b58ff4eba534bd7046446e96ad793718edfd3379bd125c47eb270728c4aed4aed1c6afa27032f74078b2b2ddddd5cc6044e117e2b956bb13f902a6 SHA512 b142e308a5aef8e45910411789031e194349ee540c4ced0e2384d864dc1913299fb63a161ceb5228256e97d0949661b7f83a169ef9d4b78afbd9004cb7b8a2fb DIST memchr-2.4.1.crate 64977 BLAKE2B 31479718c118093b684bed946eae0706d77d9d275bd49f5aeff4de490f479abd60c7dc462150eafffc6d6fc1da0853123b78be038826b775d2a41a4c39d93ab5 SHA512 d8912e3902a2126f86159bdc998532a2890b882cbb7d59b5a470fffcad4c32281e045f2fff48a235aa4189f1928866bf3d33b699d50866ad6b6c272bba7adb11 -DIST memmap2-0.2.2.crate 17218 BLAKE2B bb2e8e2a4ea836751b7e19edeb1ed323e5b0b423449f5ea071f4e4e80883d93283e5ede52d949f4acc6c55214ca3cec7083b8658ce818dcfbc8eaa13a3fa0e51 SHA512 0a5de857af06bad3875a8bff07d2fc1deec75e642495f7a26b64220d6565accefa0609f90a5c34e17d4ede0a89884af93330b0b303284169cc4882d1b6746e8d -DIST memmap2-0.2.3.crate 17669 BLAKE2B 7b34c460eca434e13010af93ca942b12ba136994883c0e07aeb7a8834dda5c500860420d644ff936f3755c2fb08d98a5101fa0c71a6c94dac50042eefbca325d SHA512 1f7869918606e90de2798497d20f7f6c36162d439278de22835478a1f21121558aea3804f3e07de0aef48e1ddb0a514ef24096185af76df9566c0f377b18df3a DIST memmap2-0.5.0.crate 20760 BLAKE2B 5723352d203e97b8b9e6e898e1e93f2838a820ca4773c430264f6b44887daffd007fcc499931bb21f764d4a402cdf7edaf53e855094c5ca08c6b5dde17da2817 SHA512 cbb1a74f3a8a0671e4e5153633fb0284c7badfc9711569b48ac899c70ea9e2de3cf4b89fb3c959e844b6270206cb8db3f69998d7f09a20cc929ec496106290f0 -DIST memoffset-0.5.6.crate 7382 BLAKE2B 42ebb93b567b339822201e31830971c32452b3d6681787c6969360c8db54912ae511580d8c899a3b9cb7f2fba98099c8df4c17534b97e4f4b1902d9251296527 SHA512 6df8952d41f60fa0993fbc85d112a15c1f6ecfef66da29ebdab71f40cd8ee8722400693b6ea023344f1b5dc351cbe828f465a8cabd150377a62948cedeb5db6b -DIST memoffset-0.6.3.crate 7697 BLAKE2B aae9b5dedf06680bc597825653c08bcfaef6429a8367c8dbb58df7f09e91b166d04a231f28856af592590eda0e255a947294e0b8064d7651f490e44e4d1e748a SHA512 5afd2f9a282e9bbc60da1abbf911a3b4480ab975c04c565149dca8a36e9975b3262023b73c67d9dcf80b2eba3e8540aa2b91466d37a2504facb3f1eae98f52bd DIST memoffset-0.6.4.crate 7664 BLAKE2B 098783d0fde7268b16fc5c9f5df005b93daac18092f04d981559b9f0fa310344c6fbbb93d42587ec7107a5c4e8d757508377dadf03471dbd7022f3bdb5b3da4b SHA512 bf8d05b72571ccdef32a93cc4489ab4cb7abd41415d55572d1dfb983053afe3eb2615e968d87a326af90c5702b9959150f985a4186acfd61df9b69a74e99713d DIST meval-0.2.0.crate 20571 BLAKE2B 19ce5c37a9fc721eebc4f610406c5322f8083c1f61593517760ce50d29696a06e8cfd360bf44509e099b81a9e905a61e666f6edcea3a843308e992b12c986f2b SHA512 b27a19f225f9af191d95a7133ff2b58ee606c32884635fccfc761287afca154be50c376c9acdb7d25a3c337c79cf122fe42e340435a05e74f349fdf71ece2d9e DIST mime-0.3.16.crate 15206 BLAKE2B 9a599ca82fd0dd6d3d2dea68a47b8441b1024d016ee1fb23cc6431b39ead20c9b3fe1ff3397af79c2c1b2cd277c440d4fff69f6b28c550ddbe15f680923c834b SHA512 cb1d691610cb82720e553247336fc5eab63407ad37febf2eb50aaa4e329cca70959ecd8bb8c7af5753acec2c8e86fc9a0f8ad9ad2de93fe9295ce84033d6054c DIST mime_guess-2.0.3.crate 27437 BLAKE2B 6f9176749241dc9b8c08eea3285ac1aeb40ab079f8184d93c436c00b205ab754d9c2b5c481774837bd1c4522b33338fb7ecabe88ee2da471478cdc1391d9281c SHA512 b08013ce235e66eaf49a88ab4c5cf4d1f1b95846c1bbdc1a73efea9052058860c7dbe2b028fe1b33c713621862fe9af2ed097558cbf5e08903ee406a44af162d DIST miniz_oxide-0.3.7.crate 44996 BLAKE2B 0e89ec4131e7abdadaa9feb6019b31853976a34434216e0f89ddab519559d0e1feaf2228fbc09906e51fb0242a18abe1a67a5362e080c19fc7cd00c2f95f08ae SHA512 d4eff239f8d6e947b94619e80fe03ed32aabd1a6393f63145d70ed7f08c51c45c7261d8157bf61c78d1637ea1f71ef15f9813ec733efd8afe6aa14810888718e DIST miniz_oxide-0.4.4.crate 49938 BLAKE2B 3403416bf9d10b67ef976eb23be64216027c67c56225efd08c87f8269017cb5174ae64f35d18acb66c7a1b831347791cee5af565f3ddfb31ae4210221604b0c4 SHA512 2c6e484a8a53c6b1fb84e2bf9518919e6e5ba84e7716c0bb8e33b53dc0d3432c35f28f19c18368e27c94f6df66b7674f514ef889cf1b19f546bedfb6e6ebaf6f -DIST minus-3.3.3.crate 155371 BLAKE2B 07951f5103c00af83c4a33959b53df8bb8525af2971431cd4ca808897c19498e53d49264d254266a134c7e162e0950bfc225ad3998fd61fc482a7d9ecacd0de8 SHA512 51e209b0b3e26d20adffaae632f9af5972f5cc58c7532dd1b668cccf6a2ccab2f82d518e6434582b0782afb2e98cd4bd041466f1d5462fb723ad5a3ea3762e16 -DIST mio-0.6.23.crate 103554 BLAKE2B 1286ea6deb7579964a5c15926509d438c5454d4f56e936753c76927826fbc5444dbe33b7465a15d0ae6c122bcc98899959391a5418bff31c176d51d7b2f33077 SHA512 ea95d15072fe36524a85b50108415a809d7ea3744deee45e4b6a1b763a11c88cda6dbabe4f8d01945a5edeb52296a74fcf457c85be3032c1311a35025860d05c -DIST mio-0.7.11.crate 86660 BLAKE2B c55020ecb53cfbff143314d0adfce7e5124f66004711df9dd5f95d18d89b994a13e61b4a12b19a482cc0232393690ac87fc7d56d7d431d85e6826c2f5822b56d SHA512 abcb2d29868ba749ffbf2f4eadd5c24ea80bdc7d62aa09fa0a70d9963e73fd5f603fb9b73410db5f72a051a153e0ef5526992aaaf1b212ff0e961bc31d107c63 -DIST mio-0.7.13.crate 87027 BLAKE2B fa1b8287981c3a96c0b6f29de221241d12bbda1c19a95e315f5e026e130e2bff6199774524d5c178718bba47710cc50dc632e942a590f5d5af598e4d59fad269 SHA512 3f9adb95db494dd39041ec1abda0d476b308296024347f28bfaf5883d7896ee052edda026c25a9ccea9a31cbc5431d95c0e13948e90fc8ca7b1a91a19748a45c DIST mio-0.7.14.crate 87429 BLAKE2B b8277f844429d32b6085dac9649fcee20bfd1922eca541ea927b1ea3c61667beb4f63064a9828cf347ed55678842aab2a608af359b3ec92b595995a6544dc371 SHA512 2349691ea87a086f9bd8df5738705e9d7b59399089948f810b6a7124beffd44dee348703c89b4b1af8d84821dcb932960dc4bd9ec9543558f59a40c4806fbfd9 -DIST mio-uds-0.6.8.crate 11496 BLAKE2B e52d131f292c7c09fa116ec5c760d50e8389c27fd7b79a4418f0222ae124fba0e5943b5494866e9db75407ab9f6b1a9c7aa7fdf2c4d601e8c785dacd8166f6da SHA512 b6c752ae9f25c37fc7e23e06a8843089c5291d60e53a6e9093eed1d8baf64c9e0ff14bb2ea1c0c8815b00026b28fefab2aa34104bdbce7e99549786d0f507a73 -DIST miow-0.2.2.crate 22044 BLAKE2B bec3bbd899a080e5c97a8c1dd9dead16a57aa44cf2bcd97be03155c28345c45fb731650eabffd2fe18a633ff947e63561327cfc86560ee86c3fa71ad4d2a3b62 SHA512 e42012f67e1c5a475d1c9790bc731add53f7a3838d36f8a701f69974c3ff33d31364006220e69c8f37bae2eb31055ee704c42b64241d13be528c768ca5c3d6ba DIST miow-0.3.7.crate 24563 BLAKE2B 24375754245e4ac50620a8b6da6b21958914a6af6422a470487841c2524587d596673cc3718a85979ee911f104d71b59b38fbe9db28c1c7e4b702b9373215cb7 SHA512 451073e8913148889493de0373bc0450c8b23e136e151b48b9976292e4e03b7c3f3279ecf49dda5196badfe662a661a998cfa456d2ec340a495d54a4d2382699 -DIST mp4-0.8.3.crate 46491 BLAKE2B 1b6bde4c841d708f52b890321903885ecef732e95be827aa477358d5e03a22c85209881f9296e9e79901e1642eb1d9bb1763af50468664f60c061ed250d668f0 SHA512 5fc6547742be23f675fde444eb7b468818d3921a073e5b82ceb06dcd62906efd276a095e80bce673f72239b2bfed7b2d955d221e972e5dba0491e317ea00e1a1 DIST mp4-0.9.0.crate 47571 BLAKE2B ffce6a714fecaac40a3bd7bdc8543973c0c9514c232b34ff297d0cbf18b104e8f0872a6ab3e00de72e9bad1ec09dd2bd5fc4fc2dd8c2d6a8377bd0e50ade60fc SHA512 0308030e9f3d5e7541b2f96abd0ccf8b674277d82a4c3b906ef6190c346db5558134bc7e299d758d0b9b832a46b09f4f98b73613f891560535ebb5cd7eda3dbb DIST multiversion-0.6.1.crate 13191 BLAKE2B d14aab5f41d26b26db7937c35f798ca91d7bbb351cd1572efa1461c5b9b76b24ccd8a3c2cdbe35ed91f4bd5be6470ee34a1797718dc3ef7a333101a958aebadd SHA512 073bd0a20ce9629bd6e0393932e6132ffd280d589c016b58602ab122962db92bb7275cc96da27f0ca4046e30afa054bec271931eba91e17cca1378040cec36c1 DIST multiversion-macros-0.6.1.crate 14449 BLAKE2B 5e7db99a0a8794dd738f1ff6110d3272260b4a151e78b37c5cd46955010b5968fd3fdc2d76ce91ed07afd890982b253684185bc28a42c7c859812f12d030c6f7 SHA512 c56faa88160a692125ecb7d101697902445ddd0668d5351f5d3298b5fe6a50e9eb42a30c9349898560dd20ee9b6896a89559662df31f93abf19b5a5a802690b0 -DIST native-tls-0.2.7.crate 24958 BLAKE2B c06b2abdf77d9ecc7ef6dbb7ea2fb6fbb4e1eb782dfe8b9e44bb2fa799fc9f3800f3d865d2141d04533ec6679d84aa703aaf2a497db6b0f60544da1437e47476 SHA512 f646b45767b0aac208b840989a1fc09198e70cb5277c077ef8247d3f591631bed09c1d36cdf372e68ff3aa7da7c885c2307f8b0dfe2185839e15dd4e7dd8f143 DIST native-tls-0.2.8.crate 24956 BLAKE2B e5b130b717c04e3d9413d6cf45986b67060f31793e2825585b8e4026e73927340ee9edd5f5f2d6750200bc9eb0a4b8fbabe0a1578d6a8ea17208f2fb28d2a201 SHA512 3648272b1c2f10c3eb9c7121c20a26da149efcf248187522fe07fde9b506a2b687e8bde8e09c0f8f74d19db5b84ea98b19b177c6daf38bf8a0c3ec05907006a7 DIST neso-0.5.0.crate 26756 BLAKE2B 582551de4cd65a4899f900041a890e9a0eb928711d65441e2f6e2ca19e4e6c5713289729974e12574ba660df51e25da9b28ffc023475aa374c800a6b2e57bcaa SHA512 9f2da7d982f5b58636a2763727d881238a9558c49fee74e9de51f3d8a5bd9bec152dabe3f1542e852bd0118c508b5864fd16943aba5218da93715e5a6cb5f66b -DIST net2-0.2.37.crate 21311 BLAKE2B 21cef5df92d5d51c8e23c57ad2225e3311c13083fb86830bcb313965eb5ad0170519bed9a47cefb2305d3614ce55e11896a06437cf9ca50c79b7843ea633e99f SHA512 9ae70c655468c3e35ce05988626e0398a3cdf7b7343c08aaecf1267bb958329e608b814cc7be252fe085de3cf6913a1c72aad206c677459469ba4886c20206ec DIST new_debug_unreachable-1.0.4.crate 2561 BLAKE2B 5c9831b04e2a44b2dd27816df0a331a8108991a84ebdfefe4e42f325ec3519ee50e89a99d490020a65a3d75acc371316c2253d2c6382453a0b15f4c3d5b96520 SHA512 6f964bb322aa8f2ff92078381dd720527600c6449e237b703278cbcf47b39a2581fddfc2f34ebb7cf31229e33d58de48bb5050e083fec6dad9aefddc1d771c85 DIST nibble_vec-0.1.0.crate 11796 BLAKE2B 2e80648e4e18d17fdd41671acc1e166a8337fe1ec1765e5a7f08c19fbcb23ce43b11d1cb396b867b9a2c0ae58e30225d9b13fa337793d8c32abf99969e7c11af SHA512 21bc50bfa5f11f50b19a20691346f098db083ceb6891faed72fb91d2e911cee060ad4d19ee1c98792c5809cb6ab2bd65061bc051a1dea75d9096060b87497f67 -DIST nipper-0.1.9.crate 222329 BLAKE2B cf2024e7c9efa4a7609723904c8d656554c6a8030cfd02ea489f133def0695a1e824721808e6bb488bb1b63e94d32f089eee1ef61283c2ab8f713496bb72864d SHA512 9eec3a17d35afb3fe7a5ffe2c2f3ffcbde1450ae8be6bd285c9e3b2ee65dd261a622799d9f90bf4f091144ba04fc49cd5d3fa5bd7c410a6289de9de9703952d3 -DIST nix-0.20.0.crate 216983 BLAKE2B cb7dc3a6b61abb66645613f16a22b5f127fef38bff5ad40fa99ef50019bc40da7f40457af9dac08af5dd67644c2a102ee6ca99425077ac7e2024c89387587752 SHA512 4efb0a6147870aca6b5612428216f36cd826320b75f4f12fb0c75140d47561834695db7745908a23d08ac7114d69848cdafcf87830718da1f03aa6f2c664c5d5 -DIST nix-0.20.1.crate 217086 BLAKE2B 1ba8a28b76ab520dd3c86d85f3c4dcafac08d490b21358d931af04275695a00c4c40332cc13c3fb72a26c1da45663fff484f5c232645efc4d16eeadbdcc1dd69 SHA512 0176cb573b2d30096666d829971a9fc5ca54b6bb7d768897998c0de130c82c47d125ba95363b425033d2a5b0a0d62596e0be553bf2f739525fb8bc164e568d40 -DIST nix-0.22.1.crate 227166 BLAKE2B 907d907667932a78a8ebc1e99fb2c635cf971c6fec73bd8e9c7a57568000130d15aefcc03c4ba28e4ab3e5f522a35bc714f7c09afe7ec69d6d7dbd6fa4ff7b86 SHA512 abed04c906173956a706ca5906c666336bc5730895aec25a7eed33dd0e6d49be499483242577637f72f86b852dd616b019a14931a7568cb72f165acd0e41901d DIST nix-0.22.2.crate 227371 BLAKE2B 614f863ba54c57e247d26df2c0673270fb2ee19dc729f8b2340139556fae943cf3b0499532d3f42a02dc26f98b62558921568c46a99f2ebc348b37dce0f14b30 SHA512 860c6cfe77117c28ea54fc5587a125e8ab14acec2dcf77f70d3e43ea574f5272ebb05999b266142616bd92aa613f8c2f60b026b95e758975601df9345a2dbf71 DIST nodrop-0.1.14.crate 7667 BLAKE2B 83aa728540908d2d2d9f82c18282d9a9d74ea01b5b836d83cd3f03d225ddbef9fd3fd13460895d744158af74fccf13b7edcd5bb1bc127c696e613de673e25863 SHA512 f583ef6104aa087e13c66a183d451d4cf350560476ca959ce4e0e8308db26ac9f31166c25aca3d50ccd972266d7595d89767655504566a4131a54607e8ed9376 DIST nom-1.2.4.crate 68547 BLAKE2B 87ed1c1770772beed7e2b5faf9a63ce4ab506913ee104a7e36bd64a69ebd47b7a7bea2ebfe1cd14a54e87cc671340b6768cdd47de68f163e48253f02283a13ed SHA512 4a1000f56dedfd71b1f91d44c27c07519f81629f5fc24b469d179d59e8b3305c8ae1a418fa60193be1cb4289887af2ad9b9791dcbf1f6e7a5eda36171a314539 -DIST nom-5.1.2.crate 136174 BLAKE2B 32387d6ded0fbcdee8a1a0d0a08cd36bf92c38906cd199b574b6b9b24f6c245f2287e04374f7d84e2867d2785aa16d8c01ae3bd3bc811829770232681e2d33a5 SHA512 53b8ddab62475588efae46c78b5fd086a14c0fa505c84e625fbedd6dc74d4ac047e9fbed7312b797f126e9ca1f056458d8ffe0ab13f0117de685ef8b43f86aca DIST ntapi-0.3.6.crate 127221 BLAKE2B 5e530c90eab66c73fa1864084eb462490bb0cce58ecd9e22659d4933ae94871c722dd2e9b351f9ab620a0e45779cc2030cc65bc6badcf9ccc6263d0850c11447 SHA512 c07f2ae51e4fbbe55de9f617d333e4042a93de69e9bfcdd44acc1b342edd88cc2a360fe6710d9568594e2c0990776004400d0741e61d1a2a1cec4a645c4cb035 -DIST nu-0.39.0.crate 279897 BLAKE2B 4792c655f0f5eeee1d830e1284a9507e55d2405f933dfee87bb6d1d299280f049c147420a15c4422f434399e170adc905204c57fdfcaf0a4c71c24aa31a880d2 SHA512 d8866117a73abe76beda408b4f7f6f2de2d8c004c338ab327fee5c56413d50b3f057bbb1f5f2f09f63c6dec19fa46aa2fd23820fcda95ae89b928a8e300bebf9 -DIST nu-0.40.0.crate 278893 BLAKE2B e6af3ce1f770103a70fe1bd5920a0869362fd3a3c8c7910c181fe6d548acb42769c09025fe1596e1eaa73c4d9dfea67b85d33878fc34d10472ae43e697fae119 SHA512 a1d00f31cb97616ecbc11752793e29a441b58897ff27a724c122f1a543b396892a53338471c6668b8a8311be95b0a8e8fd6b1dff02c7c094adad05b8ae0e209a DIST nu-0.41.0.crate 279440 BLAKE2B 77c008f4e247ea9eb1ce312f36dbe9d621a11d25399440f452adba6ce3156abcb13943e2f6946f769e74f1e65a78be9d7c620d7bc0a691230d858366ef2c7cdc SHA512 d51c28650994df4d34bc376c53750887a62fe9bd52a82b4eca55cf0c5b713bba290b98536c427dfd850fce189aeb9c67fe3edf3ff9ce3d8d562150b96ea2900b -DIST nu-ansi-term-0.39.0.crate 24083 BLAKE2B ed9afea04b1fe53102704171471a0a4648c687621bf83bd8ead19d77fe06e120134e8bcf97a6e59ede7e39c26ff01c5c12b8541712ba9f19afd732bc4cf6c7da SHA512 b6b645f34e75b46f5e2a2e64d7aa6ea62a7137aec20de16a597b61f0442d8db4e68bd3a0072b4094519a0754e8a7806d55b686889df622d0c4f00bc16f3e47ad -DIST nu-ansi-term-0.40.0.crate 24082 BLAKE2B 7d05279619d03b25f11c8384d79164fea38d595d9988c361681db43e37a20812f0587fd0d9fdbd6a8cea1933882fc0d914e1171ad898b6bd359b37cfc87abe36 SHA512 0897655cfe1b1f6d259cc1a9d64769a040ea5fae4c6693e8c586f2a6654a87f64ff3383510a5c3aff514772446aaeb2e1180a75375d94060f6d57c5977c3d3f8 +DIST nu-0.42.0.crate 278464 BLAKE2B a7dae3d850ff7486e810e825307173857cabeb167fe3162153d3cdde1eae6ffc82e597b8088906356ca106ca586e1063ec9d8a9041eeca5fec0d543442ef2edf SHA512 c2319beb09ecdb8d929d4625e0a3ff98f9948a6a22200a274656692bf884cdb9d0e82b9aab61f26b6ff1cabb81b7ff1b8d8d1cd4a31a4fbfac083795e245e198 DIST nu-ansi-term-0.41.0.crate 24273 BLAKE2B d2eb1fd61d15e587927a7beb0a82afa17299fad4583c6300531f07dc4ac0fb54c621c1461c6253974d8a3f4983b2b24c3b551e0bdd531f95db3dcaa7608450d4 SHA512 6058227ae92fe84ef8cae1d4bb502540cc14969d277a13e00f65ad3e261cc0250384b5a2f8ed63ec809e30b2393c9506a95297b8cb57266c89369c00ecf89878 -DIST nu-cli-0.39.0.crate 18738 BLAKE2B 8f9eabc2dcbfb00df03c56bfa5d915aed65b8652019ba38997a7f2706c2cf4b1b197795bc585e468b44f5d17490b50962e6aad3176c44322c4bee80e87106567 SHA512 38d3d5fcf785539f1b7079cf388aa8d161db69d8bab3413c3076c672ef806f1bb4a387d1c1d22b45c2821259f32aa4f8f6f8b1ab5ed108391cda14b63a909188 -DIST nu-cli-0.40.0.crate 18738 BLAKE2B bf331ca3791bfb6224216f787bb9391271f127ef4de2b7bdde88c4f2b0f6036bd8b34be492a3a45402c8fe591d51fae6dc71a803c118d9060cb14a8010001906 SHA512 3d99b2b2bb08bffaab4cfe38f8b0448e177460a3a8d75af6c7e0bf7add4ad183676816e4c6a58cf5138e76af6f4bb5c7ac3bd0b39028aa592464b7b804962234 +DIST nu-ansi-term-0.42.0.crate 24103 BLAKE2B c1bf41a1b64682e95c8998a9ac2f94ab66824a8ec61e60ba607fed7113c273191188ec67809e1a440774bf247cf3d2b392ecab2f461c28b06002963e7be912de SHA512 9743454391792a829a6f4511506a4407c258038c91c3368383623821d55fc45645405bed11268024bb84250258e2c111bf13e1c2a578c70816f970faa5e33157 DIST nu-cli-0.41.0.crate 18939 BLAKE2B 65094fc1b3946e3874c7c973479180e148fd44b7b12d08bbd0dd53292e8c1526c0eb3b524f48902a2514e1db5f0867b89700b090e288195df9dc680a24e0961a SHA512 990c0c1e2ce18bf0fc861ad2e9ff2fa72cd543f5ec5f4fe534eb69c0fd325e462ed15bba4e1c43968e1950117d1ea9e36898981556a93af6e192a42e5f59ffc7 -DIST nu-command-0.39.0.crate 292860 BLAKE2B ce788e447e3a194964dc96f52430c2d000dde53fba249ec4d78482523d1ce896535d2232f1cb2575f3c12845e64ed02595a116fbc34fcc17b31bc0ac61ef9058 SHA512 917797ef3b0b7809d2609626cbc069fd168bbf6f6b2e51dbde617b6ce547f60da8c3b791f9281a05c7e1ac0b28fda4457fe6e0713d09649aa97f77c9e0c9c441 -DIST nu-command-0.40.0.crate 295240 BLAKE2B 24eb7c457d5181a8223f05282d71c12ca51ff214905aacf5810cd1d57c2b3cdb5931d0da465f2085f23ef40e0c2b969c1feaf02ba15dee07ea993ff2c6d82026 SHA512 0f6b2adc838378d53dde5d3ea6013c49178c3164e4f81adbc5021e8fedd25892b0143f5798ee8fa0bd107cc93add804b9a3778f3f8223ff846df2d8e04609bf7 +DIST nu-cli-0.42.0.crate 18773 BLAKE2B 4c3002c8771cfa56504fd3e49b60d6ef4f763c7f1b920581530fb625de62870f86822e6b096802c04fd2beb43086c360db6059bc7deb560f54d1ab175b1c06ec SHA512 c60679f5612f1cca36303e2dfe25eec6a232c027c4a8a0463f00e9a0aa0579dc181583f4b741ec66b39a62288dc8741ef1b89dc594ca2d80c2c71eb04e491225 DIST nu-command-0.41.0.crate 296625 BLAKE2B 83717a3071584ee0d852e48e3162d0bcbf2baab0ad6de9a17f1528639291e88f794ea314dc39dc1bc7875650a8b9b01cd759b7c988d44ba9b27a700b3b0a2e74 SHA512 0937efef669b256dff47594102ff40e08d593f6302d9a5f82d3b2930556360ff1e5b6a71e63fe89abd29a58aa70046d0255383a259d22f35f6abf708f2291869 -DIST nu-completion-0.39.0.crate 10022 BLAKE2B 2b749cb3dd2484c076cac9864e923557efbbe939ccddf3acefbd6888211bacf15e0dee4321b03675257f8fc3ae93adf550c9203cc1713b5f6dc2c9cb84490511 SHA512 ed32616d4d42095cf9aa3b5c0ac48e57d093c23d3b25add96b2365fe7e48c07632f1a81bee07a175f1ad76f3762a816e5ce273ab55113a337df8c0e821840a8f -DIST nu-completion-0.40.0.crate 10019 BLAKE2B 641ce8191f803aa6495b5451cb08a8dda8df6d2e1bb2dad9e6268c270da0fc23fd2feee4517d1cfc72c62446816077143d04a9ae71b121508b57c3e70231da1b SHA512 1a2f9c9eedca45be974e95041b27e7687660c30e5502d61b7c11a05586d01c9c134da3f0aa01cf5e22046bf0f7c776f7f627a4f9b1f811280e67e576199346ea +DIST nu-command-0.42.0.crate 294768 BLAKE2B 0d8e3394823352df194961bbad30f62d86b24c7dc7e80ca402910ae33c4d943179f6355f977da5aab7cc2988c9fbc2e73bdcc8b9a13ab4811ef3fdc7ac9b2580 SHA512 5d6e69be191f9bc8b68c0ec3e1582b76563040b7f48dbae44bfd5b0d6216728ece102b99233ef984dca4ee2acfbaf2b1e5712218c2aa6f074928eac2f101662b DIST nu-completion-0.41.0.crate 10131 BLAKE2B b3c94b6ac7d8cd1bd0de747177b875c4386216e90a8adc0390011ae255d63a1e2f3a2f68418726ff3e5e6c46648e4f140ffa24f6e5c501b85beb9b0eaf87eb8b SHA512 7a20742b368c841a466b179b2ae7d26859d8b5ccd8f2fb6e108ef4fca56e50e047b0cc7e0dbf99599497ecefed4a4b0a80b5d3292b05f29fdcae349fd8463d8b -DIST nu-data-0.39.0.crate 24539 BLAKE2B 857f787d8c15860b9eb004f8e71c8d18d3f95d86c5c27d78ff8303d1ae503a12007aaf764d4914863230eb7140bff727d645544209b6605370a146b6a49e3123 SHA512 800a98fd53f17321089d0f9fb4e9fa7dd73e85f04d3d909f598f825f8b044c2e5c5f0c31ded6578e51f8f21b07e8b2e2145b1e8703f5fbccf83f7ead2060d5ea -DIST nu-data-0.40.0.crate 24454 BLAKE2B 3d8bb854c195abd92a22fda517588f28be2619bbb7099b7e6df8187d6c084330b2d5840c0749f38e6c60083d372bc543d056c88751d867d46eb5e74b29c6bb8f SHA512 3a1eb1fa525ea3509ea2a6fded1fb54974de5781c2634fbcec4ac9d96c31ecd3ad2ff72194736c187e0990904d750cc2fca288c7445470cb1889b5450bc95a88 +DIST nu-completion-0.42.0.crate 10038 BLAKE2B 16b037a3490036bf0a40ff1496341a5d85e913abaceeb1b731f9b7ef4be5dc378a2e26f857ac1372b7546ed99e92843cf38e11015c78cb06440722e150dbb791 SHA512 f279aebc64a88035b4fbdbdec92f532d2970fa1e4d083e3190889689d0dc08fb2880d9945484260f7416be964f9a1c309ea32901e9b458582a583d73ab7db34e DIST nu-data-0.41.0.crate 24656 BLAKE2B 8517e76c682c567f43b924741fb0d79aacce5e92c68799f45708d7a1b6528bd1241a5c656cc27bfaa5e34b7fa4b17cc50587e0c32efe7b62c07660e1cef507c4 SHA512 37abd4c52c306ed9a7da69fae78012fd062b161cba2260dff177ff26becc9127dedb12855b8245a54bae0435c83036d432f3e09469a5987b3d0446c2555b8392 -DIST nu-engine-0.39.0.crate 61850 BLAKE2B 08b4ecdd90d9073adf0179628af599fadd97a3c8d42f495fb790287a4820bb54cd6bab79af5e20496b265a950a4affc237e9f02af6f722abff7b1a7c7a4858e2 SHA512 809f5b3e8ca694bf272933b7d728dec7f6a3be6baa8819ac061a188f2e4957c55cc079b2f701d1720b0e7c917889952c25b1f531fcf966f3784ac7d20b79007f -DIST nu-engine-0.40.0.crate 61903 BLAKE2B b95de3015a73df5cf86d76d4cdb7c6862072c85df08bdba500d01f54bebe6e38a7bcc6accdfe9aecfd58541d874c9084938aca5cdb48679cb4b8a1b74a6e2507 SHA512 75ada8f379e68951a084cd30f0e2fd885b7f26f6425b087217d9b93336a1bbb0ec237365ddaeb9e24e003e801d682ad2142c89960cd09a4d35e2edeeb7851e95 +DIST nu-data-0.42.0.crate 24492 BLAKE2B 57134280b9b11b8bc4b48547567537d461ce734cab2ea83d12f23c364301014ed7ae2ebb69b7342a0ca0b9d97a3fc6ca3ef5e441c16fe20a4c7ff5f96d69ca19 SHA512 f534972ba50a83b57111a5ec2530a98389edc53f28fe0a01efbe7aa2e52e556fceae8d7159d361dbe679a2c4e216deb500c1906ceaae20907fcb426a37694fed DIST nu-engine-0.41.0.crate 62370 BLAKE2B 3ce90bad6360fb1dcdbc2b953d72a1cda6b33e33b272dd7983faf09ee22403823c00ee8236204d7c1576b52012b13f2fed9f0f19adcd22aff98932ef6a8ef1a1 SHA512 9628d5b8a3fa72bc41311aed221c47e3f5f1ec1bf6c1f79bcb0bf9ed01f3acc5cfcd9c41a185471862af07f6c71027eee4fe4db8415dff1aca96321e2c2a7d91 -DIST nu-errors-0.39.0.crate 7074 BLAKE2B 7d4a3c22a956a042743d413bafe83be9cda85272e70cbc91120751ddf2053f115e9f48c7f124b462083ffe96b090aad344a18714d107a8f9b725b340d10afd37 SHA512 0e641117658760e4fbd96cd92cabf350491901538420fca8ab877072f7ee0916cd59c2e3659e1f68fcd7fde58d42b456effa1dd725ecde73c54a0f87c91a1a6e -DIST nu-errors-0.40.0.crate 7073 BLAKE2B 216318bb13eef973f75fc74f2e1a71df8f2f19f3071a634d41eed49e8639bf8d2fa768a18832d9ae80f35ec485aa01f2d4e3c41d722b7ae0318512e48019a713 SHA512 6068db3a176cb1d9972bcbc3816f13dccf2aaffc5ace97cb6f8f051c5984005ab24e0045525b1b683e4d685281e3629da7f3323e47498edfeb03a2e176feb8b5 +DIST nu-engine-0.42.0.crate 61920 BLAKE2B 030f46f58de0ba460bf9bcac6314f821ebc08df621909d0ee8cf1bd16a1dee7f91e9271ccab594a5c5a591d3aa4eaa264d5d861e1c35b9662f7fa00f29e88634 SHA512 48930013483e719cc75f7de517c9098d788e354d42320a2cebc3eea2c98304b314443320392f3fa544fae1dbf9be04e343633f506349efec9ad31a92c4296fde DIST nu-errors-0.41.0.crate 7173 BLAKE2B fd16d35d5ef06b9104b8e51d1a769b2fcee0ab713d640d632b65505dcf2844a35343746e948b1bd45164a667824b08b5ceafa53d1977471ca2397572f8288728 SHA512 253e9ee22f4398fe1dcc122e5a4f75dafffccf6285ccdf68ee6ac8015a4e076dc13379b7f6af0449c9b2dfe4f06e4d4d0d1c18913cf0b9bbedb203e3b204b527 -DIST nu-json-0.39.0.crate 22098 BLAKE2B f662e3f23c875c7bd2887d621b35a8b27fb9ae830ab5bb556eea869d11000472f721e4aa7c4410a8cbd35f53088ae95d2771e824e5ad3b9814e813cdaed437be SHA512 1f435a204cf935d1c14a44d9d31de5d4fcc6a6f13e256140d0348ec7ac9fc3acfc31ee3c434774952f95099d113cba28679820e7583ce8596bb30541834a3862 -DIST nu-json-0.40.0.crate 22098 BLAKE2B e2fe8e3102bb4aee191cc891738996bade7ce50e7d144fbb2f7ada04e44af3a6bc8516d864e0cc1e2cc46fd446801b37d597b3a57f4be22e9a314e530d13e614 SHA512 be94e58a352217beedea014e965eaa221233d1c84614bc3ed12caf56002a2fc631a26265de6397416dc520657c12e8f0acf7cd4c1c193fc39a5097fe99d730fd +DIST nu-errors-0.42.0.crate 7085 BLAKE2B c46ec1b61e8ff63963c1347b286bb1bee072c21f1b67cda72e4dd86ced43dafe0b9d606db2867924cc3ed05c73944573280593dc023ad774d52845f2c3ebb891 SHA512 da9eb9c22a5db40ab2a4c09c9a3ebb540c53406999ea8cd83085aba5c25437db227cdc92496cf10f9ddabe6d29e55a60e6b9502cd04a004bb22f33ea9d4ead64 DIST nu-json-0.41.0.crate 22216 BLAKE2B 892d8a13fa232ed63bf936e27c773ac3d88652d3d9e49b221dc687ef538ef45e5c981d4361132a51efc8ff830bd28ca9cb38329ce4f8fe2440b54c7a17912fdb SHA512 7610a2c6a2e00e2edbc3762f76222cdb41f77fd655c6169eab584ba07e99b1fe2a8eb45050ce54f3695d3615d48ec03d2739e15367de095fa4da9b5a9fdd18fd -DIST nu-parser-0.39.0.crate 34710 BLAKE2B 70ad34a512621641597ceecd393a389751668c75d3a81d26e2f80f8b66ab16ecb53ce54004cc34ef218b120594f8e46d2f6319b6e730bec23f8cf6ff9cdb2563 SHA512 5bd4b3d93503a6583cdbf13746a69aaa870d75b3ee2dbff5ce208c2f701496a0a26dad13382563dcbae2385eca27ec151513e85120bd9d9fca6fa2a75c82dd67 -DIST nu-parser-0.40.0.crate 34734 BLAKE2B cc816207e4390923b17dc329709cfd920e15db965b9ccaa353bf0c322a9b8b0a5376ee5895bf2a6738e5562cbf9c43f9d6ad515a5d40abe65f412768c749d21b SHA512 8aa41d7d2f8538feab17c5ad5619a642a4c5e1003296a32120b9c2ae8ffffbba56c81342d3bdd03eca20bda3a73e2482fc987beaac2334086a480b063ce66c11 +DIST nu-json-0.42.0.crate 22048 BLAKE2B 51da188623d109245efe4b04c8be743f737b190c6a78e37e4d2a48060e106d0e2540a63623e903f0d0badb1e4070c78ce494216232089c55cbf81ad4cac8016f SHA512 b3b3c37e3aefbe3cab30537dcb902ce898af0182e10b4dc9629a687b8be7866d01f41356f35f5d1d0cedb13b01b75c4bf0a001d28e8897b7735e56a30331e90d DIST nu-parser-0.41.0.crate 35017 BLAKE2B c061dee63fd76888e00b41ea81563502b127f676c209578b03f6abeae9e4936ba1a90f76278d5e5736d5b57e59e3a6f46ccf67c68c85857312c093b51338d2d9 SHA512 b8eba9df376fd280c8bcd9ec23ecb7815bd675927c7a0492ace92c6128b77712579135328d1d81618a9f2f4b5871d21221ada3cf1860530a9ca096c2f667db1d -DIST nu-path-0.39.0.crate 4360 BLAKE2B cd50bc46fb62b30344a39c2afe99608af2d51d212167a3fceb259c250fb57cd2629b01c38a9f4fa22dcf2af5ed2cf53e297f8579230d5938093b7cd53db1dd9e SHA512 363dadbe1542ec70a7d1d434b6f1e4058eda8a8577790b14b96c9d8502a034e021dc4bdea6f5ad15e6ce06c07c7dd1766a2e013606e13fa6f712b5f9fad1f74a -DIST nu-path-0.40.0.crate 4356 BLAKE2B 2c636721ff4fbbf76cbc7086722291b39094a6bd3535cfc970cd8d7006e9731b61c6e2b2a89c5a7ff966a2562babec3c3131ee5e49b5bf0778ab1a07653e9c76 SHA512 74a2518aff86191ab9edfdd5caef1cb8a42ccd74044294b9a08f6625a8283da80ec14900aa6ab30042489a378f30f79890744595e4f2040267ea01a3b5c98e6d +DIST nu-parser-0.42.0.crate 34746 BLAKE2B 57dbad535ab843bff501321fc0d6cca98e310f31b8470f53708f991ab824727ecf624610b5f234e7a156c15428c134fec81aed28d2cbc17e31a4071435501d78 SHA512 d7109564a457901fa9dfa762859341e21233c6097c6a2cecd9136d5e4a262bf1e457ab747e5081ea82d9b4bce6562bdfca5565e53c2858267d99ebdc20884abd DIST nu-path-0.41.0.crate 4420 BLAKE2B 686aab7282e744f66304c3cd38e3ddd473bbb07754c07941086f2ed015a5157215a74b66b585b1db2340ea54e6efc01714fefc8868ac077c3308eb55196e6803 SHA512 334798a1a29e80958b5f06e3220230459ed4dda3adac48b1b5dab5e60e781cb5a8b1bcf640789d308466d96f8765a5674dd0d00c44ea2c875a650854d9f5c40b -DIST nu-plugin-0.39.0.crate 3849 BLAKE2B 352d79fe09301685550db71bfdbf61a46fdf15520418ff10bfc75804752287b43e622dbffe2e2e9e0ea7aef7bce49286b58a9085fcd9051390cd3bea2fb4762a SHA512 30bd21d5855fd633be5dabfee173577abcc3c3fa026fb4d4fd78f11bad1cbbb90601e7505825498e61d28cc090948e48182efe06caca25455399999c2d36612a -DIST nu-plugin-0.40.0.crate 3848 BLAKE2B cfc5f133c80cade179d81989b368325221d88e584d274a6825b03c45880496096d63720fca3bfd37f31383e1014331ebf6a4c8b8066633921175e2f2381f4d90 SHA512 ac934c465950997a5f42cdf39f10e4e01a69dbf4da5ca97f02a9f12df735f1996dcb03c3058c0283fb6ad02c822a7ca236b58dbdbcc5285c9c73451ee92d7797 +DIST nu-path-0.42.0.crate 4378 BLAKE2B dbb85db73d139fa32320f370470fe0a5541479309a31ca0ce60abd060ed72ee3f98c7738a614db5c66ad933e6f5c3400065c737e78ab1fccb7c92d68b8526103 SHA512 6ecbbfaa72c7f6e15b2f280f5651559f42c75a982c24ba44a415396da95622cf66b5b5240b3e91abcce946fa4656a144e6a1ad97f98a44b62eb344da403a1c25 DIST nu-plugin-0.41.0.crate 3917 BLAKE2B 40f7b16320a81657a350d287e0a92b26c8be5c94d354ee59f8ff6b10a76097f8e5e1c067acb421d3faa9014e67b6ab8bb31236c6fa7acb41e3703e7b7f2901bb SHA512 0ab9a71f078825ab2bd3dbcd922db98f51bcac969c9fd7717d458d6dc7e218fc1a7a40d3a56810880fec31d985987a8819d29d1c2e47d1e3ca02d5a4cde99d6d -DIST nu-pretty-hex-0.39.0.crate 9082 BLAKE2B ecf72cc915ec5e159658641c1941c8f817a9c3faad7f545497003db6c785de1fea7f006ed9c02556986157060cf2e7fd692e1368ec4efea4ce08a70ec4cc934e SHA512 bd2d18cb5f6b48d97214653c5a2ba6c0cacbf855d9b7a8347573ad736ecf126ede5ceac68c2c3e9fe0ad4a6e90d8ab5951b4ea9080e5bcde812692e72ed879c8 -DIST nu-pretty-hex-0.40.0.crate 8904 BLAKE2B 1c63f9616f49b25a0fe823e64ba624acd3d1bb0301652f3e129b1713acb441a382d197d4df8e6feae015496a4833d24c81a0c5145fc114b80333b5d88cfb1294 SHA512 2f28d0f8f7a26a8845e405e8b3037929a640e29d8f9ade3ee7983a2fffbddbe562d71e5dc2b18871f7965172310b21168f77a7e38fcbbd2a85b68cecc2e6546b +DIST nu-plugin-0.42.0.crate 3863 BLAKE2B 879ca44ce69c5589e3f812e20f17781c351590e56b16d6f80cc018ea44a23e36759da6f4f29537d216fe647709245a475ba2857ed3ce2fc09b437c22869e81ae SHA512 4e28410e23a57ebb89283b947d3ed9d0a756cb590411bc836293f97ac95c1fe99edfab9b6644e59dc5589a07a5b9c41761d1bb5fadab34b2a461c93c41004e7e DIST nu-pretty-hex-0.41.0.crate 8993 BLAKE2B ff35aac9b35bf100c2f34c48f77a8724307cf91b104752df0fd75cbc491c6dab6f844c4950ec8a159a79a5d0b2cc386141eb4e6107b6e6f7fba28d85a686f9af SHA512 ad9f34cf146638ad0ea92c842300ba73f2396b6c361ef1a0b4507f9acabe153b662c1f6e7529ad9d94adc615b62f96030bcde95ab3469ac4c5755385ab248e3d -DIST nu-protocol-0.39.0.crate 46933 BLAKE2B ef357559ed552913a844ed694a4f4d3051f97f2b777d070ebb0afb0967167b47ddc1a328a14915d9d91d665215e2114042debcd9a32b82d1fa4dd926accede40 SHA512 afa14f2cf113f1b82e5abb8f926c0561f03f9ee38747dfca6dc0a3c050603b5597a42be14c3df0912c1de13c65bc6627e07735753c5f10306af8980df1f779b8 -DIST nu-protocol-0.40.0.crate 46864 BLAKE2B 832036accd3c92a39729403fd4ac836c64f9ea72a25eb28370505901861b50902ffb8692057cc3935a5c00ca53b42208b68ab0ad5803c976b4d689b567592cde SHA512 f1309d971c2cf41b655c24539e801fbbbb462de7df3f01f39c9d8d82bcaad1776b21f4f8998b98ae5e5285303f8b218e95497d6fa275ea240f29de13c5985743 +DIST nu-pretty-hex-0.42.0.crate 8926 BLAKE2B b709d11327a04ed1ad4f3a30972f8b8df4bb466c64f684a589a498ff82fab84d36af0e25df25b4d6bf8fba310caacc5047c7fa943cef179855aad92f16eab83e SHA512 99fb4d7c0864bda1ba8f5657d9c1adc69108d60a3205f21806989a686da33518a5d7fa80dd064d58ec2b3169d7227cbf6519c49f9fab121fc743daff04d3e415 DIST nu-protocol-0.41.0.crate 47251 BLAKE2B ddd48587301f605513af1e640d0b1a4c3f5eb3a6cc8247e057445e3fac23c353015514ee1ff5776a467ae918f80c2a8131583c6a51dd73029d82051e12eb013b SHA512 70e32c0ac43463a03846afcbd738418777e82add2a1c12f5f5f3f946b1fce15ec525b0991803fa2d6d12b8041299481056d8488b083fb7c3031bd1bfdbcd5451 -DIST nu-serde-0.39.0.crate 4214 BLAKE2B bea19d35c1245ff279eca89b30db8a6cf7cbd8bdba52c1a4f029ca003e81a00a89a98a4d30e89fe422f678e75f4be609ad63d315d92857d3c2a33ef2872eeff5 SHA512 c8c48519469b791e76a43c9fa7ed38e78bc65557a769e625822534fb96ca09c05e9db5493ba89b7ae9cc971efe3fe4f1b9cd1cf25595ceb7a20492429e5e6b2e -DIST nu-serde-0.40.0.crate 4213 BLAKE2B 57b01911f68d64289189f87b09d7ae6bef6fe9d8ad51a6521d4f79836a08362518e6265fdd5e0140e2457b46e97b6e01193286ba81a29fb8576809f9f4933eeb SHA512 770aa64e85ba3f169e0ac3b25759742eab62ea9805696fd6dfd4c0fce248366dd87e30625ebf17f845e0db2fe826896df98e80aabc2f9db78747ed951131083a +DIST nu-protocol-0.42.0.crate 46954 BLAKE2B 549c8b365f37d0ee1eb606862239bfe8de26c803ce94c9fa8dbd757963cfc6f29685df5554586fed87460837b6fb3567f608f8f9507c95822975d83abad20bc3 SHA512 849b0f5670c01c3722148d4058d4e938e74b2dddb2c29c93d0cf365c66e76e99fca2b61c70126144247178a637e00238f5aa9e7cf4518d1f0f348a9eb4215202 DIST nu-serde-0.41.0.crate 4281 BLAKE2B 299c08dbe40de273424f856b910c5298bf877bce763e1a68b98fa9d05fca20b552e4889548a5fa9276ac39842dc1510a461c90e536e096dbd1dfb0df055c494f SHA512 2a743be30aa024dddc50145bc6bd6716d57228eceaec178176b09cd4dd84c00e057ad34f7a44ed32f8efa94e6dace102b7b2fe5b60405fbc55a4f9c4819260a0 -DIST nu-source-0.39.0.crate 10036 BLAKE2B 991cd401620a71f9cbf12ca92e74eec9772189cf573eafe606307b70c466bb2160c52e0abc4d5cb7314dc2f2781a030f833c96d47b8cb661e535ef6ebc18b9c3 SHA512 bd92944b1966e27de5992b9f8af8e3714bbc9dad562f9f4756106f7ffa773cd8be4c30612bd4f034668d9b2c9740aa0ab61c3e74bbf6d375a57c40aef9d19bd3 -DIST nu-source-0.40.0.crate 10032 BLAKE2B c1120f409df79c39cbe91ac4f0a80a854faad715528d5496efff2a59874ac0c328d2185e2fa8025391642b5fd59f8e6b4744b8e046070076358e34cad6083db6 SHA512 4a381adb5e257366d5503a4577f9d88d27a0b9536d1f366ef8bac700a7dfafb3560c067c82298196d33247f64e63b3752e84d9536c47f484827b9ee17afc352f +DIST nu-serde-0.42.0.crate 4228 BLAKE2B cd7c4f2c2884c9b70151ebd579aef02d1e126df33393a67002482cd105426d70d4250c249220d6714cc6c3138f81996b78f1683cf9e443d26e707fb0c34c475e SHA512 5038aabe4b3fb5089062d4dfb0daf8af2b9cf970c8eba7b7a7f6894b1e5146f2fe80c652cca243f399abac361515d9638696b9af4c0e40c73170d914d83483c7 DIST nu-source-0.41.0.crate 10158 BLAKE2B 433a4201e7396751ce758809ebdc74ad3cd30602148c0713d8ccadcde897265c7704b09f748906affee6de4023dcd5d716254226a167eaa8dbd7169cc4a11fc2 SHA512 ea88e25b7eff757d76b108b4827868ef599fbb3c098458fa25b0b7cf6cd654d86e3ed03483fc0c1470f8daf7ad96fddb533d716859dd70da5f6cb78ccaf3b6e6 -DIST nu-stream-0.39.0.crate 3068 BLAKE2B 8bff9830356e45630d4505c67229606a97ab0d072bf374d78e5e772de4adcabac56c8556991a7952013073bfeded9d98b793ce385f41a978bff9326b5b658eac SHA512 293a1e310e28de6ceef46e9571e7f0820ecc045755eaa8e19a3252c83a8c2accabc3b8287624d78cf021bec6a3d09566d78a1c9882f7061d8efa12458fa1859b -DIST nu-stream-0.40.0.crate 3065 BLAKE2B 0665774457e01c97c03bd50553f1545b4dd19e65a5089534ba7f8690bc765e74e8ea9b14a5a5334c56c223ed8c8d0878c2c9c42ebe0037bc10897786d55f419b SHA512 2b6a508bfd3c92728b609264bd973d547cdb84b126dc086362e6349ffa53342dce5f6029421e0282f5cdfd8ff2f6b6d4d84f03bf023a460da02edd7bd14735f5 +DIST nu-source-0.42.0.crate 10050 BLAKE2B 0a7edf07b00e264f7731ae73dadbc116f96f046677bb08c2f5b315dd1f1a5e5762b01fbfceec4ca15d6c5780d84afb3ddb0074d02d474355a70bf3fcc0474334 SHA512 b903b8d73b6f1caea50ff233d82443dede10b7002cdf6daa388fb8f6b0749e5cfbd7e5d42fe8694a52ff7d3ccf6e5a86aae8eae30e66feeecb6a8ed6f0998965 DIST nu-stream-0.41.0.crate 3125 BLAKE2B 01e2c2aee31ea581cec6e56ad12be5c51feeb9dbb1d282446ea7dd56915c364ccb633f81beb7c3b7e86190d082bcc6f9b42d2e76c75fe4767524aa8ffe8a83d3 SHA512 04783cb70d180acb1ec1b45f55209012640294ec784ae0cc45d0a4bebed587a8e26c084150c984127cdaf55d952e0bb4bdaeb8fb07afcd7b0ad804d366b13af9 -DIST nu-table-0.39.0.crate 10307 BLAKE2B b3ab326a343a5e72aa1e8adfd1caf9f4786eb95911cbd90369079086b79295537f8ca5454e94175a330d8a6481e674e310ade7b0dc60c8cda9964c6d549c67c4 SHA512 eb7e7ea0e58e87f8fd1c9a205f5234389fea45d45026c45b7ef0ed5b88b1959a7d1f6737e350d0b9e03e89902d0d8c435d7672766eec193a5e05ee01837c4264 -DIST nu-table-0.40.0.crate 10309 BLAKE2B 25d42c4ed62f91832218f88b953706a3c08144cd5c6752ec88a5e13c1766df959d644cc4db938b2439088c0322456528dc6bcca7e4d9e226777a8befe2d5cbe8 SHA512 a7abac901a6ec45bcdb3d57cf4e5847c9e81e593b88f479c817c3db745b1783b01322d4baf3ad7971d22ef083379159c90007e569684b3316f59c0999cd320cf +DIST nu-stream-0.42.0.crate 3082 BLAKE2B 15b823e98839dbc538376e5739dc0f846447d3463963f1645d057ff0ffc6a0c7309f1517389838ded18c26d1f75ec98f19cc956cddd1cc65f53905d2e735538f SHA512 822fffd0d585eb87ede42b9b37e49b1415542a5ccea76d9a25a915aedeb940589249ad407179f64042d4120c4e6a81d57aa2225fd38c630833d99578270c6f19 DIST nu-table-0.41.0.crate 10419 BLAKE2B 65a04a9ed066872af2b65e19009bf4404fee7c9767cc35f09a188fb5f8e48f2f9ce6d59345e8e2025725808274139ea271c428c8e7b970297ce2e394438c0a55 SHA512 b7e92cc6289a06d61c8a3f652b080828221c5d4ea38cccdf118764cbfe5a6b694097bf04b7bb15cc399e9e13769f572483e4bd27dbb8f41112fbe7e549d4eed2 -DIST nu-test-support-0.39.0.crate 8733 BLAKE2B 13922f57a3cc586fe891dd68775c4f785c2f571f585ea8e532e731a4726a0d6b8a9febef457b3fe53d5674e2c8961819ac14b9bb4343be61b04743cf79059d7b SHA512 a0cfe36ee04a9bd008f05eabb97c83b1b0246966ddef6a9fc03df683f508f7fe303d54725ad9ae8c1aa5f458874f26740168eac01098a10331119955ca25934e -DIST nu-test-support-0.40.0.crate 8734 BLAKE2B c40f391ea27881c42000e862ce44be653de1c6716e6140321f2f9ba947c63aad041a6784c4c5c2074c94beea04802d973cf3ce46afd116d849b90ff515712f1c SHA512 15ef5a603c8ec6c18666a1b3441717edd69bf4e40b0259b269cf3160827510ee4b573611add6414a2c8a2f534e7676ab16fb764eba36634eb87a8a3e78c82bd4 +DIST nu-table-0.42.0.crate 10326 BLAKE2B 0f35cfa77218d6b9813bd468539db5320c0837848038591c6ce4c6e488bcbaf802ebf6109e27b6042c980a56b6c9a993fc29821a8be78e8baa650cbe35e584b4 SHA512 88bc98dbfacddb999e900f9aeff0a63710e17333f44128e5d0e42d35ee4fb74589f77b0f7c5b8d192c76e76be18f5ffc75138b0cc0400fbb1a88e822f9a617d4 DIST nu-test-support-0.41.0.crate 8808 BLAKE2B 12be48020f4f16f781dfd07ce9b16aa91f860466e3f1a5e18556c00fc47af2ff1e223fe1332862c23022792d74c60b86dc8420dcb7d286b95d00c184b90c8379 SHA512 152acf32f884c7fe634077d12a68f4cfdd7c7ee6e8c4309ccbff17bce8f6fe1f34ec87e10fcd4798fbfe1fcaeefecc8427fc787f0932c9983e33d5d46313dcd5 -DIST nu-value-ext-0.39.0.crate 6435 BLAKE2B dcaa457e5e7312822d3e1bbc793fe9c8b40ed6f94fb8a8a0996ec40dd3dca37d7dae260959e09cdea6769bb039925ed4ff0a1968f5fe872129afe1e0f4be92d7 SHA512 47a04a088e85dd81399d512ed0d04b816dddb549aef87b5b2fae87d971f0bab515a7944970fdcc5df0f11f5a02aa6c81d1ba0d9c269d7d94911d24cf00f18376 -DIST nu-value-ext-0.40.0.crate 6432 BLAKE2B 24e21a2923899743ac3e308c284b6e1f558993e83afe778d868c8a76a53cdc62b88a214c68b173a324fd5f3684cae270afffb0f7dd7e335fd904cad19ed6fd19 SHA512 089c9b0e3480b46d225402b499f17aa8108d4fad8519ff30d1fbfc2a0791771293203194d8566972239c2cf036ee5b99cc1561d762d8589cfc9fe1a42d981c56 +DIST nu-test-support-0.42.0.crate 8722 BLAKE2B 5e9c9717a688ddf8995a4d1d02582c377e011fff5fd0062fd2e8ef24bb53212a4257fdfce981443ca1465b5bf3345ce0a20288ac1dac336537107d225e900205 SHA512 399c7f33e351059c010c947ea204f6357ae088483dd07943057cda1cad698719b15866b58843497c053bf7cf1cbe65146f318485747dfe92c15f39823eb59eeb DIST nu-value-ext-0.41.0.crate 6519 BLAKE2B 9074b6df0371457a0954616359e0db1654cf4e90375f3a12061f1cf2798b5ca9a79b60c1f44aeb5d51c6f9db2f4a4abe5ecd9e0b780c5bdc3b11dc0b8997a0ab SHA512 4b239e67816ee90cd8672b8c631eab8d41a4501bbda0a063c8dcc32f10611e96bd9751e8e1d64cb409e5dfcb33ef769cd386ef78576f4e1140a66d8fb78a0ed1 -DIST nu_plugin_binaryview-0.39.0.crate 11882 BLAKE2B b4431df993ca8cb88f871cf1a33b5555d740018e727f8d426608b8dabfa0f20a0336bc20a75c5298be7dabc2b03f85a252523149aebf864d29a98af45f078a33 SHA512 e6fdf71708044c1ada1989adca9a1a6bec04677c1f4e8e9b6327ccc908128c2fa061265d833b5b343017af17dfb95e72fb7b73d96711ebe53d4f69eef3da690c -DIST nu_plugin_binaryview-0.40.0.crate 12065 BLAKE2B aef302d0ce8d860b1e49725575c10e7594fe7c1ee0883193a63346b0fde4e8fd2b1f97831b336da93cbc698800858b6ad44740b6c5614d43557a67b0611db727 SHA512 90267fc572da28b4914f5942ac86c47b3c3aa1d0222fb8168cf885053e6efb184aaf9fc3cd1d758d6b460b826ee2abf2433a1a3942f41eb621c01f5493196129 +DIST nu-value-ext-0.42.0.crate 6452 BLAKE2B 257b578a61f2956b64fc3d14da693409e6ab72324ac78f0a5bba2a463c0f8b64c563f4fc40bfbadd522e7649a32b8d8b3fca94cb6587cfe0b62b8af8f72a36ad SHA512 968888fa42ad5ce850c31765b38efdb39c8eeebe18170caab6efd38ad6061c6a81e032867c7d733f165107ebb059473740f58d72be5141a4f225ae34b85deadf DIST nu_plugin_binaryview-0.41.0.crate 12130 BLAKE2B 4f88de82ab37ead8dc3bd782c7222aa4ef22030252148397ff6610625e10171f792f7e8ed418323479b226e2a3e153229e45940fd88d74d8b642b3f21a26bce5 SHA512 ed288bf776d208fbb9c26382f39adc8f715e93b413aee60831dc7aca29038844c0d3657fbedfa0c4ffe48f8be9c98274f8b80761ac0d1c78486e213f6ad42bd5 -DIST nu_plugin_chart-0.39.0.crate 13936 BLAKE2B 10c09b9b442f5c348b01047a1ef0f8a6ccc0ca1d577ffc13ae8a3cb178e15b48490f955c2ae42fd583da99e4db47300bf870f5f512f00567e5752471fb91d3c1 SHA512 584b12b3c2ed1e89d2264e5999cda59852cd80e88deab3fe0d31716d97befc2616a6862ba3678b494ba76a45d405a27465d6f3ca4c47e4c87c5d5a2fdd471d1e -DIST nu_plugin_chart-0.40.0.crate 13835 BLAKE2B 7e11aa71ba71de472537b59e7d73cfd268d42ce9a3c8eea2e1ab5264901d6e003a4cd51d98a664eca16faf1c255dd0429e61f308b82b7a0caa903be38a717767 SHA512 eeeaad13be38273bb13654e3e35e1038165fcb6db8ec251683dd8c871a9cec3dd6b96de559ac3d6b2a2a54a815ab5e48054d009253f546dc42a894845598b6bf +DIST nu_plugin_binaryview-0.42.0.crate 12035 BLAKE2B 9fc97ef368334641488923b23d5b6a4642ea7f6eb97e43de907048f3766a38ed89868b28dd7295afeb49d5154b29a29671518223ea563f0fbeee45d48402f896 SHA512 1bed094eec369eb0827c6df3c3d244f2e05e768f815621deba92d8c1163e3e83c40fefc0af09a7e90ea1797f5f51dc635daf012cfbdf4bea0c1a175f48fab62c DIST nu_plugin_chart-0.41.0.crate 13918 BLAKE2B 5c82705153be1bd9a7d4f1f65ec3e9725815b17ceec40c064c492e6e747ddf55b5722257930a80fa7397d3ff4a1b6e6ffbcafbe916419413c192fd4cfa463326 SHA512 f6a44c1c89a01417b424baba38559dc6a9545c6cb055a71597dde028e17bd411a5e6e534b597f90268dabdeb7e4b786677911a713ed3dfc01d6aaa6b986b667b -DIST nu_plugin_from_bson-0.39.0.crate 9052 BLAKE2B bf8dc0abdbf601e4263bd4fc1942334cdd43ff9c38077426de626741f386555f72c666930a1df4d81e7e3ea08c049121e518fde562fddd0197c0965d952b3d46 SHA512 173bb45c48802935ba9b55ff67afcffea29261863222751b5cb9c4f53887e88dea4ac705ebdf4c3fe80b411f01dfd9a308a4ad8977cfc0920492ec7b87b41bc1 -DIST nu_plugin_from_bson-0.40.0.crate 8884 BLAKE2B 4ea1c482ec89bba383646c0073f4d007edc7a7c07f611c49f7627cad2a50c34fc4f07f2d16f47b0ff62bc06568324c0f8fb0899d22ae77999a0e32de0f01ab4e SHA512 fdf82a1546e482fdd6d6133517aad13e941baeebe97ec4e8b01d58eac777324d459b57c2a3eda5707fb5e965614ef3ba722da662627f73deabb49d679f3bb8bc +DIST nu_plugin_chart-0.42.0.crate 13849 BLAKE2B 23048bd473f8d420e42609809cb354a233a8a629a0127051e302c3b91c8149f3fd50ae0cdbf23e8c47ef00ad6fd7353aba72b763be4fa8576f314a040adca8ec SHA512 9bbac0bdc5b9dd99d69643bb4b362fd9a416aba53264cc9c200fa86437508c4071e685b606213514950db93388ee32ffb46ed70cee58466a08d52ed4815e1d41 DIST nu_plugin_from_bson-0.41.0.crate 8938 BLAKE2B d71068317db50467bbf6a35ac3b46fb914d38ba55c4d20879a725bcbd241cca11fa6fc54fd7bea4270a909556a103af693acf70fdfa09e9fb785f3889f7b3670 SHA512 9cbdd9aa64964aa25abd1abdf24ea1bef2880e6b676892b27a886e54348647485a80e247647cb317dc2f6d2193930fe60c24df8386b023639d347f81c9f380e0 -DIST nu_plugin_from_mp4-0.1.0.crate 8055 BLAKE2B 23b1d3941bab284fcf2e93e9f01af098011aa0655c6d876cee047ebd18ef7461f69efe46c2a7b56a1b7385ed38e3f36f876cc9320a9b79fe70e11d2e1b8a40df SHA512 5fb13b4d3c9b841e292ef168054060cfd8fb6a089017c24e16e8af969df19021de9b722dd2272e5cdca2c1ea1219d2984580bbbcfef7929dfa360e37396a09f5 +DIST nu_plugin_from_bson-0.42.0.crate 8852 BLAKE2B b41e93f098d68ad2142dce5cc5aad451008b5e221adfb4baad23ebcc28766f9d7dbe954753c9d6f161f3a79a93052c20f3449c83f343588b57bb9f305cc09f11 SHA512 45da9cb7e03b9a4ab483612465f4e43ecde1113431f6c5d26e00f255f5b1c5aea8983569db5bfe07ace13f2c56356df7cef0bed06774e84cd05f104db58e4789 DIST nu_plugin_from_mp4-0.41.0.crate 8414 BLAKE2B c6f60d3e70e9832a217b8700986a89442bfcf9306eed72bdeca26e49ad6430d4d97bfc921c5afd3d16e2ccfea2fba12e84bf3822e4fcab09d26fbc886ac24e5d SHA512 a14b775317f0ff784b79a35a65af7c5f25704799c1e4707f606e956e1af5ff640168b4335515ec0925dfbb47714737b221514d74d16cce8a540d6691339132ae -DIST nu_plugin_from_sqlite-0.39.0.crate 9137 BLAKE2B bc03c7f758190210dcf064ed40a7aa672a4b2f7a8acde3312640c9ee8597a90d8cebb269d4d9e5516b16f63c7f5b2b34925a15c0a7d499d35e94862f625ba7b1 SHA512 8ce44978ced96dcb2975a547287a3a9c498a3a1206c45f5312cda890a545a49aec4db4b958180e1d2a73bf4975e1a3e2fc952e0ae526025626556668644a6e27 -DIST nu_plugin_from_sqlite-0.40.0.crate 9137 BLAKE2B 50b23650e6e55518682440dd4ee48c1dd9497ac1c1205f90284babdd46be42959b3411187bfa56762950099de0cf4c1ab38f8625c29fb6ecf653c2f0b42f6439 SHA512 279a11b20dc3f21214a86856347df79020dbb16c93b66c13dd3fde9d4d41c035f219d8b9fbf624d821dc2dbe83330a4a8bf03d2c014b14397398f90bb94f1f91 +DIST nu_plugin_from_mp4-0.42.0.crate 8279 BLAKE2B 25b16c18c77433923ee4912eab86ad1083a36a11f6ebf5451212f940e4c43462d170a0f651259b9583645dd69c5d58a8b33847454ef8eaa437f4849f6a04fa5d SHA512 3be52de89811cfc926f35c6a67467641452c787d4dd9a03e0269af4c337ca61b1036c883f5ded8dbb726b72508011a6bd38069a3a155cf00796f3006573ba185 DIST nu_plugin_from_sqlite-0.41.0.crate 9192 BLAKE2B 8db1f1fe9e53597ab06bc2effc5025d28267239067323ce9a8fa0b5669a7d53567a792eab4012d7a75af194f0d4fe7018acf010107bf5c63e416f44f22329b9f SHA512 504b4d6439cb261e97291e76f0fde993aeeea6b60ecb6b7c4ec62dd1a3e8365a8c788e7cd83461f10d5e209ac82823c2ea79b7720b2d904ac430327a6db9cfb9 -DIST nu_plugin_inc-0.39.0.crate 9550 BLAKE2B a49ebf7953245c0e54f7ed4cacc1c529a2c2060e1c93e3cbe62751aef34204c1b4c5673198698dee44b65b71c1f759ebb7d455ea21dac150df853d134f92b6f8 SHA512 010320382f18c82c2df38d3b6aae6b223a121ff3d45517456ec69cb7e903fe9915344f41ecaff0a6eab7d0efb057456ea36480196d8d39c1c339af858ffe52de -DIST nu_plugin_inc-0.40.0.crate 9552 BLAKE2B fbf8b260a52b9ad050b7c51efe60474d20049188f2422f8a038fd18586043b82e84c59d69f8c62f78c674221b73b2cd731e2370bb59f5275e77ec615db51d4c1 SHA512 9ca185e195df3a7250742cf2835ada5b4a88c9e0435412a5db701c345079fa087c35295e06795213c85d056e699d38da8d110e5155fd3645e1acc9f3999f4eb9 +DIST nu_plugin_from_sqlite-0.42.0.crate 9098 BLAKE2B c5542343d1b63db7dc37e70ce225f1e0e7d3899e390c29b4dd24f495651289c925a5a96e13f6cefe0230623df863cfd1944907551bd93619695cf00fd4af6dce SHA512 33a0536122eaccd6c74d56ee8b237623712e4399b16313f46206da044bfe8812f88281600908a35f83b2c89e1a42e789746c4c0769d3bbb3e9781ea8f332c593 DIST nu_plugin_inc-0.41.0.crate 9610 BLAKE2B 8e55c3f7b8daf34a281938f7863c58703920ee5308af63daeb5822928806a5d1b78d4abb79b37f02fc35841f41c5b357d32ccfe6fa5b51b82881a5704f5737af SHA512 52efd95d28b06399fb0258afa796152670fd333dfe1aa3d9c0c8a197ed69d8100b65adef6c209ef36a0bd11b95fcdc57e56d3387f302a385c921a992204acd0c -DIST nu_plugin_match-0.39.0.crate 7403 BLAKE2B 9a2387728263e9573a5f89db5c1033bbe646ac6bb1fedd61c5be0b66da6d296923f21dc90ae15f16638f716e0879bfaaf96db90e816eb85df1eb37e0171b4c82 SHA512 81c78a4ea3974de97c19ad93fc31d2df722e216c16f50df21bc7e0cfc5ecebadfe4d71e528eddb6bcbdedf101f16efddd11f8c9740da134c3b628672fb15eb41 -DIST nu_plugin_match-0.40.0.crate 7405 BLAKE2B fb8f4c566e5338ed9e8d3e2ae959781fe3af63b2cd85c528664b4b617ac4775b54887eec7ec58b5ecbed0e2a3e3159b28151cdf787952e704628fd1e9d0914fe SHA512 b4dcccd3def3c8b2dbece080c16044eb5652d18140b77856335a054341cd1274983bd62bc02e9747534ea2bacc45c9495e6e94e43fbe45d255735d748b68ca2b +DIST nu_plugin_inc-0.42.0.crate 9516 BLAKE2B 5fd083f4d23a71a759192cfdbc7eec1ae13c3e4cb101bacbab73ba236c97ed4ccd75652f068d9350490ae8358158f55e45be83fc9df40ab151dd03c83550354f SHA512 d4d2305c340bced523e41fe664a467635caa20f97a423d2e84d4934e76d14a7b1a73890d402f9dc7669d5535b8aad0e607859804cb1d7ea8735db600de537df0 DIST nu_plugin_match-0.41.0.crate 7450 BLAKE2B a6c3ba85e22a04e79b2875d871d33ce03a9ec23a0829db7ea260166b56ed33ecece397a73086e7387588232d43bf706d28029befc57cbdb5a16f361007828c6f SHA512 81f4cfa992a33050dcf451bcd8b3e4c047d6f5cf560e2ed373ce7f6c65423e8f8ac22a5a498e624fc84092ceb40c47a4a5431d74853846269754893af646bd0f -DIST nu_plugin_query_json-0.39.0.crate 8511 BLAKE2B de286777d4b8b75d74a5018c287e2d883ff8cf7cfb454bed0155bdb1fa748a4401f4cf3c3b0f819c5e8bfe8680c5178344ff0b0602a3794267eff51a46f82fe7 SHA512 05e9505ce69345dc1907fd8a59d95aa552628c4514cdda39c7eddc85202ddb84c3d815b13ff38e0d64cdd293369b75f038175de1d0c17cd0a6f9d4dc4d6ac4a4 -DIST nu_plugin_query_json-0.40.0.crate 8509 BLAKE2B e1b8083d740815deb27c5195868b18be86ff7ec548fd981ce3f927806f1b146ec8da123a5c3cedb562853cadf81d1f341fc2bd4b7e2575919f85ecad4a99139b SHA512 92530a409b5a144dbad576320fd54f9b2118ae6e493f77ea2b1872c7bf4457aa87e4ea6b7aadeda608efd488e54331f39c02af7dac04ac4acd87703fd8b180ac +DIST nu_plugin_match-0.42.0.crate 7360 BLAKE2B fbf4daf1183fad59a144a2ec62792d6787c01bc91708e3025a85b1f19516d146542b058107ef4d9d840c155cbb9d4352d752c0ba6f793023f41021b100cefbd7 SHA512 dd51e59a8a67855a29c3c86cd1d45498d20006eeb1ed80be2263d09316e90f9a3d59210cab77e0fb5ca2fb661fe42786290e647b3d8c0faaf74ad6f199132f99 DIST nu_plugin_query_json-0.41.0.crate 8562 BLAKE2B ae45c49643683e42ba44f305929f348e1ecc280da48524d3caf0ba091c1a8a397f18255f2cd55bace381c222fb4e51684fff27823d8a590d70440be19939aed1 SHA512 475b86e5a2a27e88919ee923bded58a79bd68a9bb4f3b8f53eb5ca11b850243931e41ecccb71dd2f19d25afb9b6e09e559957f6396177b7319318ccfb25569c0 -DIST nu_plugin_s3-0.39.0.crate 93294 BLAKE2B b4ac0805e80456c94ed15a612997a5082a39b6cff9f28f11408b821c321090c622c69583580f9d67fcea2a2c03767b4e7207bb5cdac97d6e5147a19d9cb1bccf SHA512 e97703c0f78f8575bd7964590a059edb64a7f2e53919acc5f87c69b142495e296074b5254e3f599e40278d611d9988a090f8b17206c6280b5de2ab3174948ef7 -DIST nu_plugin_s3-0.40.0.crate 92897 BLAKE2B 63e6159cc0f2f75e1e70b9b004e8b57d63cba48a1db806a305de87ba6e65d8cfd15a609014dbc6e835f32618e1d9f53ae589179a733892b742a6025063c0281a SHA512 59b453f5e4d03713b58fe96853c21e14a4f069127cc34bedfe865b02086c2adbc484bade6e8413ab2dbe7c83292bb71166a09ea6aa5676806a66af98508e14c1 +DIST nu_plugin_query_json-0.42.0.crate 8475 BLAKE2B a2f1d14eec71c5289482da1c534a90ec0b060adc5e1d726dbad0898cd687a7019460ab51b54799cc6e78db9a0857bd61a333bab09e386d38978151a1a91cf2fb SHA512 d3b79bf3e30d79589b90592a5de2eb198d109ef978c6bfc558e839584aecc00ad0a5175f7e8d4f9ec0c39c23d6cde7b1b18db7f9165d469e22b11c59b499ad92 DIST nu_plugin_s3-0.41.0.crate 92811 BLAKE2B 7ddfba485702513cc0d993deac155107f45a72be543b222add3a93a2feff62475e9d16bde33acabf17eac4e72419bbc08f82b1e68dfe4829f03653782585bb88 SHA512 3403a0ae4e62d2de0c4496c15ddf73533caa06be866a0cfb8448d5f9898d186a0e4a3938707f13fb7988e444f599330d97bd0ab0a9107a73c1eaa35a9ecbfab0 -DIST nu_plugin_selector-0.39.0.crate 19470 BLAKE2B c032552b1fc57ac277394a62f5957d474068f97ab980b03ec4b5508c8d564a938a7ce0866fb5f23d2c0bf56c2a2c6d52faf09543ac603fc4edd4d59a43605f59 SHA512 f0bbac74d637d6ea5399a0ec2d322a563b25a5533768a07805739d95c5ea1e9b361cba5ba41a3192c443dc3ae515f511b33cd82c32645777f9d57378a89daa11 -DIST nu_plugin_selector-0.40.0.crate 19474 BLAKE2B d6663b339a4a9e40f391c1526d2395c5de980fd94ecddd8d8c100c36893c57e18752a4317f1e0b911d33bc13821056c716bd9877142251c320432f449e1b37fa SHA512 02622f0bb84bf6de44c337e5f56ac7421ff1f9bcf9e916a1916dd4fa64623c6aa32e9d59abbb1531830e5265a1af2d65291d701485aeb5c838eff1a5f36b7a59 +DIST nu_plugin_s3-0.42.0.crate 92792 BLAKE2B f525340f49407c65df6830b08869e5438d8bad07037fb6013b8663de35adb26a38dfa6c0d30687971b13c77fcd4c90d7b4b0861d03ed164560c218524af8c377 SHA512 f075bb9c4102f0a694235d9cc6eaadc012dc368bb06ddda05bcc88a67be2cb4bba2df05a78dae19695cd7fb27befaccbd653539060d39ff547af4780eeca9720 DIST nu_plugin_selector-0.41.0.crate 19318 BLAKE2B 59d26f59a3a0fbfad9777d478298862be07dbeca3cd5e47838a36d5dc170bed9419c15aca71ec70279436f0fa71fba14941d4d79a8f0e04e4de14cf5a5adc4bd SHA512 ac112eb9f8cc4cee511a03838619622138f92073d884a0d11470d5358803e2abb538e08416b29da6bfd97caaf614b40bd5e18c910ab29661a28c24a4ba6979e1 -DIST nu_plugin_start-0.39.0.crate 9632 BLAKE2B bb99fff37a7e3d6bb70e8dfbd9d9d19139c6b8785c5357d7bdebbdf63c49e4827e6a14b2062a94fbd3082f633d1a349438de0dbed3a40aa31593f70a664d479c SHA512 8acafba4a1fbd757ed6a71726b98cfb6f7c7c46fbacc301c38e5c821c2032d01086335e125560fc13c43881c622d04cc92d39824c4c064190478263fcf288cbe -DIST nu_plugin_start-0.40.0.crate 9662 BLAKE2B e7aeaa61ff6352c5804218285acc1d4d18735fd50d49b7b7271e637833c3ddb364d15167f34d06c0246e4753bc7e1c470cf44c89501961588b312e2aa28e1caa SHA512 083f8c4e7cb0471ca108c2bfa87a405c2f03ec81eefb98f58c23a16ceeac7e6b16958fba8f16c63d889f54b10f671614fd9c8bd8f83c27ce6a0b7817dc666e6e +DIST nu_plugin_selector-0.42.0.crate 19329 BLAKE2B b81cc5ea15b037e5d8587afe127d260c1842c0fb663de1e3d034ff428a53117fd08c019056e8cd05930d7abfa168ca4602cd48900032c4e880cd49ba1b89ece0 SHA512 089a6de4241d9b8bdce9378038a04268e8b63bdc3ad8bf225233a015c8899e47dda02d9328eb767ecae2c024ea62426db8b14da6b31469cf89a8f78f9eb5b56b DIST nu_plugin_start-0.41.0.crate 9718 BLAKE2B 3e3994e4829e59c8b5cd1d15dd7d779e7162d275967f8bf27f856485a90ae814dacaecfd87d51e66168fcc31604a84e2c8d092f91d2f079f9c30c967ca988a5a SHA512 52b4f03a3d017e51579330347f60e87870cdf77d4496ee1ab4ba968f72be200f48960a00664199faaf9f4652c399bbcbba0182f68181b3670dd60b9ea49a4d21 -DIST nu_plugin_textview-0.39.0.crate 549192 BLAKE2B 009ceba22ed1131172675631551115067a5d22de0dd93b0cc27f52987f8ab01e8cfdc43dbc5b5876097b798a1d6c3c533144fac01abb4e4e4f7e9cfc89666a4f SHA512 87a4abfe73c5a46a4b7a487862ce1026f2708432970d40f53c22d77836b754c9e65ab341999f321ed17f171c3a6dcc89da96be2cafb44794a46d5221b09ba21a -DIST nu_plugin_textview-0.40.0.crate 549167 BLAKE2B 871f13535f9fafdabdbc809205a4a666fcd4a7e2615ab20e9eec00960ab1ddadd6cad42fdf043abaf0c114c45d3dc2dd7a467b674d873e65c2a890e9b8466aac SHA512 e1b197523d6f4705daea352079dd74bd0650c4077e99327d1efff76eeffdacc6d820028c1948512b6e69a38ea4e093f248b74a3b9bf84c0eae920c969a615d95 +DIST nu_plugin_start-0.42.0.crate 9618 BLAKE2B 357c4d453e83b377205e57798e378181549e0ff93200db87d7094804d48c0db4b96f9821be274b0832c3292ab269fdf0cfe14c291aae3855317ce1ab31e4956a SHA512 fde924b22e787edc909eef1f23224da6ac1ccd3f188e77fe7fb2b8b9f6a00d94f6f31175a6688c125cfe7fb3f89b4df88b40f518a790a990e8c5cb5ad4c1d7ec DIST nu_plugin_textview-0.41.0.crate 548878 BLAKE2B 83a2b2e5e069bc61114ea042948509ab358757dbdafe2523b69011a3cffbbdb3b980f4ca051250a49f303a0f9d8cdd56b39fe19aee984c33bb76db675adf826d SHA512 eb72407812b396466d8612cd4af2e64f64b66fef915de45400341a892d12312d86843ca0234b12db0a919c1064b5ce395a0224ff8e18ee6b45ce1235a0425e17 -DIST nu_plugin_to_bson-0.39.0.crate 13472 BLAKE2B c17aeab4e582261a019a4d02882b1fa0f7123eff6d0e5b309a0c3e5f7b8aa5d5cd30fbf3ee7923355570ffb78180cdd7f14b546a1f34e302b79075184bea174d SHA512 8eb8ed001aff3d8fab9338c97474dccd30da877b82a89dc279036f97dcaec514eba39d78351e887b589d00e2dbcfe096020956067557724b2f23f67599c17d07 -DIST nu_plugin_to_bson-0.40.0.crate 13521 BLAKE2B 9dfa48e142006c4156f5cec9baad1f4b9fb3255bd61db215c36d9754e81e9ece616e652d7728f850a632fe2f9c8313f9d0239606d132fb2df87583f2e23a13aa SHA512 4cc9399f307db47403150c839d13c10ed453cbb6584fd228faafe7cfffc20675d4c59a6534c88739bed73b0c3006250f9a71873c3308003c629aceecc23e4b02 +DIST nu_plugin_textview-0.42.0.crate 548814 BLAKE2B 7bc69d2a845b4d2b6a3e9f7fe738d1006021629fbdca7449ba4469004c430cddcdfd3fbb959e7acb74bf8d18998c0a69191e94e9a08de2a513aafcaca1b0e9d9 SHA512 b5fe1f331e3b6fc7fba2f99038d66fc4548523e3e20a19b08b3a74c1f4079d3ab886ae59eda478bbbfee1fba8c6637bed60f7afa28b6d500d146fe1c0e8d531a DIST nu_plugin_to_bson-0.41.0.crate 13653 BLAKE2B 12897712b74b5a75fd9e93e7283c6da074d874383c47b901069906296b3bb1a7824033a77fdd61b5ff8e3f2569d14587f6fba5865225fa397db6a2adcaeef6ff SHA512 0da5efa9d3e28b27cfb6e971be26a40d39150e1d0f0762b802d18d8a23b3a1684fd5350e363c925df9c5e844679b9fe3e458af29ee6a71f9634108f3f27f7a70 -DIST nu_plugin_to_sqlite-0.39.0.crate 8869 BLAKE2B d59af828c86a86413e199fd2dc9dca521e68e55254501632123358c196d306da02daa3aabf3143d8e3d1b18299208a99103154859d8bbf0505830d0477ddddfa SHA512 c20f2734c9ebd8de5abfafa36f59dea19007861bdb13d07c0c7b7a1ead749be0725c105da8de0decbc5e1ba948d5151153483dbbfc2ecd8f41ef1940a4bb9fcb -DIST nu_plugin_to_sqlite-0.40.0.crate 8873 BLAKE2B 3adcba8384b53ca0449846c9f575d6f87cee1c2ad2c8f910cb4ed4a02ff5ced656bdee0cfc3073f5835930aae8475fa796f789d96e0b8b1b353bfbfcbce7fda6 SHA512 6fe38a3aa0d6c302dd0f1458c791ca6a92df660d594f1268541a5b3c1c8915d1410c6d28b3a9efdfaf27171d9204fc7fcfa80cacf415d8098689b9b8a095015c +DIST nu_plugin_to_bson-0.42.0.crate 13622 BLAKE2B 73d36dcec4b749047092f3cc8b214b99256cfeab68e600f55a2cd8b080ccffbd287874e76fa19d183fb144bc3d3a8e775462aadac9959a5f2aeefd901847c4f2 SHA512 93339a1fb37f0524df0f49f9360088f11b467011a22b491e98a028097913dc69c81d39ebbf2aa7ecc1ecb2c221693d193be272a90bc1bc027661e27d681c1562 DIST nu_plugin_to_sqlite-0.41.0.crate 8929 BLAKE2B ca372c7cf76defa68b3e064843b177787f66e93ce3dc19184efa31e58ea5d2508d16507737bff578b1e725a5325f9d658dc78a752cdbed35f5ec0ad315a923c9 SHA512 bcc3f66ff5f719105599a619857c6cb821bdf54b065c38227fad6721d8d063435a601caf57719000dc025178b068860341f6817a4231b10d2bca3d93b490822e -DIST nu_plugin_tree-0.39.0.crate 7162 BLAKE2B 9e2d3534c84d2e93f4b9bd0c9d8d2f2a89cfdc28d86c79467d3144c564830750caaa2f56ba75222989eaa52bbb92eb345b3f285cd3d73b67203a8e8269119a09 SHA512 845f3adcf785f72c1733a7453e110d7b72331b112ffd15c272b0f1d381795f23bfac6893adac53ae6c062a3f4f904420a4d8da0f5a53144069a97a6dbf94c4d0 -DIST nu_plugin_tree-0.40.0.crate 7161 BLAKE2B c631d5d363215b2d7aae9d96c9a7e54d11ed21a417a9eb421f30ea5894774d51e76bcbeebf85ecf65ade903447c00dfc99ea4464b008a69acebf0419b90a91aa SHA512 e8c06107e983b1c07170b7a7a4a2028699bdc2f53fc00bccc6371098f2ce83cb422bc893df40de81aa58a8d41409baa892268fe937ccc5fcc877e11043dcb4c4 +DIST nu_plugin_to_sqlite-0.42.0.crate 8835 BLAKE2B 1651ee775464622837a5d9ef303d898052910b8eccbb667eee905ef752f4803d11c5baba2eaa55a5447f981ab5495f2545702e7508891973612e5e00c06ac9e8 SHA512 1862bd2f4edd20753f9d7bf9decd925c57868325f98a2a2456e5b8bf439592c7318db6d4e39e6e43226e85c70637058c3c1cd243e7334f494d9fdd22a61de222 DIST nu_plugin_tree-0.41.0.crate 7207 BLAKE2B 43260afaf65538ee6331710774666889142404d3e55619850c4fbffa886452af4f0903d5f13f95e7cec9e360e25f858c58099911b94e0d5a64aa2817f1a234d8 SHA512 c0e3cecbadfd1fcde35a21a5f8445b85e5e8c2d11d967bff52415a8c1279e296ae53f87dc6628a3bc91344bcefd75920607134b790ef448706b2e2a5e5a4852c -DIST nu_plugin_xpath-0.39.0.crate 8364 BLAKE2B 0c78b1e1a966bbbf24e4da1a35f3184442848d886f7808d18a978016e706a553ea9858a2f438aedcce297bf4dacdc5856a11442f8e0e5564f3e7624f306152d2 SHA512 7d6bf61494f13dfae6dd68341ac6dab3ea867cf4bdb80ad5de7bbc8ce3953415aa670df111a31a5bfad15a9face9034173a654fc8748dfbee2db8b486ab6244b -DIST nu_plugin_xpath-0.40.0.crate 8365 BLAKE2B 8479e96e42debacf5529e7f5ff3d2f7dcf6d55120801c30c67a2d42ae3dd0cf42143c8908e431a2143230f55d6a1e3a41eb128a47cb2d1f8b2d8c2d48bb3a9cd SHA512 7393ff9c92c2ce9e83de262d90ba3cce58f291aaeebae6630f6e7e5885bf77a818da0750fcce59d036a32d31a5752f9545b3701b4bcb634b3b73308149915346 +DIST nu_plugin_tree-0.42.0.crate 7123 BLAKE2B 10555a00f0395051d275f2d831fd1b560421a44540475807598b4db8d3c8852b812426e9210ee1bd024ba66414290fe1fae35154656eaafd60c666f28444d313 SHA512 bf68f43308f8cc07873760d9a6f99adba09e3725de9d6db83af24b6ddccbd5a0b2b2082aeb3009ba58b9b8c84aa558b96d4388cdf7ca22eb319a0996919544c3 DIST nu_plugin_xpath-0.41.0.crate 8412 BLAKE2B 3c5df728f966a13dea04bea392e84b6f0c072844b907dbb743c65c08a8326f909a879e4727f89685e4cffe713a23e934b88819eac404370ad4b0294a122a0c39 SHA512 b2328b7ee7110b232ca1a29fd935c243ff88c22d1e154c9afcd173abc1b1f5999d396b09292bec79c40883168fb1fdf351ff0595160686349c575528dd33e37f +DIST nu_plugin_xpath-0.42.0.crate 8321 BLAKE2B c5b170953571dd862ad1e0ded02b71a5725a2dcab0faa29caf0627267bcb1cbb36060b9f96bec4876f41f02caf7db0f6d17c6355ae55b52a690a49673c1bb401 SHA512 42e87f934149eb8347b7578b842f504244366879c66d0be8fcd201f52a5f6a1f13dc565b6dd6a06499eefd53cffc3d4cb4f21b44493bb0337d2a9e959db856af DIST num-0.2.1.crate 9082 BLAKE2B d82bf8cf2f53ad30cee1364d65358e8421aedf66126184936d575e359307373ede66358e7672e1eedf3b8ec6a997439a077943c6f20045aa24a89bcdeb611e70 SHA512 9d094e0a29b2bb42d382d5167150418bc2ed81e8deb3c6636c99c86ca14abf5f69b82a49f1678dd110119eeaec2f476fe7a5d57e60558473a6b7c710dec7f778 DIST num-0.4.0.crate 9490 BLAKE2B 97e67ce59233c0ce694a2cd1be8ababe3c56f0493ac2e7c0eb3c586bee673cfc49fe23ce46b6519159065f552a99a73c1ad2025f5c7408d6a8166603ec2f4dd4 SHA512 fb57c089120f7f8edddacc0a2eea5f9c8d70c29e411e30eca726e373e5ccf25b51df8c7d4e52aa6bf9b9b89cdd172291eac23626d2ecb030e4d9b3a4fdad6ddb DIST num-bigint-0.2.6.crate 87275 BLAKE2B a7da84e705f8aa287b6704a42ae1822ac1555d25e7f51e69b4288a808557dba2c0c15552085a67f3cbd445d518fc8d4f668f7264237263acc4248d3dd1a2c0a3 SHA512 19c1ff0ae6fdfc690ccfe4fe6008c102e50ab9bf6b1f4e4f04a348d217d4d9d538585945466b72b70713053bcfd73685d1a907e41d135265d330bde996709eb8 -DIST num-bigint-0.3.2.crate 89374 BLAKE2B 3195b284f5b7743d988078e12a7ca54133feede08964194dff3590f77e41373106c537e2f8220fd247d05c2087536df29d4a2243d6804380696a2d488a4ac153 SHA512 1471b43642d7bec07ba79b08c227a7512debb0a556842fb8e54a41fff2db6948ac3ecaf0cfc05209433db3b3888cf45a4b61e42d6a0c97137582c72a3c7a8abd DIST num-bigint-0.3.3.crate 89493 BLAKE2B 015b680a0311e0c4fc248e51872bb69999e70c7a9ee64a649189eaf3b7125c1e48b0df0af5e996ca46585a1f9197b1eefea1bfa2598ad7296530e027557d2e49 SHA512 c4e3ef01b4da24eb3676d6716fcda84418e8bfb0e64aaa4cfc9ae67e08a032f564780a8c03ed1403b68cd7194cb29dacc778e11bc821e8c9fe7372a1a95186f0 -DIST num-bigint-0.4.0.crate 90002 BLAKE2B f68f92d7796d97aad60e6b08976a08759fee51672f96e1a6c742aa3d4ae2f35b921cd948923bd7aaaafec096e9b0709a060833045d63b5352293567b68cf3d6e SHA512 adbb20a1407934a129daf25278470f76a40b3adc002994927e3d57f7370bf857761cb117f7c726e98a487ce557c4ef6ee668702958b21e90c31df4e269393d00 -DIST num-bigint-0.4.2.crate 92154 BLAKE2B 5c4067d77f7d15e8e06b006b44d31119f42f3440091029dd317f24219898f955b326d420930f972714fce97bc27183bf9091892f8b8cab71f8e072a70909cc7d SHA512 3ef8b0fdc70d1f5b6a3f26e0a50264bd065f97caee1ab623c9fcbd716b0c0b1b62988d389f1734ab3ffff103801ef3a4ee33445d14b6c3b01a391faac6ad5bca DIST num-bigint-0.4.3.crate 97799 BLAKE2B afe9a08bf20dc974dcea12b5f9dd465e8b399a0cb0a6d0028d08f7f753aa4dfc929710e4dae883e67633d9dda073f995287e5315b1487e8f99f8f23f1f70e581 SHA512 4b38eaa8b51119dbc7cd8a1e177f37ec935ee348b693a93378742e9bfa68fe5f7e5062b7f34638283c23f04d2127451d796d310cd8adb64dc8e865b28708374f DIST num-complex-0.2.4.crate 24679 BLAKE2B 175ee644720b6bbff108eb4ef94d0fea8f340533c2be0e18524e54777734d1c7dc10a7c36b1f2ca3f032ddcb3dc351e60564340aa59b29aa4fa7ecb2487314c4 SHA512 53be64d6f67b1ff7d0a4e1723ae21035abfd300ab27bed0976e0c3903fe8e29f47ffe75040832ee2f81da5c2f4f671d3d845d308365b9a5a989ace99a7d463ea DIST num-complex-0.4.0.crate 24805 BLAKE2B c9ca4c01f59bea06e68de80aae5fb68362eeadab92f8f2cdf0474d46339b606d4921b80b4ce377771a1c08ea4e38a335e6fe2ddb412dd2842966b824c1252f3d SHA512 ececfb4ecd82acdb038322ffcb431a09c271b33d3f028f90577f585289251c38ba425d67413815442cd5c2daba821ac9b3b45b09122b1ca2cb7d35f45dd9d2d8 @@ -603,469 +321,228 @@ DIST num-iter-0.1.42.crate 10450 BLAKE2B 8ef03f8f84bbac51a11d22ad79d745c74c4092b DIST num-rational-0.2.4.crate 21694 BLAKE2B 6e8dbb873b1c62046c3fc45eeea0533a8375224fee6537e369a6042a42f98865c010635f3723c8116c32b365f8dd553831efeac4a1fb2bd0cbb169c90d7035cd SHA512 06e55f17a1ea58fd465a232ebd687686c922669f0b561f648717164f3fcc8fe2bb43213d1e6377158d2542f633ef2e1482a7c3cef8090328c34feacf7f9bdd93 DIST num-rational-0.3.2.crate 26359 BLAKE2B 18b58869b55f32396cf3f024f19c1dd1dd7594e0a398f448930c60c338cc5b42f73e92dbca51a71d9017eedab20e6f564504cefc7a21018d1ff029846498e3af SHA512 31141c147ace16505cf63023d399ec7d6824b1cf3a31160419cc8ed8c9e4392993910419ac113b23913f710eff13f730d04328e66328375c61c28010718fb837 DIST num-rational-0.4.0.crate 26428 BLAKE2B db676676735ca603df8e35707d2068e89245e2a0c9f80b0baf519312622c1611738e8a02f8cc8040f3599ea0777ae2193d177a61aeb9a9f1d56612b9951bbca5 SHA512 96b5fd3d407210e6e81aac72b542be5c5acf0f1132097e4b82a65042fb2bd98591e12e5153b96b38c71f69e613e295542d23dc73a98b08ffd49d9ef2a062eded -DIST num-traits-0.1.43.crate 7659 BLAKE2B 313221a4364b18eb29e2d4c480209766c56b1ca2587a0ab8f668c71cfdefcd733d64be1430bea1846a77f075a26137fbe71f2f4d9be79688374cdbe9e0274ba4 SHA512 35ee0a41f8ae33b1e6656935585f540956a8155045992e7b488b9fdbcf0eb9c9adc90ed8128d45f248b9ac583114cf518c4c7de719b8c6627b29f2fbbac91f17 DIST num-traits-0.2.14.crate 45476 BLAKE2B ae310d9d5640acc3e45e1e5d1d2f519539795922c0058ee940c94c94b6654b39358b7c18dd23a276f2c1b16a30dd4de4cbc8575bcda6a5c11e70665d670e6439 SHA512 c3028eca9f7b718de0db3a36cf3e462bdba43562d52c9b809ed4cc0aa6af403aea542d6d4da743cd1dd541397815a3c5a84cef4d6e40122994e4be6a62319b2e DIST num_cpus-1.13.0.crate 14704 BLAKE2B e7a26e597ad5e45309393a9500b031ba64a77831320cbb96d7861139a2f7a453b7ba06a3255439b43ac1e2e36269b0a350d514020d3cd82c2513b57934b3ebbc SHA512 e75ec298fa682be84bf4efb6cf40126da9233ef25f07e887c2fa7421ee78790204564e6406c8219466651f47421e27f69eca690bb9cdfc982b644d78cc10de3f -DIST nushell-0.32.0.tar.gz 6247693 BLAKE2B 16a17c0bec9846fe662e76266dcfdc89bfb32e821ad5f6114bbac13c2a032c124409aa410db4e02671147fab45c87961421cb4c26c0a82877953350b91e131d9 SHA512 11535af6bdf5217f6b88a226f7990fe44e4fcea133ce213e31ebacc0bee2319f82f73bd8e443c83378162ed2fea18d4ea9efe9f3e7a6d93b007ea0970bd81b21 -DIST nushell-0.39.0.tar.gz 6297031 BLAKE2B d3192b0b88bf0232a46b6c3818fcbb9322f461c37fac5e8b0e3aa28d9a737a5bb650c3ae9ab3cefe46975484ed5247d7fa75632a0b9aa5b2a054313a6431f643 SHA512 c3735a22f7b41b78847e5361c300252f4de77a2c783ea219a8f7f56b3211845e19807f216986361b75d6dac0b67340371e1475b3e6515a8c2dac4fc52ac9488a -DIST nushell-0.40.0.tar.gz 6297044 BLAKE2B fe469a3bec4ea439bdfc064a770d50e589327e6e02a4611142103e0f49073ab827973afac11856cf281b229d9e820e7df3acb97d2c951191d008a0aa2c427635 SHA512 83e8382a524699bb8bca03b1262a4943eba9acd0e4855deb3556f03bbc53c643b4697dc7ffb09e9d9d05326d14f4101b793fea7f39bcb68ba10b532873a08daa DIST nushell-0.41.0.tar.gz 6295759 BLAKE2B a3c73fc5123a80895b3cc1cefb4d9f940b2c93f50a543c6d10c4bed8baedeb4f92b3d5c32a2fc41fb82ce0e029876bb294ed743f42ad7e7fb5ef4d0b785adfb8 SHA512 3f9c87f96e61bb98dfca3db5258a508843d76ec0fee443e1f2eab0c452ae0249bd2393a34bee04b128db4fac507c3d19cfe9ef41e3b74429954f1de8df9d5131 +DIST nushell-0.42.0.tar.gz 6296872 BLAKE2B f2a08ad466da41b850cf57413bf65ffcd728b8e5069a8b90bb8c03a5aa2c9e1c7e43383820ee848f024eb64c533abd189f444bb5739f2becc139a3e7aec07caa SHA512 d68bc66241fc08e98f528e5f244650d9d7f74d38692f49f1cb9a4c0e5de80ba5fae5dd7be50dea92a0912657776fee84266bd8a1943c4ee8ff13432be21073cb DIST objc-0.2.7.crate 22036 BLAKE2B 14a41a5ed6beb100d68601af12914dfef67a9f580f80d70c4578ad9df98a6b4496bc3a1003dec762a27f0ae71afe2c9e8fd41ad715bdb310722c8fc092563599 SHA512 7178870c8e4e9154b4c7b4953b3164946b7ce72c956a02b9ba18889353c72be735824bd73e44a485e42ad5f97994820d9153ac684629342755a6a63711ab5988 -DIST objc-foundation-0.1.1.crate 9063 BLAKE2B 876dd217b612278a522f2d08434537d468f8b0fd1efb0e58d0b58216e20f7f9fc80a5ff034ea25d9216d4d53b2d65552684ae5d5212f18d758c7937c91742a84 SHA512 976dcab4e62ad1c387a81723d70b969fb7d332e1f7dbeb2ea9a26c62fa999d91ff6d8f737ac5725a7611334862df16fa8b15765c036d7acfc3e42a745d051f34 -DIST objc_id-0.1.1.crate 3258 BLAKE2B 9a74fc17235ffdd7987c2735a7a9d136376fd13355f0561b4ecf234784aed077d1ab5aa11c1a82fcee7d47d4d36e471ca4ba3e5bb725a2ed0049a5565967326f SHA512 ec36fae6f5cefda00f3e44618b3c9fe6ec8f528f70d1a95def6421704bfa128a6e5b4a32e9dd686bf6ff60c4f87fe8094aa5e1c8070bcde58b17fdc06f49f9f5 -DIST object-0.23.0.crate 203889 BLAKE2B 41dd20ad5b43b026d032b50360bcb1efff7aab471342da1ab787d820722f4374fef8df48eae722016893618f0e1af3014e42c56a57ea8792594b5fee676a4d6b SHA512 6352624a9071bef53e4b7209b3f8cd5168d54174962565d76f8eb9201dc84dc3b26f08c81ac954bc9d4c55032a022abb35d160817bb434ef27f76949290bc7ef -DIST object-0.26.2.crate 238067 BLAKE2B d7731f530dbbbfebc506dcd12bcf33e1421785d9711864d6d824360aa249b85985f4db69ad4036bd7f8fa22d5909f973a0f58a03021289a611ed5290d2fa68b6 SHA512 42882e3b1063ad8326bedd3f402831d6206603f8736c5aecc3c16d296007d25360ce9143bb3f859a6d52f1a530809df1f1117d321f0d22f0b43c1831366eec6d DIST object-0.27.1.crate 228030 BLAKE2B 48ebfff83ebd0c1bad5f956f79a0f8628f9cdcd75638ecb92f040ed84f625425062c16449ce44b29d9d99c3950554fc1a480046fff922bba30348ac14d68d887 SHA512 3f25b663fdbf9a38090c2b1cdc03ca40bead87fb83f99143e79a272dfa4f2fedc387a50d3412d42a53aab228bbcbc6967fdb5a0c8db0a8a3e3ae9cdcf1061589 -DIST once_cell-1.7.2.crate 28250 BLAKE2B a30a55f6d6e820c691928173a9ce70a60486b28e3e79e8a01a08d87ca0bfb1725b967cc9e070cf53e71b924f73fc2eec2cf67190fc743361b60d82290762725d SHA512 30cf51249bb73e9881cfbc6a54ead7a3db709d560da8d420fd85cf248e66c727b92e8351b7c0c682913cff12b3f984684a272a69c965c56f8343948eb5a194d6 DIST once_cell-1.8.0.crate 28925 BLAKE2B 7681b1a7497b5711e663773c1a7e076f333c06c10d3f289079a781c36f050c1620cc279742ea8e5b15ec48f3d6038a6079bbda7fee3ae8e1128bd916d53ed43a SHA512 88e55c9433225ce85a08353168c87fca2237615482160a5c28f3ac17f06d48c63e0c21b5f7ef81f82ca133436e371802ea099453844f1c111003bcb6ba89e827 -DIST onig-6.1.1.crate 30790 BLAKE2B ee5b49def2318cdc1fa7123484eef48551faba5be52659403e7c037e84a9d2c786afdadd44812b1a478762ae582fe24f46425f9d70f1adecc870020bdcb58b29 SHA512 4d754f05a3612486f6730f850956a041f1fb8ff723fd512acd0a8a0a4a2c8be2b98cd6f7b6a882947d3b368bdb5822241e55a87eef331de80c375433d326a864 -DIST onig-6.2.0.crate 30671 BLAKE2B 5b284338aa2860209238312dd2aaeccb630d4614f45e01d06cae7b14766fc9fb2bc490d65fdf68b7e4b2433166a5426e7b4dc6d7d6e0893b5c09c1aa71c2ad26 SHA512 f744cfcc1d6a3ed4e753087e179a1e39040e178e4abbba91bbb8cbde4e2a744bfa5e3dcdb764f3f5109b04ec82a6f4182fdd917dd0bd458ecc477aefa39fd675 -DIST onig_sys-69.6.0.crate 620817 BLAKE2B 294bc78ba0aa31743ec12c1cd2c29c3566fc960f64788681cfc3b333e942efc367c1721efdad06bba218a48b3eb1893b28daac163f76cb28a3f872e940ccdf02 SHA512 79903461da8cdacf3f50c7f4d7a1babb200a883a3fa6515119a6d2a82c15eb64b7f758932a2a8c46f89acd052d8f2ab84cf87bf16a3ec9c570667232f54418f5 -DIST onig_sys-69.7.0.crate 631318 BLAKE2B 3c13902fc1d3c27f809b61535dfdd27c2f96e0cf3c1889ba723d57b9a149534f91e925f52e7534722ecf56095a0a6819c9c787c29dcfec97a63c706ee540d434 SHA512 56be1a8088aceb3348d349fe0b2692eb2fd7810b4aed1c878ec402af848a0bc4563e0721685597ab3d77c037874d00acafcb7b735aa8077d0a36c19f82f13a0d +DIST onig-6.3.1.crate 30879 BLAKE2B e371f003ee19bdbb9cf9fa0e5f18ef14841cbae40f66bfbb367401c15b1eb50b3661accc0609a43dce41f8272ffad8a4b41f75ea23267ab8c7cdf4556d67a7cd SHA512 5c487063b669532e31acce0788b690c53a8d95eb628cea970dd335bb721fa99e67bb6c531b0a9a388354b7e1a6e1621cc953e029f1791dde43736a577002d955 +DIST onig_sys-69.7.1.crate 631301 BLAKE2B 4c593f3b7a83d32edc92db67d6f2f0460e43bf34611751f8a5941ad3cded459cdd582e9067291d1fa1e2dfc316b276080b99f85f0a98dc9bfcc531af2f289b7e SHA512 5be8c31049ad741fa06247bd22813374f71397481cea22be3d83bed720b512b9cb10d6028072fd92cc09ac0e9ca8fb977ca49fb59d934dd61f84c4634d28ffb3 DIST opaque-debug-0.3.0.crate 5767 BLAKE2B fb5d32c876a271b41582563f5d6978d75bc1cba2cc34167f491bc198e6eded45b9dea65effa3aa972ede20978808b37ad1aadb6837f926fa3378ffd382076d41 SHA512 9909b06668a4f97b4d0e916de3e1d0a922a5a0b911a7ce190de786f62ceaccd382cbd0dbe01ab0f15e5472c10848482da2307a6d897928b6b7d5365bc0321cae -DIST open-1.7.0.crate 6101 BLAKE2B a0ab3b5c9c48999962dcd7af73231f3b2887fdc4244ac066998660029216f10c71cf32e7f08e788bb6cf4f945569acdc4ebb2ce2094d82377b7a4f38304a03da SHA512 755d199424644347dc60527865141616a64d86c2629b35960e30a8130f6f1e6c389c1f6cbb13b9c2f8746f9bfbf599ed708a54aeef95a107ab73631e8006921b DIST open-1.7.1.crate 6129 BLAKE2B 024657c1e17e73f1aa24921e0b6bcd11b94754cb9032dfb1aafd6e3f58e484d0f5a1b4e504febfc514dd15e947791095465d2090ac4bd7b6dc43cb38b1e63ac3 SHA512 97c064ade1c9e1329aef03cffc6dbf565a7a3c0acf41845236202b0003d4d709b769e22cef0190624c32b5b6e1506964028a4649e4bb79f1ced5ae9f954508b3 -DIST openssl-0.10.34.crate 203996 BLAKE2B 06416ee7d6aae86796cf37d9fbdeeb2f4edca2f08d51ab8a27d61c91b98b8968c5071464422139384babaaad0a09aa01926493483dde288b6559234f42fd10b5 SHA512 8ff8fad59ac1effe35a68c55e8133219bb966c5e6788513e86f115c3ae4959892a4e591d293f92f389759f73685b6c894994d05c072f557375f7fbfc79d32b1c -DIST openssl-0.10.36.crate 206367 BLAKE2B d059480338da28c1e6707db85127bdd4721e931f74bf27d2c8f80315c43cf9c37a977740b9d799a03bb59a1fdf26fc1fd9ef11319863b63ac7b6ba3ddc2c1385 SHA512 bf215f7ccfe24b3f490d516541ac746785853dc61ab6cf023e303275578c206fcb14b6e5001f36de2f71b0a8c48ccb26f4f343c5b88ae38ad2cba12ccc941641 DIST openssl-0.10.38.crate 207436 BLAKE2B e2c999f1f04f7646e765fd0c1b51058136043d84c052812c4fcb0dc3cd3605768a8104d9b3ab9ada3d7d57ac057cc6ee0e7addb6e4f5897cda9236de3402a3ff SHA512 3cdd25b722b036779187a8906c11abefe69ead198204ecb8cd71aab549c910c3992761439336baf82c61dd6eb3258a365fad7eae4e4b7bd1959a979ac6c3faaa -DIST openssl-probe-0.1.2.crate 6427 BLAKE2B 8df00c8ab6af7887a88dd1672bf2c40c6aed5867b0b8d07dacc94b80591814e2fee4ac5dc775ea0e98cc33641b9eeebb6d5979d34717ba400b907358ceb2a469 SHA512 4001eeea5c4f859559475b4b1df8248611bd44273116b31e7ef775e02918cc989825989868f331f0f0e387787680c1e4ba721ac0fd4695f7363005ccc0815d9a DIST openssl-probe-0.1.4.crate 7066 BLAKE2B 656434ec1d34466e903e5c69289a277d14623aa7bd8a7c19bea974c7de57fcec9b2b4ed212f37d7f7b90fbf02a486a8ac7f7c318cfb3b3930e54e276103154b9 SHA512 c5d4ffcc6faf009b38dc715ec85fd75b3e3b0c0293041ea26071bb6d19d8d018a43ec166bf79ef1c7a126cf783bd4a7121d5dfcbed36db5ebf0fe4decb198f17 -DIST openssl-sys-0.9.62.crate 52116 BLAKE2B 5410e914826a28c8c797d07cddc4e4b0118f9148594d6a0fa94bd6303a9096248b84a7b08af9ba237515ed5c68c62cb2562e993ca167ba95a3858f213a9753cf SHA512 8c6ed605bbd985aa8a4cfb9392a349d6fbc62b5a81cbf806c2c04524daf7cb40675a028541c61ca0bc5b607060b280e49e749337308748887ab955b057cd58f4 -DIST openssl-sys-0.9.66.crate 54599 BLAKE2B 5c03c5e4a524a518885a68a7d7c9fefc0d6cb97e35368bfa49898cf5a97fdce0ce34047bc7e7ba5aff3430b51b3b546bac1bbdddb743bea1bab877df684fc1e4 SHA512 ab2d39a766df694f3985d67495d4e820bd196987571fbc229c003f441fe61bdc1aab9cd35a83ec3be9518d2b4e463f33f19bb109e9297a2d4114fe2d1d932a59 DIST openssl-sys-0.9.71.crate 55893 BLAKE2B 910abc01809da873ef97ca63d00ae91dad8e0c6607f5572460b6a9229baab685555dd5b4e9ba1c5e9a12ba50e47ee3bb6c584491aa3de53b0a55355699e246bd SHA512 d552eb0591f0c2783e0cdb2f4da41aa39dae6dc9d613d1ffa1228bc714b06695400456685ad8445366d4ff87b4511c2c9dc4e579ab8d1fc4f368f46e5d85fdc9 DIST ordered-float-1.1.1.crate 9983 BLAKE2B c6c2f5c33676fc88ca85c5a986b5f547e798dc93f35d6fcf4f3c71feb0c05d40965936c509c269d1b4ecc737bc425f479c78821572e646c96aeab09bc213faaf SHA512 defec68f53e35793f579dedbfba46443df91a78332fb755ab6ab90831e09b02519c88c61f9270e9093f6843a19ebae516fac0a06e1080421eb038bf4944e3f96 DIST overload-0.1.1.crate 24439 BLAKE2B acb2dfa6c6c22ea95cf58079f6ec56a2bb5e297a055ce717d40633b789b0d005be2bfd6616448cac61bd032e74aa6eed212f1677461907cea2f7f7cf536c157f SHA512 f79bc3321f45df5e3d0e5fa9c4e60524e4e28dd3729a09956766738adcf99ca42c187a01d48701ebe23d39aee00a19d4a07da798edc781b942e866b339613532 -DIST parking-2.0.0.crate 9714 BLAKE2B e3ecd48e90289fe173b1419ad3f68350dd05359461c5842e52304e20fef9b5e089803e0c0a8e85b249a546f61cf8624367e6ec164ef7638850b451d325851075 SHA512 21c5723dc0281ade1c2cd6a1c2215ba70eb47a721a4a594ef1e54061bc79579ffe9c31f06e534fd847f936ed265cd65a59dfa9e38880f8bd42c6e8ac70a13f93 -DIST parking_lot-0.11.1.crate 39854 BLAKE2B 5a097d7016811de4ca7d21e8a811a96b2e857b5224b176cf7a3bc160c0a0678c9100423e3c096c5056e2df3a4dcba17a590cc64eb1d648355c153c5cdf9db228 SHA512 17e394ac8b62656177a12fcfd246d9bb59be468a5ac174e4d6d8b4ffd0411497d3ce943ca5deab184cebf5c1bbca97b4273f79bf210c78d7f4b6f5e9d68026a2 DIST parking_lot-0.11.2.crate 39869 BLAKE2B 67c555e87b68f5763a7790563fd8d542e126bcb77f91267f3b76c51fd73060a2c32dcb91f9d0db7ea772e555d91576c8d7ff48053a9c35fbd3b749d2459a660c SHA512 526b176363dffa59501c18324bb723a3846ef5b0ff9bf1d890e40ad10e7023284f7c8012eda87520eaa94515ee828d9ef52692a9ed590a55e176383d6d472f9e -DIST parking_lot-0.9.0.crate 35170 BLAKE2B 3de9050c5dbbc7a0b98a5cad05dd485142bb2a22e65216a20f6e87deb6d124b4502cdb3837dbdc992ff5ea62c67e1545bab269237988832d365fba265149d245 SHA512 148da5edc08da3b27bfcc94a1c0578f228ccfbdf7a7a6f3aa73ac34e290d795f4169553bc7c2b20227e095e8ac75446db51979b595e4d77fa7c76f743138a331 -DIST parking_lot_core-0.6.2.crate 30598 BLAKE2B 048e87b1a785da927afc368290c2e1dd762d98239d862a1aad4850d9498b91e8d64c399bfda0586c23f02fd8839723af1d5e2ef3e714cd932ac11a111b978543 SHA512 5de5d9cac290d7d6e6a3e1fbba2784cce8b4ed163481e1cc6ec36498884b5e3cf0225c718551289be164d1a4e192de390201a083560898e4a42a4068661c0689 -DIST parking_lot_core-0.8.3.crate 32147 BLAKE2B 5218cfbff706c4388fef31c885c7a5d53566005775a3c440c6a2890efb189a4edfe8e99f6499cac36038846628a915ac988c15e1ebab1b3a3ffb53a64631dc19 SHA512 1dba5a7e68ee007918fb210ff308f7382ed1c54d2fe6db36a8246453434246b71e6795db107c83ca39c2bddf5e4a27da7978a464b53d41e150e744d81e75b341 -DIST parking_lot_core-0.8.4.crate 32470 BLAKE2B 21f1d2957e260fd9083a235421c26506c3aa927b145bdb62159fa59f89d0fa2c1f42cf1dcecf5b1b3cdc884b07669e77568496c73ae39da001a1e3a64e5e4b70 SHA512 5fab382b3da08d2c450c278cdfb20cc2bd9e71855243bea2c852b2033a3c054146c5680eef503b8d3ea0ca445a303f5a07c171af893044c8ec49c6533335861d DIST parking_lot_core-0.8.5.crate 32466 BLAKE2B 44d9cb65444ea93fded7e216e3bdbe2256ba1611f5cb6f80d67a01e71d428b81e6c7fc73cb928e2125f34bac0abf4d1da39f622e813dff89b01fed7632308b7e SHA512 c4315df551748d1ae77655e4d9f8c90f911498856e5358009e9e02e410bb8085f006f369188b0753a298371ebd74a5c383d848b65e31b55f3462381308c83a00 -DIST parquet-4.1.0.crate 247800 BLAKE2B 5aa9b3687aa2277d45c9ef1149a2dd7ba6944f1eca1d5d1f07ed81d137f600d59ba60de608358de6a82422297567699625020e4fc0d560481a4c586836ae82cd SHA512 c85885e272015f2f60f7371e4d3a43614b6907e5d18d391c03081ebc35c13b473c6bce1f0a6ea70952c8c06955bbf0202358a29e483d39198abf5a27472cd486 -DIST parquet-format-2.6.1.crate 28978 BLAKE2B f8eec59f43cd749b24ea25c69272339bb8d886c0d351b51dad74e789d4397669fcac28ca7b65721db2658e98907a638528724ee69c83b1ede41fe4e8eaba66f4 SHA512 eb9b680c77af296eefd638aef4d41e38f7a2b5f30bc29858d6a0bcdda9ddd29885abb68093d6df59578bb7e55686ccb455d6dd74c07cdac95d07b9d2ff4093d4 DIST parquet-format-async-temp-0.2.0.crate 57798 BLAKE2B 3f58fe07a0053728c9419b1663fb3c2c721727918fbea4507e2f97ca1ae044b35c29c00d57188251ac799709f29657a4d7267a2b97f0f135bff18e5da35110f2 SHA512 7747f58fa298f9e1846d399d29c5edb654596140e28cc6d1355c46e2a72f0d3097e1ca8dcc917a71d80787002a666fe24d1a7cb176a8f8e353843acadb7c00e6 -DIST parquet2-0.4.0.crate 369787 BLAKE2B 5ab68c928bd11f920fc2f4f901a808b5945e31dee39e94773ab1c87ba373d9e4630748adcffe19283af6bc0e1d79f5fa18a598dbb731e3d24482d386123e6f21 SHA512 b16b67f927031e0b2141c5c3a6a90ef75c0a6e7564262ce14caf9f46e6cdab105565ac1cdb1de567491db9f420a56c6d9a91670f99e748756474cdc0d724a64f DIST parquet2-0.6.0.crate 371327 BLAKE2B 24b40f879640dd52bd723aecce30dfd9c3175d95be7028e574840d6dfc80345514a4f8462534f8b9c575a102b8955ac71e0002e0d1b1385d45b7ca9c6f280eea SHA512 983069877528cfbf1239745c2d3154c80a848ab086854e9eabb616301da083f55f2f99797a4ac469f483536ac5f990c57ee33f532af6451e664d508388a6a68b DIST parse-zoneinfo-0.3.0.crate 76590 BLAKE2B 441e96b120e9bb4f666ace28f2999974e3bc6786a8b834b07601b4a13506505a93d2647e446f1871bb072b8a1d1c2075de259319c7c1699244dc4e0b89392017 SHA512 e87eb0feca1feda438bb44d92268779053feec9b0823a336ffc593f508fb6e918add1023d4abcb23fa334efe8a07ab41143f5fe841b4f62ac000feb23c6d840e DIST path_abs-0.5.1.crate 31072 BLAKE2B 5f7041fc98db906183a42523ff6ed3ae23c1a8119c61860f71dc3b496845a9a0cd172151ba21c2cbb9933b0e2fa3e08ddf467700f4d2aef934d101e090b50fb9 SHA512 fd382fb0233b4029b9c6208b0b574c619cba8c3e6b6ffe39f63ff9e1cfd55240acd061d1aa82180987d72c8499802171f074eb35b9b0c60bc11cb48e248ee0ca -DIST pathdiff-0.2.0.crate 6189 BLAKE2B b04f2769452686f94651251f017ed03c264b4fbd471a1ea1c529d48d0a2899a491aaa7f757dc6e5338e4536fcb0641bac46a7c6bc99280bdea7f6b91c7231bfb SHA512 9527aa96b6f873014c216c6326e0d235f764951d244f5cf36e2eaa0b8182b25e7766a46967b5b0b936163c6ec4796a15e72540dd3faca8abfdcbeba651c21f71 DIST pathdiff-0.2.1.crate 7142 BLAKE2B 7f9a162c2add4acd69a81171fdb31aa9a67beb4e1be0fe93d76dc46b320729257240fca5d65dee38901f6b6ed1e536e3fff09c93cf3482859e6ba27e7206fc5b SHA512 a646f271ce81d5f6d4a8e0d98a2c802a8796a961cf8fe8177911e7757bdaecd8b156ff22046f1663a9efcd5fef1e6f000e5509d3949dbaeb494126b7e8a546b7 -DIST percent-encoding-1.0.1.crate 10057 BLAKE2B 6dbfea557cb7a604a99b6fa694ed24b1555fec34bfed54503d98fa4b285a91aab1405b7156bd00be0001b10bf15706878b7bfb4f73cc34560166e0e8f004d944 SHA512 6e884d7172e8cadcf6e39056c9f92b70252f56a8062af0e792179dcf990344f47553c04e2fce84841f20f5c28557d7768727f60c862b9876d29cabffd4ad19e9 DIST percent-encoding-2.1.0.crate 9748 BLAKE2B f3ff35ac683724b15e40c85e0fb8ececb07b61beeea82b7020f02d27df05a8a3535f157b3cd688533e414d6541de7de8640ef4756706d8061af0fec94ba04ab3 SHA512 98af4dfa7c6a3cf0d5aa929c436f9eb1ba1b576a944513f1284e6df2ad06be7cab9eba145d888d50af88f8c970bacc702b323041bec6d4fa1dc34095186c628a DIST peresil-0.3.0.crate 13573 BLAKE2B 6a5af428257c66db670a78bebf22b667b68633fd17e883ba288e089663a80c594dfe3e4b55043af3070deda8d1643e724743f5e840f7c7b7d0fa26409e00d589 SHA512 874580a62add05677f2573b7668612caee7e1653ae6263652fd495e5c871b8e71c66e20938a12348cb63450b3c88fbbe49d67b71868a8f970d82d94bd4425961 DIST pest-2.1.3.crate 77986 BLAKE2B 210638cdc2cc5e389d2248fbc06b8163dd5ddd77974a04d32f674e7f959acb3c5efc7f26100b6ceb7c346ee06a39db0e11ad5b793a1bc09dba679e6a5a4aa2f1 SHA512 08a36d4571cc0e912ae87e1f2116424b3d4139b653dd9a446fec8ff39cd9a691e8305c86cf75d227b5349197ada4ce79912ac25f0726b98a0642981ac4673c83 -DIST petgraph-0.5.1.crate 147173 BLAKE2B 3b74b2965ecdb37a82439111ad849581254698c8701d8d5bdb050f4a30cce05016511928443cf65dac394dd45584279a933435a77ef3c610a64c73cc5a68ff9a SHA512 c3d5f53b1a0900084b0693a6f3a849bb9b443b1b6fd1ad88bce8beb12ed1b45f2399b68db3366ba15f33c2d5682e052b733dbde76fb1b646b7bb1e660a38d8bd DIST phf-0.8.0.crate 3902 BLAKE2B 3f1d4f9c23cfa2a3a0b7e4f809ff00783d71bb4839b27246d5244e5aee61a211498715ed576f00749e8132a6af1cdf50b2eb27d2f49896f006212981886a0e44 SHA512 a3013c4106ba72aa3cf22bd3f903eeacc24ac7cc47aad791bc5e9a63e1aff928a537399b6a86b0346c5eb37979ec01b404807e622e79a0a70a0e01e63c07a47f DIST phf_codegen-0.8.0.crate 3192 BLAKE2B 65c733fb896fa034c97482d122a2ed4c39d763cbb65ee48a229cdb320910aefeef125674bb1305a4a12f5fccefd71f859e33cb26c3e6be09ed8f776f9ff9b463 SHA512 6649779b50683b1b83c89da921ee52963fd517660540148e9ba4b59f9639c705e08400c4da972880ed161564816c7ad45704d6bd51d1429717137de8f46cb941 DIST phf_generator-0.8.0.crate 7604 BLAKE2B 936c9ad95d2d5b6b4bc97dac9bcf99813462950f6280d9cbb8c8ae9253d3197f25b8173c202cdd51c4a2d3f422ca1d6f5c9055e7a87e45b2dc5fbe5aa6aa45ce SHA512 de045f47567defd43fe32fc62191a9a892e5a478e1a84b853cff3005e94967ded68e5770eacb43f2e97e58b8f4283327a38a3bdbd55e1d5c708dab601ea66270 DIST phf_macros-0.8.0.crate 5814 BLAKE2B 39f40a52c177da227b3bf54d0fe4f05a2d6c382183ab0400d74a06d34fb3f28a23342496f6e0d48d25a792bb848bd9ed740a10d37c39969ad79c929fdc98d743 SHA512 ba56661aa92393fad7712f774fe4f0b7bf25d483aa7d4c4617409e655e9448b39780a904b8865293e16f8e63d62440aa0d653fe231beda4f58194de455598170 DIST phf_shared-0.8.0.crate 2860 BLAKE2B db48d88ad6e7aa6bdb2f6750ab66063a55d005b4f5e92ededb59da1f1fa9b1296d30f87d32d036f08e3a74111ea4d8287e8eb6c86d0edd76b3ceb38f223696db SHA512 6ad7ac732b7cc42e7e179329fbfee7074d26652d73eb4f2b97224491d978ad9b14c66e5a539c96b84c70124ac44cfc009bf963a42c438d028bd9737b99f463f3 -DIST pin-project-0.4.28.crate 47895 BLAKE2B 9833ebaed73495bbc730334186f54880cd804a9a25027a98b1089cb23831b3a197cdea3cfee47fe26ff30536c258506cfb5add0cce99813be6d2133d48c290c3 SHA512 e82a511bce7795d32c691ec61ed1746f8b7ca5913d2b46e6959ceb4071a633b2754ed6bec52b8f7e8320026614ba9a276186ace120e899fbaa5c19704a670492 -DIST pin-project-1.0.7.crate 54847 BLAKE2B d902d2bd9008ffb0f254adbf0fff3c55614abec67db5a5814707f00ce50690e47890c2ab89ac488e12661c59db7692502eb7003cffafb4a57a66959a01f139b4 SHA512 e3903b508abb9a1412d8fe31f04d01c2bf634c770b1d6f697da1ec4eaee023ed95d5488e1fb4f3aca62afe145b52730c40781eb6d52deb55d5f9820503a92f86 -DIST pin-project-internal-0.4.28.crate 29989 BLAKE2B 8d651639b8a4766723d8d9c528e0d54115db833c1eb9f20d08d11114cac87bca58acf32e3003698e2b53491aa1090f2294030ea7409373536677794b64969be5 SHA512 35a41e7ed1acf30f8cf4681b214bd7a5931fa5805402b60239d899cb5135cd872aa95d942beb3e33c9884cc139f4119e7aef3dc676b8da7252653e71fe9ce8aa -DIST pin-project-internal-1.0.7.crate 27884 BLAKE2B 52ef94e6c2fb44ee36d7d5bcda09fe65dc69386f6df6e4573674c6e796ce506ba672c1421603ca7501a7b3747f7277cd8f4e9c121e4068d5e857232de08cb1be SHA512 14d96d6cc73c7b86151f206383d24e1c7d79d70f586ff59f1bc47fccf271bef4a0561eecf86f7b03cd14520040f80ec00c266df79b2eeb04506582d80cd2ef97 -DIST pin-project-lite-0.1.12.crate 16854 BLAKE2B 48ecd648fd7a7694a48144e9e3f05a3e2878e52a5e5ecf2c6cc2cdc556957282bbaa3bb04f6418cbcfb254cceab5a0bca92173cf293db5cfc9c9589ec1597543 SHA512 4285eb45548b1827b54890162c68698e50d3747eba7b4c1c75a8104124846bc745a40d9acce18115bd06993d7d8f11232168e5e6f4159d3d273ff800706e5bc4 -DIST pin-project-lite-0.2.6.crate 25494 BLAKE2B 851a8388c3837d8516d98b561a3ae95b584e7b0e56cb04a300b45e5a97b4c81bde991a9625f42a596244f3f8638c26d6ddf46cdc7697aa24c823e991d0c107db SHA512 21b298896a10c2b21e481f5769a9ce557ec376819681599699f0881769d2dd378bd0bfdf7c43cc16eb521c48c67207e63373622fff84ff26da88703a57461461 DIST pin-project-lite-0.2.7.crate 27212 BLAKE2B 71997c66fe24bbded0030acf9d460c8ecdd07f7a047007413ad5daee06ade30ce487e7f921d610f9e0bc7aa036391f6c595493d9b7d95c17e9195f5a2b23441a SHA512 c948201981269f6f54da069470c56c5b9c4c6f52e349dc7970ad828d412facfbb66a09745c0565b4320fbfd1aa7983f3664604f7ade37a30cf25ce253afe8749 DIST pin-utils-0.1.0.crate 7580 BLAKE2B 457e1287202f16d1873b24bf4f1de1828300128c4ba3131758e64f9784d36d47365f22d85493c3a85d854f0d8dbb4c6cef3a0f5b064014dc03943e58b7ba9178 SHA512 828422b8440cc82ac6b0743e0112fa7540d437aed457564999092b1462cd7672cd6b1f0201b67075431aeedd3d9c5127468a3dd028744109944f7f023c82fd70 -DIST pkg-config-0.3.19.crate 15451 BLAKE2B dc23b5ef12719b4b3d2fc5c93c087399ba954a5e127be91b26619466d5d7422e71684d02905304dca65273d69b66338d94c0642e3810a14df845ef507ddc0bfb SHA512 42bc13c4e39c8f71690db527d815884acdfd2ccf5fbfea700c6ed60257e852cdcb1c443e7774409e51da53612b0ff0aa165554b99fd0cba973f94a8df52982d9 DIST pkg-config-0.3.22.crate 16145 BLAKE2B 346b67a2000eb91ea8867e5a861c87a7728909d6b20dd00c9b4571d89e5308a108906fc80fe3a2d014fff0411d9bb30fcde224abf8f4aaf37164107861083bdc SHA512 435b9d99a1975692db3efb3bd0e92899c43ba4003aecc4859dc71cd2175521973d5cbe1be06fc3b40af2a7bbe1b0a845be73586c0cd96dc218bc4fc7dce11107 -DIST plist-1.1.0.crate 40173 BLAKE2B dc689529f09dc5370e4e98129bed5580a7d8dcc8b588d4acd66aea9c13d49ec67f449c26dbeb300016585f707267c03fbcb1310b033f423d3a03ea93026bb8f5 SHA512 11617001327b310978bfc114cb4549586af2f25d03563adcaba062d78f34ef2ccf72b4779877f206a06d0a7aed62253fa853c4544285542b6ee88331845c28c9 -DIST plist-1.2.1.crate 41144 BLAKE2B f9a2960ce8e1f53af482759863e5f9121c0edf6c68c272981b10f20429b60d1351898642b31e27b7dd3445d0f208c54860dc6822fadd946e4f11b48b2fe1c472 SHA512 0e7217e40e16a97637902732c0846c46144c042094f2482fe46890e660e9c41f09f5d57c9606e3374c6d74829f982ead460515a2221f5eb196a49bcb731ea12c DIST plist-1.3.1.crate 44772 BLAKE2B 2e2b869b4543d06830b54a873d6d5da572502ff0409aa723a5beda5121b0ea8c8aa3656aa70299ef32532f948ed82ccde05f4bbcc9cec6a7288e7fc79eb27536 SHA512 4cf962af14b4218502eb4aae5507d93c58c4a0b716f923c3f0e53e37225940c5ab6847d7d9ad5004f77dc2dbbd28f73412cc114fd231e515f23a4ade3f969e86 -DIST png-0.15.3.crate 42213 BLAKE2B 36b53972395f0656be002d324e91e683b615288f38399df03310cb68485cde5720a8a144231303039e18ebc6dd64aaa7f7f8baaa7cff49d7ce3ac6fae43aaadd SHA512 a1a440b83e230f6f49f481aa70e703d93f518f5a608463600d671c8ebd44d978aad36e104227807fe3811f0e1c225d90db616a4ccad819770f85423e2fe8e004 DIST png-0.16.8.crate 52598 BLAKE2B 03f706591182a89b0566f8a793163372a4db3e7a742f3aadf06fda93068c42a4351722796ddbbb013fdc1be5a88dc02debae50ab1cc3ac81d72d07a814b456ce SHA512 df96f8580d8cc11df54788ff64ab3269b14369a467d7c29964a5b19add5e7a82258e6bfda40eedf135bffa98a2a86afbb725cd085cf37f6c433abf9a7485edee -DIST polars-0.13.4.crate 10226 BLAKE2B a1cb1a01f0e8e5b5bb0e6267dc7c85e17fd6beb4cf137ee1417307f4563282a8d45079374982002265246eb707db848611aa34e1f34e991d5c20932e9032aad5 SHA512 59e884d438732cd449b8971100410edfc39eb2a69be53ad2cc0eca570d7b76c9cdc7c340935bd913e0406eaf42aef5fdc8af771c914e52875b4c01275710c846 -DIST polars-0.16.0.crate 17031 BLAKE2B cc615c0e784673147ebc76ec2b9e03a73165f2d4c4f7bf1b2d1c81e44f19d1d04107bd7fe8988283bbb355f4d754ec7a08ef860c77762128d4278bcd17f940fa SHA512 9e53c4dad1f2e10b692ed57c715ad18eccbdf66fc103a180587b3e3834447e611034c3e0c079c3c81c3da0a03b72e6570b5a62bd27734b937ba8246ed9a1c398 DIST polars-0.17.0.crate 16837 BLAKE2B 213259a94d12ca5e6955b51f28f854f558261981284915270d865b55f23479be09cd71350888fbef6be364df94317f5fb08d526e9ccabf43dd829d2273cca6c4 SHA512 a04397a7d0cc30d06062d3a3cdd6d1ce246fb1819fd4eebcf160e2b30908db938734eff17dd6fa99634f3b255cd5ad266632d8df690bb9dd8e4606bad408bbfd -DIST polars-arrow-0.13.4.crate 10913 BLAKE2B a1833dea6fe32f090460a355b62b29c0b1f49e1083d81261f0a02b69c612a174a5c3b146bd343e742b28456074f2b080749a3ed70e878501531e64e08f7deee8 SHA512 943f78753acabec60974e18fb50a71e6fbc841fc24befbace3d0dd01186bfec06793a5e3989b0c8b7f4d73931944ec25ffc6866c3bf6bffcbd4f95c2cf6d4db0 -DIST polars-arrow-0.16.0.crate 8460 BLAKE2B add7c637d361d0c54ed9ceb793cd453f8f5ff181b3981a835be9a775b7889a0f28962ab5eee422145627f16a0b6f1f31ae8ca569040f3657aa23a25216f8543b SHA512 3de99243ac3851e9cb3c40537d03c24a0590c147f0cad40c17e32eea99fdcf93f25d16b19298f7180f1facb1e73d8dd6cfd7b745a2eb5626778365f00dd966a0 DIST polars-arrow-0.17.0.crate 14341 BLAKE2B 74804f21e6ffa5d06869c2f5fa4989343cafc948e02d259925dc789f19055a20ef6814e82320444893d7c23f1acc1228376c1f96a09ed42348f985f9a30dd82b SHA512 11ee2b594f8d95c860daade0f1daf1af531cec074bc15879a530c45a19c758236f9acd1dc70909647e400239aa54e8c9451c899adf472a1f6923e7369352b8e1 -DIST polars-core-0.13.4.crate 167456 BLAKE2B ac886d56643abf26d917448077855ac4354c067d3928960a52ce20d9ec79d84e3ea717baff0fdc62c8634d2a59aa1bc02ffed3ec8b7b22e63531e73c0655bbe5 SHA512 1fa66110bf1979698a43ad140b83d8c3a15ad2769c5840e5429c515cc9bc26f98a7cd8dc4a1a35fb52f8b9c71ad80440da9d1f6be4d87bbf76cd7e7ad2d3a4fd -DIST polars-core-0.16.0.crate 207304 BLAKE2B 6d933aa6530e154dc65815aa666a1273289b561d454a8af11bd3ec04b5bf125e0a8572e1eba294b24d74a74fead1ea1cbce0863b5eb69141ba79b60d978f19df SHA512 8d603cdd7b55d8f81a77682ed658c08e9d01a0c75ba5cfc5ab9973813abc2c0501a6e88c4c3e95efaab549b7f63df2deb05064b77bcbfb9a6d91db19e4d2de39 DIST polars-core-0.17.0.crate 217417 BLAKE2B 5218c2f25879fdfbc1d437d0ad93136c9e5bb958c69962ba1d382fa696ef16f3850ca1f8808adb4660d06209483c03c65f81ae60f1e3431f243c56c75cf71376 SHA512 a9e250514ff8f470fc7f988847bf3e1b6748afaf0bf9753df5f988c12ced038270d2bfc19c9e013d5ce6f59b232f0f563b4938a6305ad3243ef33e50d1e292c8 -DIST polars-io-0.13.4.crate 24450 BLAKE2B f0da00e40d3a3ef739777f69eb0eebc5ee544200468b4bc77aa87f296d78d51c8e1710ebb916976a70f6d0a2c719bd01d3f65ed744a5f5e486328d6f7dd9798e SHA512 c5b9e8d7f3d2f93635a21c4c1fa394c0329e552c2407cb2eeed070496d41f865d1649895128ed8901e586f07f809b77999d88143260185f163795149f8824d9f -DIST polars-io-0.16.0.crate 30075 BLAKE2B bab0864593ea57303df557703f648375f706197765151804f742faa4eb84a9e2800e38b0a82327965adcaf6cb90b20ef9e0037730021d5eda6632fb779a5310d SHA512 919ce02a669c49aacfcf9eecc7bdf13a633edada64c75dcf931c5c0d92243d78fc2674631b4df3307334de5adfaef501401debaa89ad7c55680cb5d3a2d518f9 DIST polars-io-0.17.0.crate 32549 BLAKE2B 2481534139499a60c33fdec489d183ed0dc3c73d60b3c4ebd3d0193708fedc49184936efd8d4c821db618e3dbd52106331c0ab2b01348b3bce403abc760884d2 SHA512 8cbbcec8dcc82d0902e2a0d92e71325ec5e66a5b6038ab5231dc92285b3e852cafa46dace5b057a7b15a4d2caf95d6644c1b20b034579dbd0381d56f9d76f099 -DIST polars-lazy-0.13.4.crate 81950 BLAKE2B b9859fd52b098643dbaa80b7e78d8999821d6d05bc59b576d9c97ab993606a3ebe55ea9585b7d7a3a7d1a2930ace60ef13a73b2e5c460b9f22bdf90c93588ed8 SHA512 32561665addf1c0639d3207f9984c980074f6e88e649607aecda627952ca7d3849578f8eb16f355dbd9b388c04803b61d1698dbfadcff7353655f40b46a1924d -DIST polars-lazy-0.16.0.crate 100639 BLAKE2B 9528effe40ecc583e2b4c884c1dffd3e0b9ad262c9a8a2d15f64d71ee5813a730012897892526ee66e932932b023c50d12c15fe6e25611b7a621cd5f007b3206 SHA512 49f4311d28088f1b5739b49bd31c7995c68a685fef82ed6cdcc78bfeff14044ab3b73e598b7ed90cd9140b0ae3bb5eb54ba0de6335692a9705854bbecfecc3c8 DIST polars-lazy-0.17.0.crate 105965 BLAKE2B 04536e584bedba0a96649a32e75192512a53596771a2c3a5c4ae8424c00e54db4ee3c7965e3f07b94900fd0821dc455b6eb100378c5b2e423920749e4e63b1e0 SHA512 be01c7af99ed27796650f21e3de5ec88e62e7387500950c1d39bd760bab546e2f94678db98e13ed09b5df8fd5a75e6367503171c5dc0db0befd67ed62dd9a3f4 -DIST polling-2.0.3.crate 17603 BLAKE2B 69480ec1eb2070573f67d9f21e8b2f62ebe257d7234a9f51a111eb9cac26aed7190c136aa170564d228be707068d814a1c407e77bbc7d5b643e834c9207032f1 SHA512 c6c621bf5fa47b4626c70fd01942fc9d801c11adc6374a905e1195e9e57618e5678879a9db56504202bcd558f96cd038b0fe54e142d0b65d2013550561f0bbab -DIST polyval-0.4.5.crate 15656 BLAKE2B db91a1df7c25b1d6c500c469841cf702410313060ddb763f8799981a33e535a07e2e9057be2d55efd2351ed7f82dd22d3b4d0a1b274e2cfefe644123b54ee486 SHA512 416c46634688690cee8a67d8f66ff07db5241c6bcd81340cfb9c7cdb6614574b2b0d76918a02dc7e3356bed39beb1cfef8408cfa9249ee86576d27d570c388a0 -DIST ppv-lite86-0.2.10.crate 20915 BLAKE2B 83a075381c24b2b89f5266929f5672ce051c3781c1a199252738dadbf471618c8b87452ce84e1cd87a9eac11b44107002894f544091210cc7e77bf52c045288e SHA512 c9941052e504b9b310024064026e4b1d540dd877705ef450a833d9ff6dee70ba874cdad68c46381a71d5b54482cd80b3dbb8e0c225758fd339069031a55195f1 DIST ppv-lite86-0.2.15.crate 22002 BLAKE2B 3f967f112ba799f18a3f897c944ea656994abdc7c912868023de90d3885a87d9544159c44b6aeeffd83c1fe0172e326bed4044c2d199ca899da4f8420629736c SHA512 6dac73153d244cca97ea00e429f783a7d03b48f10ee450cf6f8d77581010b28be5048f53322b0c888b425b5085f440b6ea90599ea00c55c641de6e29da42f0b3 DIST precomputed-hash-0.1.1.crate 1640 BLAKE2B 64a37ef3edd317f771e833bb394f7c19bc9b8c844156c831d2b550692c7e2e36bce44ecf18dd9f2d0f0511346eaf0d2a0ebe792fc288ca0e94a93933f2051846 SHA512 a118a98286a47e2f0cf35d2678d0325c18b9b7d5bdf40ceadc16483b282307fd1498434d5bdfa25477a4f420d97c34d786e42e9fa70431b788b4b8fde9718e05 DIST pretty-0.5.2.crate 12234 BLAKE2B 85c37bd8a0193a7a87739bc262ed447362236eec270324d484feaf50700ab29e1386b4dc06a23231c872b2918b913a4b6a4db3d06addd456ee76c62f7bf9136d SHA512 2d1f9ebcb2d95e766e82d6a0e084fd073471f8330e16515d05bda17b058b2691c0d3e736f8bccadae4602a80b49e1a1b628d32349047cd4350dc103c6c8b60ee DIST pretty_env_logger-0.4.0.crate 8690 BLAKE2B bd6cff07f3a9ad860378cd0bc7d44c1fe9ea346aba2970adfc1f23e6fbd3613f11cf8fb19a401f006ea69e8f05f687636d0ef870c25ccdc97c8b60505e2e0447 SHA512 770de8e256cedfb21fc89cc1ecc564ae1a8e67263705b4234b91867996c4db77ec703b70a46aef6b018c6ce09aab6a232fd1eedf8324c39f119a6807daa534f9 -DIST prettytable-rs-0.8.0.crate 29000 BLAKE2B b214efcb12d0fcad44763b75e89bcf21923cb3a09764314cbbdb7f8d7fc585550c86ce77e1d97b1cad65f5e72554dd07e354c97aadb415b87464e6b4868bbbe6 SHA512 67a4e7eec303b44e084d80f66ed3c07450fae3316c824da1043a7e348c6895cb30807dee83296e2143405fce8360d77117c8755e8450bac0a4981b6ed102ed35 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-macro-hack-0.5.19.crate 15556 BLAKE2B 98c22fc3e5f5fa8b6f44d15de42b6ffcc82ba3f98a07ffa48bcbc5d3abcfca6af136c5d0d8c7f1ca34261ed8f8c9c17a394231f97a4c342c81aa7f8b9e74b203 SHA512 9e4cbec41056438287f5b23086264c86e2f0cdc193064006556736377b2954229de13a585149b9995002c9aee3334ee2a80ae4afdcc96cabe7ed2bf718476952 -DIST proc-macro-nested-0.1.7.crate 6495 BLAKE2B c27ad92b57837ab1ce220958846253ed29de12ee1ed849948e5202913371d877bb648e6880ac3e6619b8d48342e1fe105df56a0abda1b13bd62262bea4c85fff SHA512 dc5d898c6d5588d279aa0852193105bbb3824798a05875e2181c66da8c3849fcb32189d9b213cad09054242aa4ae9cb602f9c2d1b5e7302963bac244bbaa27c2 -DIST proc-macro2-1.0.26.crate 38233 BLAKE2B e44a5d98fbf75130c0eeb8fad6d025ce66fe41cc5ef882f418bd8c9e5d228d712020e309dad68e2f862e5f9216a1103fd6e69953e17c213166467b335f604802 SHA512 e6d39cc0d5ec644e3fb424347bde0a82a8ce8549745a1a827bf4dc21f6248471935b5499c3b6d1b7a129f0ddc560754254c528ac39fb1fce2ec3bd9520afc3e2 -DIST proc-macro2-1.0.28.crate 38732 BLAKE2B f2d4765789d03d5d26c9de7e1283ce6e4086ca640d95a36649f8fdfe96533ad768b2a8ba56726e0462ba4fcd8f332fc455307987e0b7c79a5e96f2e75a641162 SHA512 2a4e34ab2bb692c3661db40ebc6d22f3dbcbc30c2f4d88e1a7f022f8522e943ffe2a1c9b92411c7e04941dc0156cb365e0de953fa45d8710e39b660ee9028741 DIST proc-macro2-1.0.32.crate 41003 BLAKE2B e8da70dae2ee75aa2c344602e55cbbf9ee5316ff6182c870b64f9fe4b33e60b9fb1a22137acf357615331f2e4079ab1e8964a2cb0234fa439d1b3d8d514c2eff SHA512 8631714c226c8a6fb330a529f42214216057eca85cfa63afd3de8600d2638e2be45efa54155ce73625883bcbabc2c56cb865ad9dda04e2c7092d955caed48abf -DIST ptree-0.3.2.crate 85430 BLAKE2B 7b4186fb322bfc0ddcd7c53a3427b7cb9b055c0f00d368f42166e17953d0d7adaa2737ef318865205f022d90110b253f24e1f889d19e97d95c34069ad605082d SHA512 83e6843fc0388b4b7e1005949d2b339ecb5aaa87bad433ece6055a68f2822e1dec8242d7567ccfc21b2790f1fdd42318b10e3e62fe401530a794dd0dc0ada5cf DIST ptree-0.4.0.crate 84829 BLAKE2B f54dbf3de98372873e6f969073487069a8e1205e6a267d280e26d73ab034017c5efc89bdef0bc812fdb70990355c41d84fe5549183957831437b4eac09bfb806 SHA512 23205b431f49e745852356f79d65fe2e54d416b880bb44155ad4e5d1148136233844a91771a2c614b35656fb14e32506fc987667b5baee1e933207fa36649d07 -DIST query_interface-0.3.5.crate 6712 BLAKE2B 1208cc0883516cbf92be3d43a712d3ed472c5d855a9588e7efeea7f294ae41843f6e7adf722566e53ce50de65ecdf55f3b8f748e9ac5e6bca4f92502a3b46b8e SHA512 217dcc75b34a1db07b66e0b58f9428a5ab88f2f940e0907d349b5cd4da4e43605377a9bc47c34758497e54c7e02dbddf650c7834c3aa41e59b4fc75e6cd78c3a DIST quick-error-1.2.3.crate 15066 BLAKE2B 1c61525d383f3588c1c5017f016f60b484bbf2035e7f63c553bd9a49b638ab0c6106ac3676a41072b24da4e13dde78706e0f99fd1ec9ee329d5be81d45a85866 SHA512 f8aaf9024d20ccd42b706c756eed8320aee339f8776392b47a41cc82ca06b03df1a5b1f00854cea96689c5af261b4d8c5d2b1a242d10f2755e7e33dc41be35b9 -DIST quick-xml-0.12.4.crate 76509 BLAKE2B 5f9d435aeb0faeace4749cb800076a5da79cbe7c871df99887428949babb9ea908e1d2956c31606cbed9922caac96c3fa916f727473569903e284ecfb67ce406 SHA512 96b83c1dce09e75377355d5391db9a8fbe1d2053ff250b885084497f7b9fb524cf1a7d8b7b0c2d3388bbe8114ba44000f3aeffdc476b56edfbf292da06dbdb46 DIST quick-xml-0.19.0.crate 109155 BLAKE2B 7da470944f2ae138d85e3185df97e76cedbde8a1f93c7fb76f861e1a4a73ce31a11fa86bdc7de0726cff143d82f55b0291b3eb0fe028769924dcaab45de42c9b SHA512 4806683fd622671c801d66f83726e677b4cfe85632e10501d8e876b78c2271fc5786341fb778a890d073ebe384fc844b82bc3575cbc8c5bbc92ca58953674034 -DIST quick-xml-0.21.0.crate 129013 BLAKE2B 018035f98ca4ba93e2c4bc7a59186f07340df66c6e6b6fc2f8228d3b1b9dd79b2b573a3a9965020715cc5b15bc207cd8068d82aaeda9277ac7bf2c89bd5396ee SHA512 b51b6754ba5481db59e412a3e0a47fc17067437e36d3b0ec4a90a3a9f181572ad24a7ef93b1201101dd4fe3705a54efdc105aa94109b248d0108f6aa8f365492 DIST quick-xml-0.22.0.crate 132066 BLAKE2B 1c1d71fdaa022e430e6265530f3e40924c13457fe422e4355eedfcb5ebe8c75d0205f73ffea0968d8196d74804d7d0fbf61954852c98831d510af6c45dcf6923 SHA512 15e56fafc84e62b219977c5ab0f07a021bb71216d7cbb673a7ffec4ec6bda36f97d7b7034751b0b7d745df7c17c1a591a281cf2c97aa4fada7327979711ae3dd DIST quickcheck-1.0.3.crate 28069 BLAKE2B 5f0ddc8e22fec55e879745a95024abaa03d7bcfc6453286eec072663b36a5d6ae247b3c1622c4743e1ca9b7c4bb21da0d095aa5247f32b0bedc393f92cda6bc0 SHA512 07dd707c9d3fd0b9cedbba545bc8b4fc1ca2770d169e444f8c96f8306d3161a6a3e9189cc5d0d6b3dc4221f7dbc05887dfe2dedc914f88d5e69ab2b94179185a DIST quickcheck_macros-1.0.0.crate 5275 BLAKE2B 1681fbc5a476c627da442d601d9f24dfeaa147dbad7c8d6989ad73cf5a204963c29b2b5bf68513ba74c322f74ef5ceea92594953e9034921a2c8132150252779 SHA512 f7de86f76a53fc36063f10f5405979677a2e48a96d13c439a4aa98e89ec7f3c3cae324b8dd789a5236630110ac9a1763f28361442cca08d1a1ef458c7bfadd55 -DIST quote-0.3.15.crate 12041 BLAKE2B c5796b464539b018351b41b5e2287398681ccb2ca76f46178b4f310e61a8184afe9ea2b8dd7638f27bf5bf37f60458895497e51c82b31326abf6feb4f69404d7 SHA512 2e5dbe725c0f76a81c6624181b43b60b95dceac208e2babaad3fa6d1487794805169e2ffd967659e4bb4e1abebe96505be5a1007c514d10f2a63ef282d699ea7 DIST quote-1.0.10.crate 29960 BLAKE2B fbd4e3e0e0f452e64b30399fdfaef318cead505d05f0c61db61a7aa3cd5a3300220b4ba2656603f88bc0b535390ab4d0ec101a919ace1d442a3e979f08e8d48f SHA512 08613679b564ea7d750117d3a2907ba957d5d595bdfa8016344f99a232c72c6b08acb882dff45c34c9e4c8f93f879fb308b36125572722aac04fbc6bb0c666f0 -DIST quote-1.0.9.crate 25042 BLAKE2B 26ef31e89fd2f0cc21ff65f8072f30c7977ac634d2536cf9845a0894d6659f62a96cd0a6ee48f7706036c2c1b898ef8c9167bd62714ad0c9cba4fb02f30922af SHA512 dd6cdaea183b85400531ef01e56657edbec0d8f7c27898c1e591b72dff755fa5875b33ca320bd65be0e9aecfc6a61ec119a4bd1291e9f2057fca642ab5b198c8 DIST radix_trie-0.2.1.crate 251366 BLAKE2B 14b50e45eacbc5b42cdde8a4f8e8642adfdfa3cc569c3fe0e3aa1fdab901713b3929d706dc0aede1b679762fb8fb1af345efca15befc9234322db434c8a3923c SHA512 f6f54511860b6b878c83de4455bdbd71289599dba93234d5c7469342f3401cba99a9ea6bca2d32df2e31ba657f40e42e7d5fd7de66786ddd2814e22fe867f9d8 -DIST rand-0.3.23.crate 11318 BLAKE2B 5ad9b187fcdfc515c606a73bd1e9aa3215e367659c35a013c9d4d0f80f9832331dfb971ca370a627c0a2afe2b8860514740e00b1d7572e221a557b5570cff6ff SHA512 a4f46fb7dfe39677dfc112eeb56fb3c28cec4cdaaf95f336f2a494f0b2b30fdf22ceb9ea956f90e13c7ffe711a68aef9fc1a80d9a911d93221ae263c243fb2c3 -DIST rand-0.4.6.crate 76401 BLAKE2B 5593ad2d7fb8214d917e2eb734f5eee548f48fd699c9fccc0de9c0c6ee49803a426492a25fda2ffcf844169e2bca00709d4dcd9ceede72a4667ec431f5502fda SHA512 a91c6da7188b426bf9cb832892ee2af87c4cd65fad505c34e9c63343da71efe8c0c67b75c405dca5345317b7940d1d0fc0b20be85afd6b3089203e5698d86f0a DIST rand-0.7.3.crate 112246 BLAKE2B ecc7c1bd70ac874c03bd8b7faa3016bb2d5ee5c19603280a12a45a81598f706e445971ee081e6ca410ab6f0f5f7a06d9315848cd556a2d8522a82024f6ff91e4 SHA512 f9b68ef9446f1ca2c8092c50990f15c1b4cb5529eeeac4df8d69755e0b7253c663c587775e7cb0a7298c31edb444975dda34926759306541f6d43d0d3cf57b7e -DIST rand-0.8.3.crate 84493 BLAKE2B 5db817304b94424cdc77b60c9a3aa451abfbe315d97e311776ff9cf968585ca98f24994df3fa708e3896d36ba66d5f8dc795a652d2c568edc6be355baa7b4d69 SHA512 fd61348a8c3187881473c8764238d2388da3419e82174f2877cda51a7cd136106b2c7f0dea6b914f120b929c1db323529fa161465156661ffd19eef9b2737e4d DIST rand-0.8.4.crate 87406 BLAKE2B c09358416d2425a8243b623346fe71bf6f03fddab1a23fc752f4303ba7c241b3606629e4edf0ea720785bda0bca534acd675c2de079b78eac3df24a1ad6ba654 SHA512 77ae0e988e31e12f7d3f2c40814f930eecbc94c4aced827c337be78eeeabf39fde2dc5c4fda059afdc01285ff4afe30393c32694377de004feff16207606558e DIST rand_chacha-0.2.2.crate 13267 BLAKE2B 7908867ceac98243ade22e1b38f1903fe0249324484d91c948a5058a1e099e5213f325c5ba3400898c8319158ed69f4ed064164f235470856a8191bd990d5a10 SHA512 1e2117442e4ffdd834dcbf0ea1829e73202c0ff9041d5969d81a59330242145f2753f2a56de2fdbff65f26cf0d227c7d08b2094ab2f946b764aef88106a6ac84 -DIST rand_chacha-0.3.0.crate 13920 BLAKE2B 9e329831b46c4d6cf2bc6755024588df907f87145adf35e156bc1c2b7068b583b652f90ba35094a1bba26e0449d32d2877fa52cea012ab50429ee526264caf7c SHA512 631f32a5b0bb42ca87ee8381795402f8c5a80202700b786655537f981c0e210e41eaa42ad4247a25bce1260c29caa8ba3b03f92e520ac331403fd8e76fbbfe93 DIST rand_chacha-0.3.1.crate 15251 BLAKE2B 645771b2c3e274f085e0837a20306b1d59f6e9032fba8eb38a6d1b30180d15e2f89ffa2a162bf6358da41e030098242d81e71dab4321980d0a4f6ddfc2974ce3 SHA512 8198c580b1b9b0429758ffa49cd8138fa3ce724f0dcf73c767ea7e55611d6a2e4c7cad9950896510def500ce4062b594386c947ac3d89425b4e5c9b04d0b8075 -DIST rand_core-0.3.1.crate 15483 BLAKE2B 2e09b3b3306514c29bd7588498e79be7353de656d8cdeeb4dfc6a1ad092f15a861c2ac20591ff71f7f60d986de9a09c860de4a9f06799f04e736b31bc70a5fbe SHA512 5a7ae601124502bede760fd3179c2b28059ebc3b5983bfcb6b8fa62fb58df95cedc1aeb2734e792d894dfa4620801c13c29702f9cbee64243121575d4b6b9114 -DIST rand_core-0.4.2.crate 20243 BLAKE2B 22fee5e44127eee047ad8abcd9dd828befd0feee77ee9a0bcd4dd42174b1e650f2a19f1f3b39fde937e58c17afaabf7231e2aabf214c2eb22edf3f85b73f6eec SHA512 f7ae3b690e2cc1fbf2707ee04b752bc5472433f737ab581f9872f7c5660966bc6be45f0c5d2cd8771105df6d4a9d206c55f5cc6ffc1693b46e1ae03a2883b028 DIST rand_core-0.5.1.crate 21116 BLAKE2B e74791f941a79971f2741172d489d546373c9abcb0dfbffcb7b97b858ec800b2e0c97df4ac636f3aa1b8dd6c14685edf317336d577f31b5c6cb7d89a157e547a SHA512 4f7500b35e165e6c817fdd67a50745d5497d24e554bb554705097e37258751e8755c4d6b8a69fcb5e1977708ba78620bc35d640e4e018fcd4e88d9dbdbebdcbf -DIST rand_core-0.6.2.crate 21708 BLAKE2B 745aab7160c4d9b52e7d0ab0fab257bcead4dfca1242d820d760bade713822b7b8e283852a2e337a6d33b40ddbd95f86c36bfc4c418ef0ded86f59ae4a4df56a SHA512 f1f21dd6306d6f4b5666d1ef4994d0d68f10a7a94fe628a5aa8ba28ae0376cb34b7c091f82e2db8f2555eec4f35088f6c4df42ed84de7467d5780e284b397115 DIST rand_core-0.6.3.crate 21938 BLAKE2B 7c73e2da6d423c68dbbca31f6528bdb3f42fa39b30d0951ca7058e05ce16ef09ef5e047697b33ec17720314f934512c0907aeb892df93d63abd8b63eda2b50a7 SHA512 0fc31f96ca8ebba8c179367de01458e909265e1d627ec0c5620be7c8e83d2f9570471d6ec2cb2bc4bc531505b02fc31f1165708cc1357906791c87123b06ee87 DIST rand_distr-0.3.0.crate 44235 BLAKE2B 0f06bf0b553a6c6dd4b2eb211dd58accd00b6d34c88fd34d39a5e2c7c2ce738df6a7ef0ca0ea951ea2150f1c12dfb1ee8bcc00220e81fd8b29959d964a2a5497 SHA512 ae13ed5ec04f93188ddca82fb3d38e02124df46ab3af6d1069feb3c44d2966b89054c09af045727b96fa717c4c81c397d6d96742a8bcc292540b1dfeb9f38550 DIST rand_hc-0.2.0.crate 11670 BLAKE2B 55fd048f2524cecd4f0e17927a81111e3070a8cc6a5b0234a46445400ad5527194edf8c91fb5ad6538f4958d53044ab02424f61a38adb2931e2cb7568c458ee8 SHA512 bca185612bed5cee4da76fb68fe854105da276f5bf2da464e596d586b925df798cc692ed881e276ab77c36b4b0551930966c93656be122ad05899d87853533b0 -DIST rand_hc-0.3.0.crate 11780 BLAKE2B 7600829591c3631aed73598d4837b0e3be55aa0594e0562ab7914013b19c4f88648e0103765ddf32643e771e0961ff2f726b9c8b323798d36ef9b994c1d03ffc SHA512 c78372332aa0bed3352d58e07be3e97f01e69410051be2d3cba569b05037df7379e896a84638b4e9f4e477b9851e4bdef0accba2c53d118bf4667a3e1bbe95bf DIST rand_hc-0.3.1.crate 11891 BLAKE2B b3aa810638390eea4245ebb711de88ccdc2a64350a5c6e14064fea7685d49746b4b77215dbb8374fa7a6cbc2cfd79fb553513d6e551acf64586d8303f7d4f3a0 SHA512 582bb44b81c27e698eb57c6f06444b8a7c9d3f7ee73f4e14be8004c4bfd3bbfd9795c69f7294b5e87107e86b90fa3e91ad080964474af81c92705d356e43fbb5 DIST rand_pcg-0.2.1.crate 11291 BLAKE2B f8837f3f3dcd7ecfc90f88bb6464b9f79f7c1975ecc68289fd10a5c97323de9c1106de9847fc798f50d96044e46cca9d41f1635130be40bc789492bfaf999de9 SHA512 612c0d1cdc591f80733bf8097e251f02ef7a7e71cafb74e37b63ac68043558045c0c96196200ad07ce7aa9f2d373640c20e598ae5774935c8b52350ec20958ba DIST rawkey-0.1.3.crate 4340 BLAKE2B 684a25ebb326a3e8cc2ec3baab594a5ba323e6933b51e331449a3da1f123de2a0489c0a2b64816782178fd5db8ef354b3dc6f242fe82fc8b5344eefb3a80dd15 SHA512 1823f1312a3c4c375f4c24b3c5db47e37ad5f692e7bfef9a134b80d2c91c883d95e1d56a92722f081534db27696454cf20691af575e4540ae2339f7c07099322 -DIST rayon-1.5.0.crate 158037 BLAKE2B 6cb7f696e9c04d3aa6c3bf9c95690c2e259267024ac9701da5cd85c7d39b900a7e9e423e5b7602e108587a34c2519642ce1456dfd82fb13328ed3aba7516b569 SHA512 be15cbc7ad0fadb55e5640c78aa2eeac282872be88c5402338caad0a7ea604d2b8477648dcf7e453e22fbcdfefa915aa4bdbfa75e3d4f7a993fd8d85ed68395a DIST rayon-1.5.1.crate 160424 BLAKE2B 1c31c8e3290f76d02347271cb020e50e8f915b7a064f133a196c12e07ae1551c0e7c31883a31ec419a05198d6c71f0057be1b8ddb21f451db9ba40da511a0e1a SHA512 a68e65aae7040a6f6b0cc33b53b4c22929c15504ed4fdf54f5eb5fcaeab137c220b00c716aed96246b6a762c4f1e8be920356231d6c4a0b3e01132b9ab96ffc9 -DIST rayon-core-1.9.0.crate 63787 BLAKE2B bc5f930b1ce8e9fde03c01df7a53eeb3318ae24ac1c6b22e401a0b2359f4b9d6e419fcd41c7db33881c4ec29fbb844a44e2cff747d7dde2133668e733f8b6966 SHA512 d05b4c1e7bcb1c4e9238ab08bde39f08f069a08593084f041720694bae8bd524d1761766beb93e97784d7d541bde3e290446344fe129b0e10491405c1577366f DIST rayon-core-1.9.1.crate 64961 BLAKE2B 7201024124324d2cf2d5785b7e79d2195adc7de576b826a9c28603dc44f1b5de46d277b791a741413c85facb4f4a552bfd55989a190f6f5ea3df4bbd32042f66 SHA512 c24c34dc488171ce476df145e8c6953d35fea93412805f6c411ba8b8e9dbbd733610b291203ee91bd265b766b78e14ba15a7b587e8f0ae8bde53f60e0644ef78 -DIST rdrand-0.4.0.crate 6456 BLAKE2B 330ee64d998a0358f95a3dce50b3e1bbda531a3b613db7e5ba4038a1cf7191b60be3a0f33416e05380c41040704ce52727928915e9d2f4565d39984d1c86fcd6 SHA512 6476275d124bee28747191471e8d8f321a3b1c148c1f2a7ece4175f5244a7de90afe5f99d2eba5244d886b92e38232398864bf90e6d434b09494533942c8d894 DIST readkey-0.1.7.crate 3040 BLAKE2B 59245cba892a05d2393070dd17590d22d405592e6e6c55f53d28cf0236fa83451386680379aecd459a500528799e020163d729d77d5c396a764821c56956ef1f SHA512 37aaca7d348f54e6b58e54059adfe18caf2e3215660cc6692a6cf6f84832a8b5a3b99935ccb8a4c234440a02199fcf045ed436d1a26e2094be67b5aaf45b5eab -DIST redox_syscall-0.1.57.crate 17087 BLAKE2B 88e3ffcfd752e757f8fadfd4edca367f9185f09e609c329bb36f179183cf103dc182aae701c14afb717d2b4c3d72ba307b49fc671cc97aa7c9d03df1a7a1835f SHA512 c6e187087060084b7173ed0d9d0e982e4259d4f76522112268c02ff20751382e3bc8e119da6153170f5c54bd5b9cb028910f2f85c1c842099205dccd44659184 DIST redox_syscall-0.2.10.crate 23582 BLAKE2B 7253dd96415e7b70df488c208d86c250c670b1245ac6573a59085faabbde9e33fabfacd233e7d737e365493db14008c180274b41ea0a4af5f6f98eec666a873f SHA512 ef012eb4bffe32119e50ecdbef4cc31f6e84a344e94f026484fe4e2c904f94053a8b6249fb6bd8ada31b3ecfbf0096085283bb68aeb62b1b01b57f35794aee92 -DIST redox_syscall-0.2.7.crate 23576 BLAKE2B 01bda38a6c761e8f08fa54bd140970c18d23cbab75d10e52d10020b9e542a6ac10470690c2421405026175ada79f67edd690461cedb3bd091703446515c333a1 SHA512 98d84cf6ab9c7a056b72a59f0772806a0102cd3cf2518a2f9704f9253c1af55416a731b0e18a8f152f56c5d907028262950ffaa7de243f7e6d052ed1aa70855c -DIST redox_users-0.3.5.crate 12644 BLAKE2B 093141c98164163dc66378f2ccb48a5f478c5b40b69ad4ecb89fe8967e4a309974088ea5f7a2b184b625fc03348f2e75b0809d3683696e9b74d5c4a5ac6a4e8d SHA512 d90f1816205a4f2eca59397f6866e5cd965af652940f56930f8bfbe2b50eda75cf78b09200bb69416a35cbeead3cbd4de354805568be2feef1ae4d691b9a6a3c DIST redox_users-0.4.0.crate 13023 BLAKE2B 66d0d1169f98a27a00930c86365f289c38659c0d7b248a6870d1c144dfe63c9752429b2912006527d42aa321f9605892ffa85257eeff1ae148254bf370dafd02 SHA512 4058ffb2fd57631eb6346c8839262653af3f2e670a69bb5739d64adeef7347849b18e191c594303da1f5e29b4a3cb000161fc1b3ea4b7f94585977597a2574b9 -DIST regex-0.2.11.crate 209507 BLAKE2B d8e52b078e96c64663a730208d14af4808abb62d7f2ddc21026410d78305bcf45c8fa5bd6bc28a61a62dffc3dbed6118562bf5294d176f04a9aa8b3eac295a5c SHA512 e0f48ab9a692f7ebd83a21bc70060aed0a7dccc9aaaef6995262fa4e2e33f4404a04a217588b72025820b1a0e4697c076ad47a017e7c51cdd4b6c1909c015ead -DIST regex-1.5.3.crate 236506 BLAKE2B 01ad8383c9a376b5d5464e31a6a74f5a35b36bd81fc4f31b3b0e4c7b62b1a6509b81e89d8daf9ad2ee607dfef8453a7d102ac1a3edfc67d4eedd7eef3acbfd22 SHA512 e8d1b009d093f7932894c9701947086867c24180dc4674bdee7acc19bb42fdd6554630b5960dcdeaea3e8a6d87358a3e4ac3e83b86c77842878d8487f1f1a61d DIST regex-1.5.4.crate 236581 BLAKE2B 6efaf69d1a99dc3a2e04b2d1a96b036f631e9a0ad0d3aa57263febd47f7ec12765526f06f9c52a5497bf0d9b455f1d1b39e011adc4c28530c44b65c8a453efc0 SHA512 1a9208358c4ab87c19ec91bcf5c1e35dede46f3a0c0097061b7b53fa77a1e5ad38090d243aab274956f09c491e5fbe3b3b35a91db079b82a2dde2fd9fbad4c19 DIST regex-automata-0.1.10.crate 114533 BLAKE2B 0e357229f6825f14339b1d7c40730b83e62bba12115d01ed20313320766e769a653a2fcd2c9d19af51a82c38e9e42c1a31d005e1f44f5b6fbb3ead7c9c74027f SHA512 56d64da361afce82c6cb49e70b99ce1fca3e1969c54bba5f9971db135f8544c65f49feb8827789947b3d1dcefc9c49a7a434a7ffe0d09c5900345a1733723c5f -DIST regex-automata-0.1.9.crate 114560 BLAKE2B 2bbaeaaa896479c817b7bac2f51108f8f74fda72178068c3b5e599b466899692fba8ff3ce8cd30f1f978a944a0df98f466f3d4bd340bf595d6f7048ba6f648a8 SHA512 53323733dc2f8c47ec33b5b3aefacac3a0042cff80c59c3a05ee02b581671dd9a6ebf6b0b5eeddf9cd249662731cabf5a684553daeff440bf8d1d4d296afbeb0 -DIST regex-syntax-0.5.6.crate 233912 BLAKE2B 828c35471d8a91be9fbcad00e036c40ff0e2c38d008c5d916cb096f0a6856f124a64a203d547fb5ef45cc296565221e5f96343754413cf6bf2fd1463c7e02f1d SHA512 4ee43272d0d6e5cc0b554816e20e2d93b0ee774fd71643d5edae06627b295d374769ecdc3c1233a688d306d1cb86a83b6850ffe4022baa3db78beeea1190b455 DIST regex-syntax-0.6.25.crate 293293 BLAKE2B d5ca0dbc26b03c6a1818026f9a69cd226ec934e7c64094d0ebe843052b648617ffae7aa3a074f8da46d03c46996d8b547d8916576342000bd9711089b3e57d73 SHA512 a3d31f82aadc6be1796f76c03152ff24f37fe42d6ce27fb98e2f55ab102f86502bc37ccd563f6e0eba61aab20d002184c618517b678b3b93cb8f0497cc046ca5 -DIST relay-0.1.1.crate 7331 BLAKE2B ca5d025d76f85b05a8453e264045871a5d552632db7f8bc61428798bd5b539ad27eec191ac153addbc86c77ec771df6058ad84d29395ddfc39558c416d8d9d91 SHA512 81b2aa587529ebf364d4b1a566acfd867623a33d32fe20c94551dc248ef28950de61094d7e1acfca618205c731cb3cb955bc8106d9a4c5c7c84f9c38b35b2261 DIST remove_dir_all-0.5.3.crate 9184 BLAKE2B ab7ef94e0230ddc9b363f038254a180881bbc20eb04a254f97e6f71ed491c99ba1c88f5e85632d450243882a4a0df63f3b8b183bc1fbca9caf30ec23d577b1d7 SHA512 50417d6d8a33912193a1ed37eb72b47431b12ae65d2780cdb7080c3d141e63819da13751c3fb737685cea322f70b36d413389c3dc01aa12b4dce615aefed0e2c -DIST reqwest-0.10.10.crate 127537 BLAKE2B 812f6f3e28f0b7ad3ca0dd5c66f1f1ac9c6de5237978315fbd7cf586a5487e3d3e8e3190842d199ad97043ab5320e53d85e487ddca96ab9116a98808097d1ed7 SHA512 06de1010a618a517741fcf827b2c4297238c86cd3f906be6f7520e57dd4e10bf4e978398bcd90631c4d459c14b2d7218c06b5244b6af1f83610de9c8990c62ae -DIST reqwest-0.11.4.crate 132776 BLAKE2B 2cd8e0a1e2256c93fd03c4676210dab24980fa87d0575e5c8a9fbb5428547c4bea1059449809472bc53f3d6adb3ca8bff086e1c5a48ebffcffb9bf7593e94ab7 SHA512 89bc5ce3658d90b090dbc7952faffc0045304a7d4e1f59a0f7b0c266d2dcae0bc8c5174f4b3b74ceab7b5b8638b5f10ed2b60831ce91972360d849328647e1e1 DIST reqwest-0.11.7.crate 139871 BLAKE2B 6120cf1c7419d373a6efe6f4b12714ca5eeb06b27c561c4d4420825ed4f839effb934aed0cce0f6361ed135662e1cea02944cb0d727d2102206a149d964ac38c SHA512 fee86d3ebc2d954e24faec1e7f42514395b106fbca689e5e5f3a9f9689e8f0024a5bc602095483353fba9b4c50b5e85a9141b59e1fd189bd8badc0ce2a31d0b2 DIST result-1.0.0.crate 4156 BLAKE2B eddbbd153eb243b2801443d8f074c40e352694b3d369c3d868ee9cd53697cad983b0fa9575fb04ebc9e566aba0ff8c3fc5312b2c18aa6655fcfdf46fb8045885 SHA512 75354aca4a29fe544d2284039a22cfca3e386923477175984d589c90e828117a9d953631d57794f7070243eab3d8ba3c6c72c35e3147413fff29b04928dc67ef DIST roxmltree-0.14.1.crate 39163 BLAKE2B 9ae8ff27da1cbdbb48400a40ecb4435d687bae16596fba037588320750f70e90a7d5f4c5b59f6bd91251dc42c6ac655933a6480ac1f7eb33511d3c2bb03a681b SHA512 6ddf07cf54604d5e5feff2ba9c4ba3aeddb3e43f9630e7a66bd01cae7f96255eb678a9d3b7d408bf6677bbbf8243c30c057fb5634e6cef99b445d0022834a6f7 DIST rstest-0.10.0.crate 887979 BLAKE2B 87bf456dc4d95b94fc1c2a12cc322fe845d4280b009699fcd1523488733a7b5729f3c3444a97a8ef66746e69504be559480a748a8f2719a1e149780ff7c1431b SHA512 0026f4ac37c47f182e59ee8a037df9910d408c2366d639ec06adbd774ac75835e0fd475bfc90b8720b0675054a14ea90ed8e1bd5f3d3c481898f6da7a33f98f1 -DIST rusqlite-0.25.3.crate 129773 BLAKE2B c94426b107a23b6c57678f4265a3c03c3bb3e4a61e1a4bb6e2dd376e9cf2cce9eaa20f0b267cf5251917aeea2254a9af141aebc44860c555799dc63869a86c98 SHA512 c43f01612658947e2e85cd2385c7b658259f908830a7c06d0381471ea6b032cbc57b47f3e9143356f03aa2b4ae15d01dc281597c3f299d1158b7277689672326 DIST rusqlite-0.26.1.crate 135748 BLAKE2B 30a07b7d1090b332a49a99838bc5e10e3e6db5407528c38d95c40e248eaf4f85b42315ad91417b17917fda6849dce18e9a794c8569273c05f41ca11be6222c0a SHA512 4322dbb58097324bdbcafa4dd81a3fb16c28a16b93091a371fbefd86aff5d2d104abd7290669f4092cc5cf869ccce794d4b20457b1a8ec7154a55c9a6c15cbea -DIST rust-argon2-0.8.3.crate 28313 BLAKE2B 2d3468c7b5dc027fbbf6ceb264d77f4ae9b03526e0634c645ffd32a4c87532f5a84c224c6c39a15c9e267d268b187ec65210a2edf7df8294913e4958fbc83352 SHA512 f336dd3f90e1a49be107b641f9e9d513b6f8098dbdd1ab8aa2bd1fae329ce6840ad11a902b599922bef45d96ffb556d52b57d61218271bdccb7c85f9fe1da033 -DIST rust-crypto-0.2.36.crate 857879 BLAKE2B c486a2e43eb9ac9d2558bb39a249dcd689e86eef51d9a7613a3964baa633cebec824d5a490254dc06eca7a5faa471126de92452d62c522a3dbf494b9940a13e1 SHA512 0fac026d8799ecde523f20e7b34b9486343e48b95e79cd76bb6c8bfaeaebed550e45d59d85d8a3a58595f10c02a4a5e55691da15c203a4336a9bdb5480cd2e90 DIST rust-embed-5.9.0.crate 894464 BLAKE2B 5be40fd9c6bbd394fff8fc53dca7e38b91e081f9adbf2288de6e6ccfe6a9212bd19bdb8ae0fa5d962be24c37a917969630344dd13d949ed568258afbdba5c53b SHA512 2cdaf6b622f81e4e1126fe7809a8dc97bf6936b179aff38419ce24171be92eb7f703b04ecd3ed35a93a2af89a06dd2fbe42a80591fc51e699dcbd753f076a6bd DIST rust-embed-impl-5.9.0.crate 3963 BLAKE2B 8225a379f4c46ef82c4fde0bab34dde56667aeffd7c6cebc97e21bd3a669d67e986e5ae70eab6485b48926a90d1223943b2b244bbaad7b4a43e92a8e052877fe SHA512 dfd2c3ec82872c3e48afa3466215cd075cf59beee08c267f5c5f36b87cd14e674616eed0838f40530a257a7961acb999beeeb939f00d39f093b2a3d0ca25ac67 DIST rust-embed-utils-5.1.0.crate 2092 BLAKE2B a6118f9a10f6b4ad7fa8e2871f6c6eb61aeec2df40466d24e08598079b3ceb7258a528353b11b7643effc35b1fe91a9f599e8f6a605edb3c91836da47871d4a1 SHA512 8859374e21480133564a98d8dbdf43f5c04f0af205c4568e200eb1c87d437df4c5d73d65b82b5e0af65f02016f82db403140105346f597b3c0b48aae7b34dab3 -DIST rust-ini-0.13.0.crate 10767 BLAKE2B 580eabcad9ec1ebcceaa84d5d13f8f2e681854f958aca0af07bee371d8311a3d2e57552b1eddab482985ef149a8a1c2ae4218df3d86349973cec23596898696a SHA512 e4c6d9d36f7d2711f92584636cd126d23e027c64afbd0aa7ff0752120be004ce49ba05d1d701655e33cb1ec1f6d2d10fb3f0e520e26e4358e24041859ed2a098 DIST rust_decimal-0.10.2.crate 37608 BLAKE2B 2f2dcd3fc9eae6a648d0b091e7af6e92bc6383acc2166b0bd4ee4c3d62237c8a54ae8d85899d7a8eafc73417696ae61c72c35a7fac40eb0a4d44c88b20f5980a SHA512 419e3da442b35041caad93a9328d884262851a72c914282d261252f577bf8662a9d19f3957b62f4e684ac8a854c69e4b4ba95a9a6bce7471053f4a0877882fda -DIST rustc-demangle-0.1.18.crate 19913 BLAKE2B fd0b955e9f552d5a3759dec05bf5f971d151efdb8098b0b3fba0ac80f0034c4891c575ba1247b04d1271fbfc8a1585f4a65200ff3836946aecae1cd653c7a1e3 SHA512 93ebaf7630c99b6c83712452aca26a42d9a173aad8ba7e85954f65e7867486519013aae1afb0006a0507fc3d6a4688df783ca091779bc0f316c5b8c4be95b793 DIST rustc-demangle-0.1.21.crate 27920 BLAKE2B 73ada923b9b293c5a9893f86fda0586139afbb7d56894cabbd70612d1fb0330a9e491d5143fe3498a0c8d3e1a3f8e63c14b20865926e4c831915592486ae32d0 SHA512 4031b26863a726cc6d3398b48682e0f0f9e5665abf20a5d35343a904ebd7c0d3752dcdd3a049b2bfa3e2a303214dc39a2980700bcc64464f7029be3c7f34727c DIST rustc-serialize-0.3.24.crate 45926 BLAKE2B 11dee8dac7eb007067ee0eb19d122bf45d912e6cefa95fd5ae3db7a4585a3f37e66b123c8c7bb761cc451b402cb9191dd5c974618331bb9aa9efbe9215115abc SHA512 60b40a0b41678287627cf5898e0ff6ac5668865f1ce5a482190ecd7539b59a955a73c675fedac76e68a5126efb92ff0cf1d1b4f24359a932463434bb76d9e884 -DIST rustc_version-0.2.3.crate 10210 BLAKE2B 1f707d1c66d907c9b1d2ef6d0bc6bc9c89990a7b922a6dfc2041865940ff3854c4d0e1daf558279fd5871af5818d4000457a32c949104f46538312fbf730443b SHA512 01fa7a758dcaa4f15c18628a0d5ee5adde5ade96a8b7dde0908e39e27b290d1e9adb20d44e2adcd379341d2d4a0c34a80dc12553a3bb4efa4758988f28989779 DIST rustc_version-0.3.3.crate 12119 BLAKE2B a8cfe3dcbaf436b74e9798ee1296ea7aa372cfa26788b7a84c9ce7ab3de5c5e00c6962e4310aed9bef8584e3c30298bf1bec1ac23c3b70c6aea32394359712e8 SHA512 37732b3b28eca41de205db34479c75b31af4ddd811f0f1606933eb31e25e5ed3966a41a8b7d338be20fcf47540629824c41a267436c185a98f8acfdce608b5cf DIST rustc_version-0.4.0.crate 12175 BLAKE2B 6fda2ce03eab45d7193fa0d70175cc7ffb56b7be85fb1314092bdcfd3948ea145420569ace3a47218a4a2a6e44a818862cea6dd8cfb945475496f63b591c29da SHA512 f66da7c6efe431db06cd01180d84ba67fcd38f8cd6ef693762957c00ccc2211f23c08079d7f184776e08f28d2d6ca3bdb5f5016f7de245c6193d4722891ba1db -DIST rustversion-1.0.4.crate 16704 BLAKE2B d1ab318021d96bc62d6f202685c9c48e8e3624370bb42f9e7172d51d9b8dd412fcbd22cc267eb55279e2799dfab74ec64f82e6ee36f822e4f2465baaa6fb2532 SHA512 d15a79acc524ceac97a01b1083e109c1eb4b9d4ae6113b77b335a222667c18048a776afa7634200fe21c022812ed90282e09a472aa227c734f09d6ffee62a528 DIST rustversion-1.0.5.crate 16984 BLAKE2B 314d4a7b78a91fe6a0f35d850ef7a4dda72859fec7f603307154d2b25722ef6be71d5986991b4958009ba066d3078a53131691b0d375677985b9e351876dcd15 SHA512 43f3ed12e007e0a7bf0ecbe44edec5ff092c88973903ad8032b12d678d98d8827a9e51040fa157b0d5b07d26a5b6cd314b410553fec46689b3a31b392c24770a -DIST rustyline-8.1.0.crate 97083 BLAKE2B fe1f01d2303c7d563b83c245666b4fccdd5d0ec97c9ab120fb086292f3b2c42264b332809f918654db152c3a30b18e27c2105031b7e4ff2e075db180dcd3a1da SHA512 05940a5f42ef213b1f94ca5a97687fd100c0947da0a702001f2bfd305f0862664cd57a84293708cb9f9a9e6c330a607ad6d86b6b631a171615a34a27f7336bd5 DIST rustyline-9.0.0.crate 98953 BLAKE2B ed5a6c8ac956c77b0455da528c359c100749391ee01e3947ee97f19317d161737ca6dcef1640d6e2c7a66fd6bdcb8599317c57520ec7f9b296c0499552696c78 SHA512 ebef22645dd28eff265f2ba79203ca4cffdc3ea0ac4475c3dc1770cf6f60da6e3d2b0d0f5822cb7ee85445d0fe6a3d3783aa1d96f9fb04acff7322dea3e93577 -DIST ryu-1.0.5.crate 49570 BLAKE2B 3bfba4a5f290a429de7ac3b86823b2a973f40eb6f48c15329173d95964d31ada36f2618be4b36774a03f97f2ce61364900c6a3ad5465a294e2df311a1f4104ed SHA512 d1708ffa3112a684edf2956b6730ead040401d38f1457cde074eaaa59c249007dc8b925629e7f6df89f7ea757e9d0826649d685cc8ede0a04d50296048bf476c DIST ryu-1.0.6.crate 50032 BLAKE2B 13e805124f80de0d8175fe8b315b20b06f0ef188049e835843b91ffb90322bbfa54ddd0fe1617af851e8f5b59c1f076252b705394ed3408b5fb577059a46273f SHA512 175da99ee31a942800eb33ab5addcdf89b2bba95b6289be1560746d030acda547a5bc3e8cba714c252230a93bcd991b9593a7c94421222833bf089694ccf1655 -DIST s3handler-0.6.6.crate 32314 BLAKE2B 5fec2bc97dbbee950ad939778ddccfcbabe9dab8809da6e712b298353c776fa38f2408a98af0303cc5b81434fe862804784d9eabd4967074fc4c8bf390990604 SHA512 a66fb97a03aa01d5eae4b9ee7d67d0d32cb78439424eaf57a53db84a743119c4d195d6475b488958ce88efc1cdd8907b656aeadcd457599a26813d73870460aa -DIST s3handler-0.7.4.crate 33314 BLAKE2B d2ad4a01b0be945862a22be1c070944539afad3725268ebca6ee7c97f930e3e5addc7fa634bf6497aa581b66f3ae866469f280d3d39aa0000e4bc7ef578caf14 SHA512 f19821e2481cf91a90440988a783c5a13605f549b5902c1aa82c3ab3fb8c956ef6295784b71b6fdf51dbdfd6da0bb61aa5f94650fe80db046aa8ee378106cd56 DIST s3handler-0.7.5.crate 33310 BLAKE2B 3f557ac44638d6d22eeea61ee4f54fa36609b8c4a38976ca54cc2cb3299bc238407ffcce319ff621b4eb2b30fef0cbcfdb3997612df3b9f3e75bf49154d042fd SHA512 69ae9177aefb410647db5722d2d88171515c6197c13aa72c97046585b9819058be5756be79aaa252736eb6cb635c08be71439497ff0e28ab4502270f46776c80 -DIST safemem-0.2.0.crate 6450 BLAKE2B 44598e47fa6185ec0890b4ba6d0e7b5f52f8892875741c3819559dfa61491736d4326fa1713916ca41d6daac72829ad31d0905f2e339a069a987d9715f340795 SHA512 71901f472668572e849504a8a830d4dd9a742729b0158d2c6865a5ad86e65cae8b5bb83707240ba03a7a74c610ace87f8b59bde68998d2bd66c19849aec4fc8a DIST safemem-0.3.3.crate 7778 BLAKE2B 6ebc0e234054919687e8a369bc30ca6b007d0e4f8147157ba1a90c290b7f0b490e5c21a6d4406671e26ac073f9e4e06a2bc9b1f21eb152b05c4022a3a4ef3793 SHA512 2e4852ca91160f9f1e764b75145d794726a5f6c162cc99ecbf9cae20474a06cb3a0dfc245b895c51342240f6875423010b33e36d038b8b419a37e4820a9caf72 DIST same-file-1.0.6.crate 10183 BLAKE2B a320c8343e0b38078ba81c4f0159d886bf47764c74efe0d7cd2b3218426e8341b51e523c00a9e5fbc2ee1057618296bd70b576c68751bd55d6ddb352defaca15 SHA512 3ba35309742c8db63210d9ea78bff4ecd80471d69e6238eb96c7bf0673814f221e2d838fe6311bfc5a0e71b4a7ccba33e07859c0b9cff2171969ff08a4214a7c DIST schannel-0.1.19.crate 42755 BLAKE2B 11503202bb6c8fdff3cc716558a5c00ca7497f7aaa4890d332084754e0d1e1013719d5bd744d8aa12b8b042401f4828fda8453c104d5feeb9b437d7cc51b5273 SHA512 319d9931cdeaa0f6b50c46e413fed2b6e97b28fe8c4825d4e5ed0fe22083e686e124117bfab7c89bcce815a31a3478f8c230cdedae6a852a31719a0df34645b0 -DIST scoped-tls-0.1.2.crate 9079 BLAKE2B 35e15480e05c48d5b886bf94f2fc58f79e7b5f6132c8e81ca8f37140f58d21e8a30dab56de35cc395b1878083f9e7b187af7e580bc61f8f38975b2e1193abb57 SHA512 9e1a517994f06dcdafa05f3ebe67958ed5bc751e6180cff6c891f48fbc143f3279aa841e6109be2c403b492162bdd90b23cf74aeb2154a34748c5d495789fd73 DIST scopeguard-1.1.0.crate 11470 BLAKE2B f774eb90b7d3ffb2efba47518e9d1dead4017ab4b38a4bd74914daa84a5af4bf9eb63da0496e3924499d79cd0439c37447aeda4a21226f95645bddcd6becfabe SHA512 368fa5726df8f42b599993681579a9ffd0196480ee3cd0f9f671e8493f3bedd1e1779bdf2beb329e77e0005fa09b816e3385f309490c0f2781568db275d4d17d DIST scraper-0.12.0.crate 18308 BLAKE2B dfdf36cda943556c42b7fd7767c6596e16baff65f3d84bc054b63d0f82807fc08e766bb4432671465a719ef3cdad887e18e83dfde2756cb4d956ac2ec72f0a14 SHA512 90347acbd2cc63d2604b94afee6b21d57f1104c1a8cb9b396b99744e44bf702ba67c166be5a4a80734432a76d991cc846c0fdfa81550e3bf7d0103bae2ddb617 -DIST security-framework-2.2.0.crate 57599 BLAKE2B 2b35e52e8cccc6178222e7f85536ebee73f801b4a19661e8ae0ba303440b370dec664aca0eb2cdce3c7ef1da2c4b063554e565b0d5faaf2f9ff0929c4425f98f SHA512 33bbab6d82fe0669c9cb63778fe9888de045342640eb3d52806c4ad075f79720976e3f49c0f6af88b46518869c19786d16a602e109edfc7743c5beb5d6372040 DIST security-framework-2.3.1.crate 61581 BLAKE2B cd6baf84a2d93261050e6f4d292fa32b9c1a9f4b397e209f03277dfa9186e031fd641091406f65acad1046a57bc34b66d95f2021456c7dc6321292087b776728 SHA512 732a575f36d1bccefa71ad051e07b636e683a53fc4e78517cf6c7a60cc819492e8a430893b592cffd5383f6cdbdee496722cd5fe274cc7726d668ed1a8d36238 -DIST security-framework-sys-2.2.0.crate 11744 BLAKE2B 333f91d1f37ae4d6e85a073afe143339b2a6f7a46e3fbc0cb2182b3b3460ac3ec4da7db5726a2db15a407b15bc830d3093d89536641db66490117248a96d370d SHA512 639c267cc2f7529eb6c253f6908ac0681baca640a64efc97ef2b259c9d9db0d045569af2853d32ee2ad338f5d17334d3adeceb8587b77501ef462f7a890fda11 -DIST security-framework-sys-2.4.0.crate 12796 BLAKE2B d2a71bc648beb96bb15ba6e037fb437879e8bb66233f84ae364d7d4c61c4995f4bfc14ddf33fb2f0770800af468464bf7926f79310c0cca8da5125c65a45b1ee SHA512 caf48e184361f81d1cbf92f17563b4c830aabafebc9d23b58093d0a43d03ebd24bd80d33b037a8603309a2687476d305ddd8d3d43ce68a2e4915a1ace57478bf DIST security-framework-sys-2.4.2.crate 12821 BLAKE2B b1731747e2525aa3aad02be4da8076f6e25d33faf54b431e84c0bd072ca236c682ed492621a7aef725d0c1bd20a5f35ef01d0d518b06fa7bdfd2417b081f4cf6 SHA512 d2f35545223f1ec671f9265017c393a6219cd1ac551ec7b3bea6f90ac9e79cd9d9f7232fe7fca5f0c093b3f549925571d5a4f0b702f29a1e992e038446f48bd9 DIST selectors-0.22.0.crate 44199 BLAKE2B f749e0e53476b695b4937bc0cbf1add4f3f7d4c64f59f71cd0095d87a20bb13c69b6a5271ff7951f9a67934ced5ca0d3fda684c99727ab90b637c0af170e012e SHA512 af2f4ba87c7a52291bc7f5276c4ebcc7689724d95972ac8d162e0f4007a6f0a47ee1aa6095b3b80441924f990b2d147bc4e3e65a7dec164d95742977ca792b04 DIST semver-0.11.0.crate 20826 BLAKE2B 9006a801dab95e7a28605f623984b467221c3207b64af251bce3fb4fa74f731c4a3b9f95081bac59f754fab215782856edd98dd763b66563010498b97e8f35d9 SHA512 bdbd8eba37071ec1d24d372cc34ac4d82b6d914e7396ed51276e80d4d299864507a9d837ef381f6c4868981b7ca35514050ab8d7a621d43697a9c4b4bd5d8573 -DIST semver-0.9.0.crate 17344 BLAKE2B ae782bc78f29e45577de8574ee58959c70b54bb0b6f45a5a7b09cc4d358d9a0a80bbefc6e0f2a330e2b55adfbbe5c1f64f4ec9bb94c4adf7bb3e4fc9c142db6c SHA512 03a2ea563456f812c301721c3572370fe4934a22db60079da0dd6ffa33fa789e5e2436ef09e62fc35e0b742b06fabc290992c74eed80419a353c9de9449928dc DIST semver-1.0.4.crate 29375 BLAKE2B 534a89125c4483fc99c44f7b104870be1471d478ba4f709819ae700767f4d6d0bdc98955897e33566651cbecadb4d4dc223204e4504ba4820c2d3919ef4fa775 SHA512 82ef2b4a3533360de1c645dba02b57a2670fdc51709a07be4a63b94055335225764d42d70f9617ed3aeb4c4de121da24e73b0e2c5c781501e9ee32dff756ebd9 DIST semver-parser-0.10.2.crate 23176 BLAKE2B a946a635d207f14a59f3b5db3d0a6dd8ea283bfade3fc15f07bd9f19087bc12203591a17d697692ca12abf3618481d53f4e7492b80e7233a519bfefa49b95da0 SHA512 154a6905eb5fb854450a0bd00381f93ededd6f1a992103a53464429195102eb266c7e8681e89cf952223a51427fa17c0a36e3b7c2eb6d375b309e5fd3d721f1a -DIST semver-parser-0.7.0.crate 10268 BLAKE2B e46b7cf9d292f8fc54561fca4df8534dc96f6be920a5c869c405ddb31b9d1a18eab0799207113cf4910a52cc0df5017ab1bc1883a7c3787ebf2d60f09ac0ab4f SHA512 17320468ec6b9862d595f358d70c09ac6e09db7885fe0ead7a1e596f79350a6306e8bfde5bbd6512008a7c5454da1c7ae55fe1e3bc1c1ff02ac9df54c0a6121f -DIST serde-0.8.23.crate 25824 BLAKE2B 96bc2e07504202ad51dc20cd972e7a3047c26f2dc892d6892466e92c8e9a58a65664d9a5f6f2d38ad2c9e0bfcffc0096b913b6c5ef1d3736d53114c13f00663a SHA512 537761d0fad243799c63b742b9ac020195ad5575e346080c2cf19b1792d2026bdab6f61550679b8883f7af5e16e98289aa749f0646a6d4b0cb24eec0f7d92edc -DIST serde-1.0.125.crate 75144 BLAKE2B 0823f4cec3704ce5232c266fcb69323dbcd93d2d15712abcc8cc61a2d123d662ae8153a32b3723324ea55a40f2b9101ed654cced45c500fcf399b9d7ccc113b8 SHA512 ed2819d678e7405e2d8a0cc1b43540abf2ad8871eeda4985af5e37016a42b938d7429c4e865cec2ae5364cc7fbe1052a5a46ea51b42c3ed5b9c7c1acb596ac3b -DIST serde-1.0.129.crate 75300 BLAKE2B a6f1a7df810f3232da585bcff86a7905785f82b2c434a87e2ae7e5cc0dfa8aee2dde47b301fdea17ee885fed54698c607a1334a9faef1a83840b9b111668ba6c SHA512 7c520bd5d9d5ba05c4b696413ab843ba36b22b0a4d8bdb2883eecadd2f69153fa90f57689f861ee5c9ac36536698b7694837cff45c615ec4892fc6b035c25482 DIST serde-1.0.130.crate 75305 BLAKE2B 3973b70d8e06ab7c2f35e19f23739e8e4dd75dcdcddd818771be5daca8c61f6e2a7a830b4ccb8b3e3898769d7afdeb39ff217bcbf40bbd00867c13bc4668f905 SHA512 e6d6444abadcdac95ff15cdab53736adc9ddd1b6441d67158b6b41e68bee4b7763f9c2d80a857f879f40620429e8f04a90b01380c8c88da45a273c3ad13cfff3 -DIST serde-hjson-0.9.1.crate 22811 BLAKE2B a9721b2d2406ff8f15fff7cf0d8e43a9057613639b7bd947b45c3cbb643905fd24c42570846ce1f88df079b0f9746cb51d9a6f9ff928b503a723b50240b9995f SHA512 edc6aabfcee87df4a82792eb00f86d41b1b15294300b4f245d69235984c25309e4cde4f480d78a67acae85ad50420b05bc2ba760c8d9708bbcfff962c79fad1e -DIST serde-value-0.6.0.crate 9887 BLAKE2B d816bd8c565375347ce1bce4a5e3cda1d73f372c6b46ae46f58ba766efed89b2e7a2deb62ca9af7c035d5ac7a3c3235cda02f1515968540c42d2df09a9079ed8 SHA512 c703b41b353e328e81f1043a6089e8eb826b79bc5f7d3a2f45a2696209481809f0d67536356bd8a40a28512652559f20622716b40e54998e6876c8b0366b5394 DIST serde_bytes-0.11.5.crate 11067 BLAKE2B eeb75e1346aeb8b49458cce8c71437809b346550c2c543ef89b30bf7b14af071876002581728122621ab71aa4e7c4897edf55e96eefd8da3e2802c17be0fa81f SHA512 f2941fa96c777732dec9fa9c2b0e59571984b89a14b868aa4817805e32525cf3818d6aab943120cfd9d6e3fb6d91ca92bd7418dd6c9ace8fc235d8999c42ecff -DIST serde_derive-1.0.125.crate 54155 BLAKE2B c99e9e806831dccb3ccca20675e11f603a7348c433a641a46cf9a448a7a8b7ee242d0d6110780089b08e88b8f33aef5b75e8b1d25e2e6d242a44e9093b2badfa SHA512 dd4e247c9581b437157f37e355bc3335a3927417920acce72e73d6fe05a80e19fb3160c72abede7842e7d54749c33a94335fe9f3468c2f561267b863df368a6f -DIST serde_derive-1.0.129.crate 54697 BLAKE2B a5921822dbc1761ccf5e5951f60f27e4d2d263491cdddc870acd8cb069bf3194be9099911edc161bc1b037bb4c0551bf8918214d13b52cbb94ab98675dd5b672 SHA512 f4a418a5431a4d9b47f5555e485a81485bc7fa050fe137f8145ac02615cb21ea6d06ffa88e8f2c404341885e51f45750c273382adec1eea20bff9ea7a18b85f7 DIST serde_derive-1.0.130.crate 54703 BLAKE2B 35db74464913a93da88b80cf29e4983bcc4377e397618064b1cb397ecbc9e6620c863e4d365153d03ab77ec6dbe9b1d03f8f86aba1adb76fc6d697f39ea7316f SHA512 d3ca974bf8856ed8a73af4eaff69941b35eef187d7e348d6d2ef9ee79eccad893e66270c7d814ac3871e09e21e603d34d7d1f24b182d9b39e9219acd42a7baa8 DIST serde_ini-0.2.0.crate 10691 BLAKE2B 40497c532b7c215cb5fe50635d7a3798dc6fcd02ad8ec842aae2a822ef6c55e4d736ec676a10ce71c1a3c72a6fad43d0b2e8e1f3c1cfb2f4fbc4177faceea238 SHA512 f1889fffb743b97da434633ad7af4d24ef9e22005bcdb5051e00802ddcd2be92567050123be2059a6986ae65bfca4090dc2b157d87c26ebc67c4ff785db8b347 -DIST serde_json-1.0.64.crate 115138 BLAKE2B c61a404db9800cfb4e2ac29d4e287a7c8f388b62407d5e25e07514e2840fdf9c127476db35cb556b56143755c64c26be1c6b1facc7529067b06946ac8f54a573 SHA512 55a45dd4c60fd93d2d9331f6a8eac39fdfece9ddc1aae45ea27e3dfa81352f08c71bf03906ba99d0feb5df8d847b68547ecaa8eb5a2c76011ebbe8d4cd5bfc2d -DIST serde_json-1.0.66.crate 115121 BLAKE2B c46c65339ff79138649df206f2ec759945c31ac11bac4807a8d1e76095c1937211b0b4ebf88c69d2d22cbd90ba25643a74cafeb291e815ddeb5c5ca208eec9e6 SHA512 8cbb64a24781a94e9448dd39f9429830fff6fe61be3772c1ca825f7d489ac3c06b189c42730129e281d8f43f7128b3b9cd2308727e625763588bbaf61b54d1d1 DIST serde_json-1.0.72.crate 115888 BLAKE2B 0770707160014ef19f54ab6acb6bf8cad8ae65ab47c184912aa534b927c0743e66273e93c7e3190102428bc71914ab4648bfe0c2cae9416afe6ea1d7da217996 SHA512 e48129cb5c36b4999751302fcee811b80f2113780c12e122b13d9fc7a31af7452183ff89de1793994edfdcae61a80db37aa492250a0d69e9180659418a10063b -DIST serde_qs-0.7.2.crate 39331 BLAKE2B e5e20306c75b4282648dbb4cee7478c31b65200a1a66db1cf549254258156eb8af689d8efef3d7f22c81d94084d5da9467e752d744a4391090775c5425f2119f SHA512 3c9b0fc9186f895509e1f0cf425e781c9fc87a455990e686ea9fe052869003247170a95537c55b4706120f9f7d6005b38d34edfeb14cd66743be37007544a639 -DIST serde_test-0.8.23.crate 5068 BLAKE2B c6f4fb735796e3c9832f9b257aec426547a37a8a410a422a2e35b95928c66a923f92e221981342fe3516ecdc9d67729fc35fb3810a727cde61abee3a0a69215e SHA512 bde1913e885d47eb1f96b352baa3f6d4f0771fb9cd35e3d0e6a43a1dfc9abb6e58a2191947d8e3c75ab6023e7ae17c6ffa5ac89c1484099ea30dc248e59c59dd -DIST serde_test-1.0.125.crate 19245 BLAKE2B afa4b39eac3877031a4c0c9f30631c81dc03dd5cee9234ebcedde431b3d82a15794670a39988c3b26ad129f1b17548c8c8c02c6ddf0d66ab3e57c0d55d3e3163 SHA512 21db4d09dc9f0465f05058a42ed68a44207a86c67111c1df9a1805ceb97d8bca721a6060cfccfcaef8897dae353cb77673555a3e3f75abf452bd3842b2adfddd -DIST serde_test-1.0.129.crate 19228 BLAKE2B dcb0e2b8e5279b3904d2094a3edee3fccd9294974e173a8f68211e413c4c4913b7697a08f54fda28a95f4f37ab92087033101605da11c076a6ab0aaa6ff7b2ca SHA512 0282b75cff42c6fdee1015ac7ba39790d8be61ecc81090238ca3e39b39966d07f595bf602faf7b0a536e045755d394a32963eb2231fa6a8dfb9d9d19f961618c DIST serde_test-1.0.130.crate 19234 BLAKE2B d9c8e86b660693232978670b9d18ee3d829daa3249bd1d99bff1f51f6bf42483be8b9f9b77aeff3c68bc209cf29338e8ae74100c8b7f974accc3917a1e6c9637 SHA512 d6537464bee6760f674941cb3ba34ee804b641db1a5495c01d29e29380b8ecd14e9fa799356b3bef371e16c19092047c8d348884496e784195c323f9f4559910 DIST serde_urlencoded-0.7.0.crate 12489 BLAKE2B ef64d92d79b80521ffe90f18534d0a0f20834e692c708e3126d3486b1585aa228e3140be81984256f0adc71c764d5c2bb66b755b9475eebefcff67c952d42372 SHA512 2e49d1113a863a45235e4c5df3de1221398091c33b9eb5a806ea496902090f82d6dcf4f478f897ea54eea44f553fc20aeb2c1c124b81806b0704dd33d5650a13 -DIST serde_yaml-0.8.17.crate 40805 BLAKE2B 8f70ed3efa5afa1f8f45b2c107463799269d745705ac2b90e8ce69c090f4f52721d49723dc48967bdbab30efe853c661631063fe16bc3ceaed4d0158f90ffbcb SHA512 3e7a4baa156ca1d9655a76fbaccd2d87b6929165972f6390316c9d4d55fc9815827e3c4bbb8a1c594f048dcc9c3fd6f4c55370df27f6257dbc28e2066274a7c1 -DIST serde_yaml-0.8.20.crate 42755 BLAKE2B 11cdafde6974107c66d7e1de25c0719d5765ede6800662bb1c82ea80b6c703b6a4c6d427be9e515f11c37acead645fb837d4a7ac6d8176af781c502c5c507c05 SHA512 063fff5b104d8d093a5a1bc1c614f89a1bf6ba817e3e0fcec73849d15f86e91e67f30c7e7e4b3c35405d23d100c007961a1eddaf5c5e5d83075d0d44f8927d77 DIST serde_yaml-0.8.21.crate 42603 BLAKE2B 4556a2cb4f81a1cc3ce7487caed863eb6403c966f38d505fef6ddad0586813612b0b1d5d6c32ddfb3a7d8dab8a870bf4d2bd6b06321e28165ee0b14293ec2203 SHA512 82e5a6663392b2a3e049f735b88b35023bb9255167b0e396c2cc5982b014ad2e6804433d15ffd19fe2ffd6e423a6e04e9a32b4b3d2b012adaa1f4f44996a81ea DIST serial_test-0.5.1.crate 2993 BLAKE2B c72cfcfe441d1d23128d442a3d24e83858e598dd95bccef0a462c675793db0aa1ad2cd03daa73441e84c8389b8dcef9b4698cb8eba8bb5dfbf69e524331950d7 SHA512 e1a0f7a24981698eaa6bcce8f951863f76e8a2750aff3191104d092a06021c39d4eb2e9b74e6690b0dba0d674a216ea170efe0a5367d22bdef72c2006f644a4e DIST serial_test_derive-0.5.1.crate 3609 BLAKE2B 54e408dc15f15c26e116157046ac609356b6d92d3e5bd27e08c31da537ec526eef8e6e52df1f06521b98c6c0695197b0b2ed654f0e46a45cf15156db82688d08 SHA512 e3f4b3c2eed1b284dbff7447c2f912343f9b95cbd88f3387c0136ca42698b38a607c752277ee4590ded9f73f475325d2652ba67ba029ddd54711d9070ac5f43e DIST servo_arc-0.1.1.crate 9817 BLAKE2B 88586ca0c969df8bfb3a04ba4a689606995876434877a2cd48a72b26451deb6fdcf65273aa9b03948adcbc66b2450301840910e5c4162b993535d69585c62128 SHA512 59d531dcf7a9191b8462ce395e713194994714b65275c0af412186f862be169d0c6fc5d86603332a1aacd8af9ace934dc78531b9cb576cf8179ec35709225447 DIST sha1-0.2.0.crate 4258 BLAKE2B e7ad5adfd961e958207877e40efd953dffeadc03981d70b72a8816941a08163fa9eaa6126f7e37d0a6ee87777049504d37aabad7c41af486aca19908f843bf0f SHA512 2b0a48e1c0e498e2148b6c78245a3db3e2d825fc76257f78d85dcc730235c415a25943b9ab639e10e11d0a5c18528fea81830314c685bc120e8e8b613d27e8ac -DIST sha1-0.6.0.crate 9244 BLAKE2B d992f1803fc17f8f8081ccbafd07ebb9d78056a705444b45dd51b2f57cbdaaf071685b8e6ad9f4fa21e032cc78b4305c8101b079594c7bf6e67894bb798b16b3 SHA512 32081c99a0cd5fd6e651deb711eb4c9a8bc71c12e26b25a72b2dba9a3286502e56b23d068a2899764ce1cc0c615c2c1b22a6c7aae63e07a758745b533e70ff0c -DIST sha2-0.6.0.crate 17463 BLAKE2B 22b6fd6330ca4b8c540b98d2d1d0761093c1392b7a0fa6f376223e5c692dc4aed0ff7e48e4804838054fc98bf15fd0d507dfa12d10ea204128bf6214c635845c SHA512 74f7fec02721e474aac5cb39b67af35fc4863ab9b041305cfcd1da0296bbc2e69dba255b9705778db0f7cf85c5dd584254b1399ef5a4ad30fb282d8233dcd6c9 -DIST sha2-0.9.3.crate 19649 BLAKE2B b4a778aa9b5f2e66d5f72679f25c8d270d101229b1d815af4923ea6598e395edcea9ee3c14746eda83e5edd1e790bdde672cee7e1fe57537856948b87a4063a4 SHA512 95c6c30b73bd3ee712b29be6ebb66f6fdf5256f37a6345e9412db74bc294260d6edf2ff0c21ac768e7cf0fb100f45f23489138e8ec1d4ca6f695028ac42806a5 -DIST sha2-0.9.6.crate 19879 BLAKE2B 9a3d8b25925f82ec6b0a4cfe09ded9d67648a07679584e5d6319125f1be4ddf9a7440417c28838bafe5de35199bdb53f308b99e97ec0f13e262f75c7c3a767ba SHA512 c1c6982c80c0698d6297c0fe90c7fc4c4bafacdc07843953a6fccece02d47d26e8d8a0185f400ad989b0ce5bec0852483db701f7e0ffe8c767c9f4c314f52d68 DIST sha2-0.9.8.crate 22132 BLAKE2B 233c2160961729590a2ee2b150715327fb09a1a38ca13b07c2c690ee6ed6eb7d180c54d84e9b3ca2e92e48d7ec923543e893786aa81b5942ecbca27b40ca12a6 SHA512 4bd858f67a3ee5a22769aaf4161d823884e112f99911d5461cafe746a19fafd2d8946eb3aa234953efa06a4dcf7becda70db6721c0d4a9b6f1fb670f31f6343d -DIST shadow-rs-0.5.25.crate 45073 BLAKE2B b1a6b627093a4721610486473f4fb5c429b569bfaa6c89a1e714291c9e423696ba139a57f30de4b916aefa2d399819db4b74959042f5a59f6a5a6e6a8613d7c2 SHA512 9ca45d3780f94fadf6e30a276c9f7832d651317382e75ab7ac7eb6d5484c6cb44e6c8dfafa6b299eb2a6072e5d9421928a84d17d6e5e6b186308d8e7c0591d91 -DIST shadow-rs-0.6.13.crate 19200 BLAKE2B 1b91af006ec5bafbcd9295122800775092c8232d44181547c2a6a72f1e0794eaca4c21cad1303727a987db770d4b80739db09934560a11ef798dc28b74bbfa90 SHA512 252396ea188f94da04886a49b1b3fb9b28b3cc31abdcf348d5b01e90654cdb34507a02bbc5bf879bab4aac1bb14e00ceb829c7d7328f11ee8d69acdead1bcb30 DIST shadow-rs-0.8.1.crate 19088 BLAKE2B d995dc3e9fa5778d5cf667fd90104ae48e3430f173d84baa4f65af7f49562b5c59888aa8685ea917290f49db6469f53993c3df04f1dead960891a7e1fdffc4e5 SHA512 36380be2e35c0911bffb37895fb2492219615d764e14730b206ec77730fc9726923a9c792e04b274ed7959fa5739bca58c27416075209ecbdac2dc83a6f1f1e2 DIST shell-escape-0.1.5.crate 6847 BLAKE2B ccd71a73b217b375843d3f0a762b3f5317bc0fdc8e43380a17f25e1ffdc391de0af7b0e4472be23241a6654f5b6ab799a51bbed8da35295322002c54ad84e9a5 SHA512 848f8d47d802b82e83f113fb07f44fe962628379481d1bef9d15f2e5821a382c9928c32175652361aae9fe4c8fa5c1dc1c89350db6ef5e68691bae4a3742df93 DIST shell-words-1.0.0.crate 9798 BLAKE2B b2511d6a956842346f672edc9a3a3554af6d424c3ccad4244c190a7edb5c6d9f18166d91a90ce2c4e86239b858cb04f36f3cb2ac0f1e64926bbc8377f3745d57 SHA512 f1de4606bb249fca7dea437464ef560aa49839382716b9c940738547a5def28337501d9ba77d96a63ecb956d3c49867d6f4742f14946448a2c9d0b1ecea9ebc9 -DIST shellexpand-2.1.0.crate 14697 BLAKE2B 257bf22e55a71a3cb11964de7613abdf1928ffa969336584401c2976245d32108c44628a5240a6adf763a33b0fecd10bf4753e7aa62793055e86879570935ba0 SHA512 90d32a5547691c9118a50748feb71bafca44718f0d5ff90cd5d4d9ee893ed4cad2d761a562917f7f26a8ea39154a4aba8dd6351fbf38f8bbf9157aa7c7947413 DIST signal-hook-0.1.17.crate 27085 BLAKE2B 0e58cb64b07cb8c76a043f603edbf27bcc92040a1aadb2d0c96993b1ea1a55ef63a222ec51e1396d95bb4907016e1dbf20ba3f0c1915303828f187af44ba2df4 SHA512 253d1478d7a6491a0b423637a706c941cc2a9707d32d29126f48af808daf8acd88e59013936f8e164df687c04e3a8f5c201b5eeb1952e3269b1419efdb4df94f -DIST signal-hook-registry-1.3.0.crate 17786 BLAKE2B fbd4284bc1020145b92557a99628b985860bd5020cc870ceb6067933c8e58be11d7bdb3c1f715231ca2f0ec2930487ceb88a82d9b9d1c0a31bfcf4a581a002f4 SHA512 2576d474c490deb6cbd759985f55340bb4e4ae0abac3ee02055bc30fa4008fc96ebf4d96f0a85c634b4f04d57b00243625194b333cf330f59fc82286bbeb30a9 DIST signal-hook-registry-1.4.0.crate 17912 BLAKE2B c50ade90e580e5f009832d812299b33529e53f68e6f1b7f5f9b5ac9ee0de502825c7bbd66199a65d4494152809eaf3dcfb676152c5b4f66c7a38b33551fcdd30 SHA512 b564379e5df1061739734179a69897badf9e2e6b469e091954428b05c3c7143885396df4bd008d77e08dae53729d2267d50fc8563121b086e25d8a5adabf6d6d DIST simdutf8-0.1.3.crate 25813 BLAKE2B 333301ce1309de60efc30bc0ca7ad15440975289e2a7074e6adfecc8f0d802ca8e6d02e6b054bc1bc6f680d599cced85560a7a132fb3e0f002adbcff0e5df9a5 SHA512 513a2f172541143cd585e7e124f6394605ea940e9adcb5fb21c6909959443478eed7323792d94df092020aaf2e464eb0b1b19163c86853d1e2c2246e732010aa DIST similar-1.3.0.crate 50316 BLAKE2B 52093295fe68eb8770234917eba595b29a8cd70d031810240b686311186770bc84693393a3a758af88ecad431a03afae8f7626992e71deea62da8e503b212c86 SHA512 b1dac43732b05955af980df887e77f3b9429e8890f8bb85ea1ae91853f109c0e02ce5fba73d33219030e153da22cfa597aa96240cbb6cc543ba57881b9fa7948 -DIST siphasher-0.3.5.crate 9455 BLAKE2B 73a09ba949dc4ea670a01e4cfc4f34d8f6ab53facd656beadda396fee087b36afd895e2acba5fecb796fb629b0f56bca84f971970c2f771ed84f74f667f9708d SHA512 4887f7b7b4c0df55c185249a16041052e16ad1f7c80d69ca69dba76af7b25095f2ace3d5b2a33346797f74b63c476a67055929c2856a6b4dff60e8fe2147f8ae -DIST siphasher-0.3.6.crate 9708 BLAKE2B 652b226927c1a2020a1d407bf53582d10d9e2cf1e0a71ff07c6b30edb31d3def77b9e9e1f9bd3c5cc6206b2158cbd5753d6c05ea0010a2ada3a26ebf64c425d6 SHA512 2b2295b4807ae418ae03ad5b1d1a9adb8c29706179e1e77a483b0d1786736385e0681384e8f5879d21c1b009958659f2efa8c553a2a93618e66dd0660aa1e169 DIST siphasher-0.3.7.crate 10097 BLAKE2B 455b5ca81418aee667b4fe16092435e025353267e14cf4f911f5d48a18d9a46be04452ce1451a272f8b2073ecf606c6834b6d06b49687474bb7ac226383aa7e7 SHA512 4a8ef56085742de7ad638194b21ff3e315aef6de9b7590e736071859ffa2aa4a28cdea7e05ecfa781fa35a40505086a36d84bdb3ec40d679f9b83c2edffc4d3d -DIST slab-0.3.0.crate 4807 BLAKE2B 9c6cedb83d0b45316beb74dea08e9a0d1a1992f472da1c28eee656b0e73e704847a31a1570115c4d69d78746ae213839b671a1aeb6e718ced4a259a9503c8dce SHA512 cf138b3cd99fcf7c3e6b8e1a39f6b03d0eed1208620643faafd550c74cdccd1796810c5c847ab9de6e7608c8b5c5a3e14651e0c97455896bf2c10d230257f317 -DIST slab-0.4.3.crate 15681 BLAKE2B d7e3eb0374de081d1870d2b46c9137e5ec75950a8fec217e3b120e455fe847e9245884990fbff4d01d512ea297c2012cb1a64f9b169264168081f5f7d6b20b39 SHA512 8649f32f26c1354b3281534fa0e062a145b62813c46f9ff5989ae688154221b00ed1b8c044c67a4b78c00a2e3478a8eb9c1c96fb424c24cd6cefd4df875fbb15 -DIST slab-0.4.4.crate 15725 BLAKE2B 54f3d5e4e76aee03d52f25e2927c03c10d89fb7ff62d83ba6f56003daf8a98e63ec220f564107f3282e96bdf3bd525b68e71511ba367db2550d3aed18b4bc59d SHA512 a8232c85d9693c2a417201768a5b2ecd82e3a721fee39ec80e44c769c66f8cb3ddf00a157f376ebe4c168082550ec48e63af23de2da4f30ed343b4e3bd13c3d1 DIST slab-0.4.5.crate 15888 BLAKE2B da43a90a8c1e8b8e0d353751cfac036076be56421f80ca5c911f6e30fd19f43e2ab50be7163f22b2e9785286941d62f036a6778b62f2c9f640f48501276eec78 SHA512 9ab2db11b5da437148486a7da44f06eae2572a735764711145738f9da66b1ccbb8b974ebe3600d1ff7a6ddf07d1fa9dd04c9207c4ba54eaa8311c41d317182ca -DIST sluice-0.5.4.crate 7000 BLAKE2B 34d090675a38aead40ddfb52f3d9cf877df69284d472c6a4cdacfb571f20cd0a2d6562f3c0eb11ec941362580471c814e6bbde6bc09228d4de9628fdff7b378e SHA512 68a173ae4f6fb59d7947d1ddec7ddad3d288a6d7dc4b3613329395f0be735764e719d1fc5c63ffece5af5b4b463f1c1ae4bc630b1354068d2917e697162eaaf0 -DIST smallvec-0.2.1.crate 6065 BLAKE2B a008035f83ec5d8b3ffa3be3552aeb5e5d3a4341a7978afe97fc46739e9411f56397567cc699f671270fb8cf3096a891a675f8c518dd4f0988a74fce9c62d0bd SHA512 3123d125baa3cec1368de5bb6b38ead60df2cd60de9ed1286aef53e08ce416c82fcb32b624fb4e4cf79721cb0beca3bb19910aa3798db00ae445054b7b62df45 -DIST smallvec-0.6.14.crate 22855 BLAKE2B 5f96c825c57ee6ab80bc13469793dc7ee780cd856e614c6cc0c747e1cd43fd5e27b589652610198e7757252bb6fb25905f616ea82fb9d8a9ffd5c8cd394b4f49 SHA512 4ba563b542922523566efbe0aac9df499c694bea9ba8ba14a74026d516e02f1fa8f542774b8044150a8e27f01a4b1c71c5280b5a82f61d5b45f022ed223f3977 -DIST smallvec-1.6.1.crate 26444 BLAKE2B ca6c50a63acdd93a2131654d99e50545a6e2d08eb3e2bd57d4a8ee073d90c08195ee442745a8d62a68179ce7bb8e229b7ff8c6fcf46372a9844bc9280b7c85cb SHA512 9e6061c8211a4485ab54eb541adf40748e1fc3fdfab0849e38e5fd34fc6cc69ae78bd065b788692385a6b8157b031c2fe373900e13d3e56e94fc08d574edaaad DIST smallvec-1.7.0.crate 27459 BLAKE2B a740a4b7448a4c8d1bef59cfb6dc9a52145e40eeb38028c64c880f31800cd3a4cb8be17394742239dfa7fb692c749f9edf70e6df02abd7a1bff288eec38ba24e SHA512 d061e0059cd6bd1636424374848aa1d4edd21f75605844a7855ff5d343dbdb71e6eb14bd70de7947ae7ab58f04ff096a5e77aa9a1ac14cef59f657685c846156 DIST smart-default-0.6.0.crate 8169 BLAKE2B d4b19bf0a96d9eddb05b7530545a5b138464c8a23448abe60ad21a2dc6d1f335bfbd97b76a48b1f801d078e9bf84879c736b64b9d8d932478fa93e57d77590d3 SHA512 66ecfadb3c7a7a8c6ee48b62146a058595e87efc18f4962a7bcf04120067440a83fcb4489c7831986eba06450279546b019c111e2a2a01e7f2d52fb82e98914d DIST snap-1.0.5.crate 33022 BLAKE2B 0ce3c4379f4ab122e7785c23b42d463c657cee3179d2dfe909797c11a3730d65b6dd660d8626d0fabeb4344356b5cab8e632809845fb7c21e904bdc41594d52e SHA512 d9181f1ffc6605bf7628ab51479956f9769eca85c0942494dfdcf2c7e805173ee3d3bfc17510e72dad6e5c89b80b2a3f9c40b85464eeb79fd6d26de6bee66fab -DIST socket2-0.3.19.crate 33782 BLAKE2B 1ab3c61a439c1594e19c4a14958d0a85b54666532d16eaa9a1e40e586b7707b1c7b5a751fb373f16bcc26510abc25e0321808e721c0b33b7b04416b9f6cbc5bb SHA512 113d902ca0b966bc0bcad71e3b7d715c79cd075d9dd7fc4140a042bac91b3ce692fb0f1fd0216fa3f6286920b4a92e1a4c342d7ae8d1d98ded36e7480ddafec9 -DIST socket2-0.4.0.crate 37949 BLAKE2B 10cad25fc39a2141913c82eb1d33c14cc7cf54ef7323c0031558aac89b1045f7433a81a8bba83f21523a3ed0ec793189d6333ed19ad06cfc1b70c28d730aa9a6 SHA512 7731bf377bc2f6f06b95d563452bdf1405aafebabc9211f4bd3a13847cc154ae9cff0951130e630fad9f7a53eadd30dfb92b918ae239d7cdec57c327f2cc464d -DIST socket2-0.4.1.crate 41364 BLAKE2B 6b1ab3dc342a30467a9579a2dea338e3f5e2a73745f68cd65ee4f34cec390ad67794d2e32d21b01675ed6ce2136c8faa07ea7b8e262a5848cc9b1320e1e53a2b SHA512 71eb3e8d15cf4e88f801d740230710b5b52ff1434526c0e61e950168979ee715dd8acec217d1a5d6f50fa49536558ef94115902f936302d81737eb163db4b8c4 DIST socket2-0.4.2.crate 41721 BLAKE2B 453dd4071889bb0f27b8f99cc00230214a51c6855832401e85fefcc66cb6e4599d22fb64e50c805622d438271e80b7c90c349396721a49aca60c927fa9c2d4d8 SHA512 af4641d98737bbc4d14e82d91791af4705f9dbbec4d8b3a25e7e990a5c7ac25b48eea6c4a743b09db52a037c67a7b676147087688f4e29d6541dd1ad7ff9688b DIST spin-0.9.2.crate 28755 BLAKE2B 0ae0cc2fa0bd2ea93ab4041fdc76e9a80fae804f855b2d8d0b7167c105ae4697f3c4e9150c4ce1f2c6c2af0c3ef76202d7f3281d1dd12e3c0033bf282a0b75f4 SHA512 f6d112567df533063b1571e140929505f5c519479ac27fc8c1d02e3fe36176af86d12db15dcf1ff9376b251a20d4e991ea57d6cbe8533c62810c9f67d7471fd7 -DIST spinning_top-0.2.3.crate 48210 BLAKE2B 968c08d3e4839ad5c4b4ae6b5ebeff30650d61e66add4b70747dd1d3a8446ebcd943a6ea1c92b10f1a4bd8c46fc372db646621f5580295f4de27a3c02ff4df0d SHA512 203e6a68d2c3d7b2355d5c5fe088b1a3bcaa6a07c4eec790ed42020cea8afef1bb913772ef71da12443aad26c30ed78efc996e1f22754720c00f744c3d009891 DIST stable_deref_trait-1.2.0.crate 8054 BLAKE2B 287a65c3e5b47213544a43e57c60a54add60b4c2e3c8d042407d860cc950ba7ca01a2e67ce56aed6744992b61ec1f9aed3321e3d88482e33129548b7d51df205 SHA512 a13cfb22723f1f2cf089b2d07d657846f50c37bc0438d1a76096bea30214cad226b7a422c21f9e191ce87071da8a141d61882aedf9e0203a5fffdfda86a5fb03 -DIST standback-0.2.17.crate 29011 BLAKE2B 96081a4036d2e17d96f24be446f5179880f7089cce5dd9acb5140277526bb8395384225055b9f60749e29d48283f2251ad514618f460b44a6850cb75eee9845a SHA512 cd953c942afeacea01b2114eaae2d80e754da7df2f399fcd2cd5c6ff31a15b0644bce4ef1bcc019bbfe60c6521ee15f370b83d77b0a1efc75dcc35a81faea662 DIST static_assertions-1.1.0.crate 18480 BLAKE2B 358dd5ac413d06f62da0388e2016c5fcb8ec68fd7dceb0dbbcb97665c032b7509b7e083c20701648b6a9174485f117c02682ae4bde7ef037e80a85cdf6a0c86e SHA512 46d0e35f77941dee6f60f574c130472248063dc38494c1c4f84f7c048244cc2a58a86fe17c0990e3f0f01406b75ed385a13d00058612b27cf0e867c8d31c92ee DIST std_prelude-0.2.12.crate 5066 BLAKE2B 06e592e98a78e7d4f0d40075d5c77041019264cbfb50ff2f5ac2a22655787d3f70e4b270aadaa5508e965c9a8615b98b7f3307ddc42e62de708406f2fce14980 SHA512 c929e6eed305c337c4eb52caee63c5c016394ccaf2cb36268a289bf0bc74b0a20d3e739b3b7ca87e30eb45eab503203e04399c04d48f2d69a94da75cfd5804ae -DIST stdweb-0.4.20.crate 194102 BLAKE2B 68a34d4729ded806846a82f0453cd8a82e7a2bf5e7761725af4fdb70be2c9d9c0022c64c5d11a23c8f449d8da7b707e285a8a994b6f027500c4d11da8458d280 SHA512 d6e608e4124e92c94f22172ad1e985dfd9a8a5182f123abf2d837680ad7f791120774f9a483ae5f8d2066fc6e658045c1ad3ee8791a19caf1884970e5882f7ce -DIST stdweb-derive-0.5.3.crate 3894 BLAKE2B 922b52eebb5e21f1f3f58866dee0db28506e37a716f8d58924cba568783098fd236954b52f432434c28f0439e9b6153468c5c3e32f4feb3748a56a49162c9b43 SHA512 d47048f9b1a84d3201ff6189873606df678e22216a7b3e26d23b5708b4115564262aa8ab51151e2ea61b4fdb633ccd5e0af73e62548fb653c30545ea4800834c -DIST stdweb-internal-macros-0.2.9.crate 11828 BLAKE2B 6343aa183e07df93082845b10b564d17af8e65aed6d938054020519a8a96af21838c19a04f6f20d0c1e7ad511d9798f85ab780ffb4dadd049a7bfa19583aa7a3 SHA512 05aee9e19565abd18f781cd6b7e60a5d7fa576ed37724265eb4808b37d9241d89d0eca1aadeed7f3be5237859cd3d905b8e3ce5001a3f1d68ff002bedb7513ea -DIST stdweb-internal-runtime-0.1.5.crate 5445 BLAKE2B 6684fb69a8add47cdfebf7d85c784b3a8f9431ee43d8033d67781dee1eaa6cac71a5330c5eb1a12f5f3d73b863caec31d33985ad8a93d32088c506f70839970d SHA512 9a73f8007d6fa52031ac19f3a2adbe49c0690cec856c484cd81d534ad5b7e4002af0e6615cc9bc8d6753d0d3c1cd5a009ea3ca3750ab518b7aedfbe39b3ae11b DIST str-buf-1.0.5.crate 3852 BLAKE2B 94178810ed2476c2a47a63a6efab8022cba9341c7ce04caa2ff09c675baa5b17327bf4824b7d24339896143ab1baafe6edf6c6a4bfd7367e16a5506346dec6a1 SHA512 d474b6cbcc53d72587b21e8352239dd7eb7eeed859493382d5cf052ff78997e72ea19c9d0e9afb8471853fc71d38f404b877a09dd6dd92a7584fc6733516e823 -DIST str-buf-2.0.0.crate 4434 BLAKE2B 8b90c99e746ffddc629a3af92caca0cd903ce6e997ebb75bc1251145c9677e2d2ada161dca45dc71cf0f3fd5b60eb7284588e52299dc6d260c028fe60b74e24e SHA512 f071069e49bbbd723cfdd6c1b9b1e9c2cde951b9b5e8808177f066337b3696018df9cd855ba969f8826b7808359cf169bbf0755e573161238e4eba1e705d294d DIST streaming-decompression-0.1.0.crate 3733 BLAKE2B 8ad52dce1eba3a1f78102b45ac78db5331ca39fa66e5ad0cba906ba37a5e03cbabaab350fb48451be63d5fb3a0b76f30a04706305d5c36522ff5c5c34fad3d24 SHA512 73f9f7a94bf92336519a53a89e31aa2217b81c182baf526cde4a06218c4ac088debd5e937e10b524e7674533ea301384f7819881e5419135aa9f5f0b74e71240 DIST streaming-iterator-0.1.5.crate 13445 BLAKE2B 12ec6361829bef75a96dab9b567e40ec1847462b9c4d43e4a3ba914bfeb219e58d2a99094d504e602ac46b1eb1dcdec5b3250ede78a73134659d66fe66176cbb SHA512 243af6b29b3cee4a76d39f2194e46977303492db0beb577182322cef5caf931c4197c7e691951356615de62efc753d238d2bdefc0014cb30a818c88e55de4da6 DIST strength_reduce-0.2.3.crate 13283 BLAKE2B 8120efb6ebf74865c0bf70477a91a4e73536efe674fbfe90814c68f8653686c4cb83dfff7b4e841f689e9b0f31523a56deac863758a10dd80281632cba5f5f90 SHA512 c452e395b907b04c16f6e59a3e3ace00dda1f308d8d515800738674c97f79257b864460b4adaa376b88a3f424787791215886337d0b68b91493d85ab183a7e9b -DIST string_cache-0.8.1.crate 14423 BLAKE2B af0c9b9f52a246d5537ac2831be6aea462ce253b086baf6fb1773f760d566ba70917b686c2c732f60cff4c30068c5800b7c26f73763e9ef825b2fa619f6a7c00 SHA512 476aa99da2d83de7eabe68b3dc2d064cb549e2caa2b708459f883cc0a8f27bed1b1607abb1481959cc26046cfd4c44886bb87bbef5aba95a195a9d850311915b DIST string_cache-0.8.2.crate 15770 BLAKE2B 36e2984684931fb15371dd0aeb30d93312153daf65f8b8c720c16327b169078763c0c7b70a00c9670a0c8c3b1099c9a98488c893f8e90eb03952cc0e694b6fe2 SHA512 d4ae1fbea4de469e342ba1a0d4c0f26386633dcc46c0cb9adbb7983e565476a57aedf1798e65f21ee5326f96880ee2bb4a5dc1621ff7e7d0ca23fb3536dc98aa DIST string_cache_codegen-0.5.1.crate 8243 BLAKE2B 3ce7bd89edfdd58260fb58e7b954eec503dab2562d13274f401a0af5f7e5152a660298e9884f578e361557225c67c80c0342e5c71d47aad7ec43a47ea91c617c SHA512 c3aeb752cbdbcb78cee6156b726264d182e77b3d6ac89066c366d87d8bdffc32d83e6e59a40471f07d7c827717db25fa6fb489dbd3a650f2fc252a7c85f4ecae -DIST strip-ansi-escapes-0.1.0.crate 7972 BLAKE2B 39f227ba45b044bced56e944fc0ef147be93338bbfd76be5feb90e73e1faa0e0b337b6ebc6d57fe14dce11ad13e48f6db87d24c28f06b09978520c71b0e3f047 SHA512 6a8da540a7f3f820d64202024e449da7b0dc45832c4c3637cf4c8d6136098579463a1b7108c03923d2582479193e52dbf23039c4b4d0f875384066a611514a45 DIST strip-ansi-escapes-0.1.1.crate 8668 BLAKE2B e140f9cf55224953f0fc64480cb62a8191ac7fead81cfb891009ffb379085d121c577d6b40b726c52e9eebcedaff617554b0e0b56975048a99dde33b85de367f SHA512 ebcddc0af68f7263726d8f9dc3825819ea75389bc6f97f97f0238b17a06e0596f1562ddcf065178940e4f1963bf7a2b99eb02ec124f9f633b2fab1b443bb5717 -DIST strsim-0.8.0.crate 9309 BLAKE2B 40a8be506c43ee1ffe006ddc7dee98c3d418bdd205d57b78f5d1e4c9312feb57e1eaf952e02d92d4e0932db240c6fba45beb06ea8c4fc6de1cf1faa8b6a3a939 SHA512 1d55a8d946cd55f5f37d06aea536549ded95739fa58c0f2da285a0041154c181f663682bdcac643aa198b3e762d694a04f058db985c62ebe22b5c16327ba6d34 DIST strum-0.20.0.crate 5172 BLAKE2B 755be909504b106848079cd975331dafdf24914ebc22e5642d2b0e867a3619eb7424bea818cb3228d17baaafcc6ffe6ded22a5fa802e96e3bd685c7f94391cbc SHA512 4de0497d47ed09931107a7ee8a7b87fc00c38ea578b7c5910df98c71b3df0970b3cf0d629844c0e9a52864d43887cb435c0f419d26a68a23d0211ab0e86d1989 DIST strum_macros-0.20.1.crate 15634 BLAKE2B 61b36751545b80297a8f66391175cedb8bce5a144014eb789101f9adeecdfb85b76b598f9db556b64804158dc8118f3f9bbc49f13a4c99192bf68d40017fa4cd SHA512 c209a690370b50698c7489210dd799bb10e53b3e6fc84db370ca7aa3f205694a8f07071d25a75f37970a650bf1fc047e2e5ea4dc588c2604c980211276a6580a -DIST subtle-2.4.0.crate 12411 BLAKE2B 32968997d71c6eab4bf2736090469afdb1adab3d2064afd1ab34a2711294bed1f00a715c2c748b25412ef9732c96bd132e20384019ca6bcc0a01ab602ec24117 SHA512 ffa173d6678879c382d9165ed8ac4480bfda2f03a451ff120767d90b2fa17ecaf234af15c2d153be0d96c8363de82f0be1fffb7770f3bd417e2567d146b61c86 DIST subtle-2.4.1.crate 12630 BLAKE2B 05a90232bfdc2cf67522e2972bddcd8dc9a165b1d1cf775d0b1c8358fc7c4d0559b2b899126b6688b8ef77b8b7580b3b300f74a599a7ee77f99c064a3917693b SHA512 7fd8234b7ffa3ca7e473539cad958df0842186e1dd735905e0d4977564f40a5f2e18b58180fcbe52614a00964dc150bd9f6964500847ea658f22bffe030f5c6a -DIST surf-2.2.0.crate 52755 BLAKE2B 29d8fbace1cbc2d0d0d23bc5b1f4253dcdc5ee443fd2e5e83957c3c4608523f2fc36f535b868c5202861ce4ac148b0838439db2c40a56cf7f638def105b81280 SHA512 48dcfb328fd837fa0b80d63e9075b9339394c122b7001541da60d37c260f88089f8796f6c6f0a0a6dbcb931ea7a672401ba47545adc0cdce49d8a0d735219852 DIST sxd-document-0.3.2.crate 42711 BLAKE2B a02dee2c0c7fd41410fbf329dca47b85efbd605372245e18172192840626317229718e790b084cc87f9abfe124835abc6f48a1f1945e451d83130b0ddcf4c94a SHA512 8c2c70e978bbb5ac77c11f0c8a21259bb41aeba40f76ec31772a173b5a898092eebf951c855b8f068516c8caeeb2ebd5b6d4799b0cb3ede10d8001f36631936c DIST sxd-xpath-0.4.2.crate 45058 BLAKE2B 93890044d12b545ba3a76ff4bcbeb20bbb56b3627efa4d127e955c1e2c6b2654820d6151b3b94f4369fe87dbe46003766b95f438cc650575a6496fefa97efdef SHA512 81ff0329b6a3057cbd4db3234c12e91c8aded671588588b6a8e9897801a591877e7663d40414c0e61519fffa83f39e4fe8c1a2c5408fe6dae1a841a48dd462ab -DIST syn-0.11.11.crate 63309 BLAKE2B ee33d3f02af356faafd0c03539d1c86ade1f46db8bc30054f76536c1cf537b8fa0d990c78f86b1e5187392b31c5d7364ad5767ae96de5844e252c9c7c41ec962 SHA512 285bdc1f9b53fe791bd35b10a06fc106231c4eca908244f7ba7366a865452ec2dc8bbff275a52725d29c48d2065790ff6eb37c6eb9c1968aeb0af38c028d173e -DIST syn-1.0.71.crate 232419 BLAKE2B 8ddfa251bcf39b1a8e63984fd9bb895396ae91c657adc3daed70be6aac4bc7ae68138c724cc346618e1460e1bed95bc8598dec380e6dc07187ad4b20f527c192 SHA512 6be79b2c5e8b125240783249e215c35462ef47b330a53dd2711f053bfc084b71f1f92c3c237de9854cf1467a48592ad4e581a5d09aea7b39f51139e405f52e53 -DIST syn-1.0.75.crate 233068 BLAKE2B 8d4b5ddf1a18c59989f7664f0893265dbb6c833235afa430bf1fd224f3f542ff7385c5068a0da8841c9771ba9e93ce8974c6ae8dd0033235447d6a44488652bf SHA512 9ecda1f0cb91b4472309ad00f10eae80fdfce3c60990ec5f6510cb2ae8adb6f49e8b1d092426c5d1f0a7e9d669929330ac26a78fed227046dd1eb09a81d2e53f DIST syn-1.0.82.crate 234316 BLAKE2B 1d115a4fd61cfebf62657f8faf7fe8786b3715ecf0413a5d117289853b4ecad399611d92d7bed26e590236a4689bff5599787c04f83de1db7f6c771eaa032853 SHA512 9406f62404f1dec3ea37a5e583a8dd7daf646fd5a1b11359aea3004010b3b416a44e4457695ba5beb12b3cbb9fe437de6f73018faa364c4e48060f6aab8ada1d -DIST synom-0.11.3.crate 17120 BLAKE2B 30c6bdaff48eb2f3c28a348f737ad4b9ebf4b385de75ec2510aa9fef3b426a8a00041d0dd1649d11a9ba39cd4b9363e0e3f7d808cd0b2d588a38edb395be86d5 SHA512 a9c75d667be94c82c7f545e0569bb5858afd1bfca6e045fd52f4ae18ec4fd440e7d374ef45dafc97bda6c749cd4b4e185d8192b833661657323229803ef4a28e -DIST synstructure-0.12.4.crate 18105 BLAKE2B 8e7efdfa8681da8473903aa22e8cc55abcede012b29a91d65076042c89a21048b44b774ca5c3f788222dd32fa634ac20f58ce241eff610498cac19f659280d29 SHA512 ab3024644719c4afc9c06a4d3c499fd4934c104409d38197a46d62c9ce30414f88b3e7bcdd7f245cfd207489fb54ba41e5cfc1db94b0dd12fb01e9c00c861c47 -DIST synstructure-0.12.5.crate 18020 BLAKE2B a3ed7e10e13e096df7b624f567de3406b043db4ee7bad6f25d8aa093af4e9f3bbb39e22bb46fb1b5c7c5c31cb65218c79d959eddec8ba32959ee66f422732a1e SHA512 62d5669459a444ff91bcd630ff58fbbbb70cf1a2240c7caf1c4020c1aa8f9010d952172470e41daed75fb3cfe154761ac56675b9ca7a754bc9aa484c3152560b DIST synstructure-0.12.6.crate 18429 BLAKE2B 7666cd83f82910e036e5b57600dec9a1c2e559453ccc2f1201e2ee4ba64f2ee62cfc1046ded5cae64dd183967b9d71cbfe4b60a88bcb93706eedd0c4ab69be4f SHA512 6ec5dd7ade904fb6d79c2be595886289846e064b8c4100f780d8adfcbb41e6ca67f4b1d682212f4673c2169f889a042049b31161ec3cebc3f399751124f01f9c -DIST syntect-4.5.0.crate 752883 BLAKE2B 9c9ff2cc63ea421c0b8928a0578b278883d0a86be7f7c256820120a858f8c02b1d292e2474e5f2b63486e45cf5387e1a8ba4db2a5c9e7a2b0cf4eb687b42ffad SHA512 17653ae9baa4da049c899820f6033b3e7d71b96ab70b9c12e57a1ab305d155b12acec470167be2a0a37ea9c89ec4d19850f72d456e6857a7cf4dee65fc288273 DIST syntect-4.6.0.crate 750938 BLAKE2B 9c53e142093f6d9fb703f4fe3f56db15c0bb7eba92cba9f31e567e9de2bcb129b7b415cbaf692c1e1021b12184bb3b064ed1996654581aab3d5f09e992c0eb5d SHA512 9e320afaf4c2adf41dd7e20c5d95e3063fe8d2774d8deec7e0df3debab050e96a1a5c85d1732c661ee4022dc5bf1abfed2982f13269689b527f35efb2c82beba -DIST sys-info-0.9.0.crate 20287 BLAKE2B 1a6ce4ac9d57d41160c145f7c5ecd671d306ecd56be6b0de49fb6e6de72c01288b863c71c64fdcda5bf828dbbcf288fb11a7289686de0154e81151cf808a06bd SHA512 847556f3e25f2e0a97c76b2b00f350230cb234be0f93bc5506d0e3a7ff3365deb439c7aea4f0722ab3d2f53ad76e7d05aab2167a5be44cad1e85ebdcb39d7842 DIST sys-info-0.9.1.crate 20589 BLAKE2B fb3c43a1368c9206393b28064b38a1560aeb863b9b0bc89c9bf6ccc344a46a590296df3596f421218d78c26ae90d3f869ef0457c8c34e8e8dcb9bbd92fee0450 SHA512 52e23efd5bba1ce07d7fffb8c2d6864a8056b1e8ce1b85c4d2d4b37b9d57dfa5a6c0eae9e2018e07af47469c3f7812ccbd27351cbd6c95a7b788ec87cd544b2e DIST sys-locale-0.1.0.crate 12311 BLAKE2B 6a95e54753905c6676682e85bd029a560fa0d0b300f46460110a102c61c674fd468af0fd3ca688c3423578afab03c20c0fee948086b6f1132a3b398be7235c2b SHA512 cd80b09d632e456af1d8346031dc4da85bf0a7960d10f07d73342f8f6f1963e13159a7544a93fa8621f90621f47c81ab8427fbf7b9fb1e539e7625ce54091cb9 -DIST sysinfo-0.16.5.crate 85199 BLAKE2B c73f7b1a11d39974f1f6bc09f9ed87b62831c2d6c730cbad66dfb3064158a4f403d08d70985331cafee39daf74ccccdda6de7c49355bf2b80b9c77dec5c6eabd SHA512 ac96a9140a8088f625180818d9fc421aa35605e89bb6391560a1c1fb407cc9e65cff1a64ebcd6b752d621025cfdc30c050b2d9f644cc5a19b65961732b689e76 -DIST sysinfo-0.20.2.crate 98715 BLAKE2B 46bce044d96406c318ced1c06e185995e782efcae7c54e58015c081580acaf6ede6a42350e74d386456b6e43e7c31d8bb1c6dd2826f8b18e3979a3cc5debf5e8 SHA512 1be51fccbc741c842892205e72d3894976babf891043efffc8c8daee95cd2d9c0e8bcff4dc6f7156a61178b0c508da5e0db2aed269280e0c6b86b0bad604f60b DIST sysinfo-0.21.1.crate 98587 BLAKE2B 1df4bce1566d99460884deb0bcd077667c3a2a2c39e922dbeab795c8656978b9f70807e27a116035f147d65555402479cfd2fb079601a4a2573a79821277304b SHA512 7966288ea3f86d79fb0a4fbdfe597d889d6678e8859f5fcc9c53d7bb68a4222cd9a84d23690c64387a9d4cfd6efd9cbf2de2ed72eb09ca4f8e32e9e9aaf01bf6 -DIST take-0.1.0.crate 5543 BLAKE2B e3cb0b38a64089090b477531b1bfb36e5f8baf508f0be66fa1b393ad7eaacc0c668b42e882e923f8c3c4013915f5cd286994c8c27114483ac475b6a6abc89403 SHA512 b2fe508bd7e77f1f38a9981c0d2633e28205ec03bff8e21bb49670c24b8be6049609d417b34375327707049bafe5ee09db2c998de7eb47da75c282fedf4d7dd3 +DIST sysinfo-0.21.2.crate 99122 BLAKE2B 302a68275501f3bfcf90f8820dcd06fb66edea730bb817480b604387a8b9835a26608a7f271ee44c56384264b0043532d7bdfc1a8d4a0a34a1cedada8a4bc69f SHA512 1e8bf702b1022508b7d8718e31482a8bbcc1f59c62108bbc2a0cd284a0924e92841e3ab1a79e627ffbc2abd1045e9fa842190fec1d2f730f52ff39fa930e1724 DIST tempfile-3.2.0.crate 25892 BLAKE2B ea6870c642c5712c7c96072a5d3dc04d75c19cf1413081e3bf53c1ae6c75e05ab537446071cadb5460b34f7fb7715a03005a1335a64139458db938c3415f7c0d SHA512 56d1c5af7cb6863f9eac990354126979534aae7bf298bc8b1c918c7317ce2ba31f53089aaa1ecf8baa4a39d4111d74f4450be82b509b3c2aa0428880029e663a DIST tendril-0.4.2.crate 37138 BLAKE2B 444fd1ac19fa456075534123f73774f95f36b296afbb4b1e82a6c306971928c851dd663ab6baf09cd20f65b06e7ad46a726690df19bf00c3dddd164420b815ae SHA512 84cce485442a2e1ee6f8806a20dff038b1ff446d22ecfc9865c9ec8bcd209afe0748c7dd31f89c45cd5fd98e34abc1faf3c7a21b6d4bd5863e53d295bb700b3f -DIST term-0.5.2.crate 37638 BLAKE2B 58a496673b9033416f40e29a0a53c0b8d50e413d3922d3685252c96fd880659961b4ee48281ece5b9d6d97e895d81839cdf886fb0a6945af25b873a905b09700 SHA512 421b04f067f66ddecb615d715c828c98d3fa351b3490ec76bfa02bf430039717da5a168c20033399d5544ded5aed35c2aa4c9e6ea5018211bfe615389d18f3d6 DIST term-0.7.0.crate 37082 BLAKE2B cb7947c696f71fc68bab3b25cc6cbde74b92380fdde5447399b06de99534b0cb2160963792824ac74a350444ce41a4fa16d6a9792a68d84578a15ab37ab76ca2 SHA512 9de6e836f1fd205b3b58645ec880eaabfc0fd8991e3980ef90bc6184b370a14676edb688a2a75bce412dd8ebd97345aef742afe5b964250e2b6f84e6b15b486a DIST term_size-0.3.2.crate 10917 BLAKE2B 2302faf4cc03e0e40e4b4b0ca79cea5e70caed8087a16f2b985673476041d19ee6908bb17931b453e63a89e33158f7e01875716879964664487fb26395ff7f49 SHA512 7e820ca667f841719e82cf97e90bd2546cdd7ecd4834c68f8eeadd2e530bb13ced1d058ea7beda5db77eabacfaef64b8c3699c482bd912ff570f6ab78149dc88 DIST termcolor-1.1.2.crate 17287 BLAKE2B 5ff748064c9fb6663befce2fd299edf6a6deb06ea72d21a62d6e77642934cca0933e10340fa84f636631cc08c76ba83ef2284b2212759129d54248e5fccb4c49 SHA512 f37b034345382cd621b1344a3fb301ca3d4d9db8b5858ac1ea82372c983229fce3c0ea8213d6b7e91291b6034affe11e2c3e593dbd95256294ce5c584b33e14c -DIST terminal_size-0.1.16.crate 8755 BLAKE2B 33cfd9a62bdb77bd096563330ee5f07465d69c16659294a9e6ebeccf3d49e17473185fb84c2a4b50d29b084da0633b2ac4bf41801b0bd17f5c927d9bf68fdce7 SHA512 afefb529a80249ec398b444f593b6010b2a85e65e29557373cec72ee18bac5a5359aa2da3cda28d494f34c8eaddfc8a82029fb936d49726261ae0c5557bd5c17 DIST terminal_size-0.1.17.crate 9141 BLAKE2B 048d8e8e9dad08aecde12323681d428b9182afb737136cd6699e13d231f7882091c9167cb10a08e5151df912421a6f89132645627e42ccc73d07553cadb1c8cd SHA512 96ec1bc8abd597f01ae59da567036d5d40b422764a4da662e2030c3ef4ce80a983c8b6a4ef1f34d88e649e0b1ea27b206d56a31924bcd2d31ff7e5a2e96d4201 -DIST textwrap-0.11.0.crate 17322 BLAKE2B 257428908342774593bbd3528fcdae710712ff54e8a711393a24356d8ba0e16e466a4b20c05f942c48ca76b3b5b5aaa90ec202f782cad892caa8b71ccf124da6 SHA512 f5c0fe4f28ff1a3a0931e8e235b5157a45f67967985bcc752418c5ec3481fca44a8ae4800088889b37e8cd0533f53d3c456d5ffd19b767b3f83a87b49a2e209a DIST thin-slice-0.1.1.crate 4484 BLAKE2B 7efcd3c30dd24c22641139288b0c530ffe56dd82f26c2c31f557f1fa09ced695cf12b645fa6bc4c12324af0b9b05792a9cff422b6deee3bbb06b57a7cec06f47 SHA512 27b9e6b2a8485b3f89f659d80d67ccb96370f3371996e39f97784c40bdd7fef5429fb96f48d9c045eec5906051708f169fe4ca8f5f546a25e5f6859cafa42925 -DIST thiserror-1.0.24.crate 16580 BLAKE2B 5cda4153e32ea4cf2f4f45fb60f18230dca61bc8d9b76aa598f7336babba8d6615d929ae325c84976ac60f4e8afa803f96d1b2afb6369445934e1e657bd9c846 SHA512 38ff620f1d33041600faaf3162ca0c1cfbe191100b6442513e4076a35296e97e28dedfda25dd0d7613f6a81b6b72816c11ac37424d94baa295142b1002d0e962 -DIST thiserror-1.0.26.crate 16711 BLAKE2B 4524c3ef351eaa1266cbbbafec6082695d5c1485cec7bcfdffd64719fd57efb4e40f119435eae5c6f574a80f59a68bd8c868e2493ddf36f4882e7de65fd4bf93 SHA512 bfe93a14006a3d9e0e996b310718223f8442802a384a1b999c15dd1a25f642c5cb2db7a50a69cbb097ec50ee3b0129b509f19225ca714a5c459d4dfc8255d84b DIST thiserror-1.0.30.crate 17748 BLAKE2B b9d8a8f824de03c57af43d0ef8f2e157321e7e6a220660581299a38988e7bd43733126fc9b8d8b8ae38ac1d788ef08fbcb2352beb5ddc014113e0058c2bf60d0 SHA512 0e6cbc160ee1b6236a9073dec225a4290e7a82632ee7cec00bf02797b04851adb2d3071fa268b54f7fa9fe22eeada55a83d44fbddf824520023608eda8ea2e99 -DIST thiserror-impl-1.0.24.crate 13361 BLAKE2B 4ae667e69d3dbe755cfb07083649c6d41bd5bddcfbe1d8954980e93390fb8eb51ffce6fb2d24c51fb676b6e75051ac66cff8c0cb3ad6683275581749f7c9f9f5 SHA512 4309506b8cf939e6a400542dce772b951d40faff3b2fb765ef87299547615fe18dfb877844b5ce892c594623a2de941a32629e53e2d59b03f611cfefeb169db5 -DIST thiserror-impl-1.0.26.crate 13431 BLAKE2B dc753a4cc1e7b8b3eb44bd9462b6b19ee983fefbfe1f60a974195a536fdbc68395942a229a1d2ec7a8594669a439a6efd3cd22573a647a7fb7a371e793fba645 SHA512 43eea818b72469bc4d5c28e449c2e284c1e11b2674b9e67b1788af7ab66bd64afabfd8f5861938a7f9547a9c13387e0ce400419c6283bbe1e899d18d998cd921 DIST thiserror-impl-1.0.30.crate 15230 BLAKE2B bdfd4451304a2ef4ddbecb48eb1a1307e6eeadab0860c785a2b6a5e7de270ac42ac4f11e46eb9dba77ec5a86b203d9baf8e4fd5c83cdaa10e2af34a95d29d2e5 SHA512 465b1d4eb79075d8abb11f5c260d68847ea52806a2f519515705b03da376fffb3686bebb23c11462b1c59e1ae5b3ee96d834c62cac69862c491001b1ff7cbb46 -DIST thread_local-0.3.6.crate 12388 BLAKE2B 290c35e5327e80a5cdca5609252b1efd1b78a654fc9ab4ba68eeaa3c2769d844f725d17d91cbb15048dbaac84913c51edcb39bb402882c9e7b4d0c4e4811518d SHA512 cd783d3d9caec43868da1f6118d4c4d520e03b9f1049d8f15d2c12482989401d3aee748e04a149953d35e5d6487355c2891d44569ef688bc1d45f01b6461d253 -DIST threadpool-1.8.1.crate 14408 BLAKE2B 8bd64ede19184e18460f6b2ad5bc888d6facd5fcaa5b43c35269e35909c9c68a884203f5c4b92619c097ad48c19ec29f73085755ee348cc637233ff3b5b50ccc SHA512 adaa5aecdeec25848af15b160e5b39833978454d834974211bd586d81837f2ce89e5590f08b7e0d4868346cf57056913a5d41bc8bf92b89109ed769cce4a8be0 -DIST thrift-0.13.0.crate 42408 BLAKE2B bc27b6d9182e02cae77b8db2057ffd676a8914233c28cd39e36ef604eb0c5a352a80c5ca072e70a179c09e1602b75578681f37f546a65f16cdc5f1a2dc58e663 SHA512 392c2e4e83fb2d233221206131069644c9ec96a855030bce04c9ee17baa97b9e773eaa94dc632a5745c61533a42788ffdc51557fedaffbb16ffe478184d90d80 -DIST tiff-0.6.1.crate 1399263 BLAKE2B 4a0bec5d2f2d254505c3492e519c584e2f80f77a6429f44da36862b5d9fc1ef9f7396689005b136c92f6786ac64f9418ca7bbf49f36afdf3f10e8d2c77cf0f51 SHA512 ece5aaef610e0a7bcdea8c40571d497cd3ec79931e25129060b4f51cb40a28ef03fc131494bc841fa5b08eaa49a5acbc9332553cbc542019f1ec5eb5945d3538 DIST time-0.1.44.crate 28885 BLAKE2B 5e2ca11af9da0847239a086330d0cd00fcb5b63862f9dfec46f72a065bb35ec2236a21ee1c56bf65e3117105e7815cafe67e3725b8575373e875dfcea401d967 SHA512 736a38637be0193a06fa35d42b4873b04a0a35d84cd2af85b7f653a1b67b95078577134bb187b777730e73cce67f437b45ff5c72b8e3f1f8e2ed3420ea0324cf -DIST time-0.2.26.crate 65327 BLAKE2B 7d66f2b7fd2041897ac65a703ebe02d0ee32a9ae423b42523f4d0b202d1e12dc77e1d7a5c22680fd9d190ae8319105e7aa360b2d1672478d58ced85773fb3085 SHA512 4e3a1d7c48882ae861294fdaad9192b584ff7fa2f11946bb287104ced8d8c7e4b9c8103244b8e87349f13cf971ce83f3c99cb0344c2c7c5e573dc040962c5602 DIST time-0.3.5.crate 72732 BLAKE2B 7e7e90cdaca05f60e79b0858826fc59ea6a6e3113051c0a2cb7e0b7e7963e6c410595c8c524a97281f754008f5ad3090c7cb2a5098b00b922c0e898441f02171 SHA512 751afd33abf9879b7bc524b50c63ca4722aa39d5bef3ddb371ec4d6efc9acbee9033c5813ec7d31e5e627e3c7fcd491ad4e7016130b7b09f931023e2bf395574 -DIST time-macros-0.1.1.crate 5447 BLAKE2B 4b9dbc879711804f4af172e46e10421d35177242a10c6dcc32bbfe9cad7ed865c7c3d18cd9b8ffee79bc47f0ce5622bc9609ba511d7750a358b6e5cab8426934 SHA512 c6792be54dab0847d621684b4afe2e9803f2004bc3d4f01d84802af7f557799cf4d2b5ff6fe58e0b4018d92ab3868feb9b5df5691b2c8ee188e6e7b39deb8c8c -DIST time-macros-impl-0.1.1.crate 10384 BLAKE2B eb19fd944b379dce462e2b9f8fc5cc974765792d8c2f89082d9894e50e6556f54c2203a2a08adf0eda827cfef911ac177a15f0ce012c51b53543dd7f7d677394 SHA512 c153f9e9f2acd6a9e7190a899bed3050b922eea0cdc8d0fa7ea4c67e03856189bddc745150b3e3c19320ae79e8923f9201aec8923e977c6e407833d08e1a1990 -DIST tint-1.0.1.crate 20268 BLAKE2B 64bc2b93279b92da22985931ab5e08345dba2fcf0c2ef9d4c163dc7af9a8df96d133ee0b8ef4efbcd03e2ea268d0d4a71b371e9b695ff3a880c4170cd0c6f599 SHA512 5d772e88b97457415d1ece591ebea2879b2d4b227c37c4342fcc331f306fc79f12336ee49033ebb0edb573b7fc449cc72c93d6ff68fee7a8b5493517c9dbcce8 -DIST tinyvec-1.2.0.crate 41625 BLAKE2B d7ffe63aa2f076ecf57a2c8af3269abc7c811b7e19c3bb6ce4830f9d12a9942620a43786f4f578000d01883a9cc33105619e4357b29d64babb9d6313ad99bbd1 SHA512 eae5ef44a90995a3e7186e52c1d90447f677b9b6db2f4e120e5c32f2077f324f000a16474e347eae702b7fa2a487f3e5ff06baa2082f3904ecf404c27ceae74e -DIST tinyvec-1.3.1.crate 42386 BLAKE2B 9fa7dc7c4967bc3ba3f7e5fbef54a7b6fca46f6520aed2482d355b1f6434ac702e073df19034908f214e5c0ffaaa3bdb41c7d394d9f828dbeaa177158ee99ad2 SHA512 ad07998e9bacccf8ce2bcb01fea8008c6514ad73c15c6426453cfdbb432dac7d588d05551b179c83ca062ea02f0853e97e2b9712da0b8dc20ddab4c0efd5afd2 DIST tinyvec-1.5.1.crate 44942 BLAKE2B d02f610dfb599ae4957d81140bb8945f4cae49c1b7ec5de4bd4a7d07a1334cd00557993dfae2516d506f362305025bd1a6617d55efdad8ebb549fe573e9e6f21 SHA512 80b68058e3264b3fbc537debf01b6b60d438bf5cba6ad366083cb440ed6b45587f367d3a134ec6fab769495b94413d0eca47544b26959a2c35b1a997423eb849 DIST tinyvec_macros-0.1.0.crate 1817 BLAKE2B a3d1966bf57c11afcd026269135a6189f149f905bb70b47537c0a7bcaef0bfc6c89bdcbdb0f6cb8e5255632855134631c683fc90606a254ec8ba818fd5ef0794 SHA512 d6afc83a3c70cde916a6ff599e2772588e4bbfa7a5b1c7e5c8aa0f4a8a5c9426182497a644e4a88194ece986d38fa64b6c8eda9eb1630441c8e65a8741a45873 DIST titlecase-1.1.0.crate 7466 BLAKE2B f93bc7c751a6db351c60e045b1ea9293e91d06dee31be1bcaa4e89fc2a97f15a0f34f49fe3d2c812893837aedf7892b67e7fd1a55979bcec8d15fa6477522201 SHA512 04656c48b22934f40e90c5e2538ded9a71cbc034b9ba25fa711533716a77db43f11ea7a10f8599bc2ceb16944a71c10472037a38db9fc5d35bdfc2badad0b72a -DIST tokio-0.1.22.crate 70031 BLAKE2B 44a6d1ff8bbedfea304e4f44b5c4bf998876a632adfe611c3d851aa64ad092b7b0150c2b39ebeae8bb34cca6824922300bb3fb762cce6b5a1fcfa852ed8d86f1 SHA512 d92b8527bbeec84bb306686a7d29b705c36b59e9c0995154ed95d483c84952c838691f8c11615f481abb6c4fba470ba8968860a74a88b77dd67ccf659bf4e4e1 -DIST tokio-0.2.25.crate 413390 BLAKE2B 3fc36579030bac46a733bbb061088eee56e9a172241f74d744de972065507db14202a0533a5d231bbba495404c16b5d6bec0d11ebb11e258ff0273b47b2f7d90 SHA512 19b8d46a81230be0a06d6354c2775b20fe0c108b4c504f5fe798952bf84f8ecfd9fd149ba899ee67a1158e1b0ea9eab49f6249a655eb0ab1cf418c0097b30705 -DIST tokio-1.10.1.crate 509841 BLAKE2B ed1a89afcbca1243f9f779ec6f2faa7eb224377547212f376c87612cf5954c82dfd0927aae84fd30f7a9889c7a9e98445138b034d8387d80d58e1bf2b5e9d38f SHA512 574ef21c91ed7d87e0811a7fcc4f4bea48dc58eb24d7151004b8d7c5fd1fd703410429d0aa9d46a0f3c866e0ceccf3e025c82a3ba9a0344ba5245ae94f55f08f DIST tokio-1.14.0.crate 534070 BLAKE2B 5e15babc9a2ff9c74e71174bcaee4f34fc88038983a870aba7cb4beffa79eb5ac1a4bd54718971cf193bd85f2664c274395090105b4ae74f86e81c23aceee9fa SHA512 b9961d0be60b0ff6d5b11dc74b69ae8406e748201de74d3789d1c8b2c996d8db6359a7089123ef24c5b1a1e86f3e282b6e031a5b99a73b6ee9e8b24a6fa1c7fc -DIST tokio-codec-0.1.2.crate 7850 BLAKE2B 68e196f0cfe2742f5bd6a4074eafb7cc83d80622f51743e9cda367c8fb26bcf3a6a10772963e75f86c3ef054270f22a13e58a3455ee316145b111a2d6ad00053 SHA512 69bb3a0ea81fc8437fd57c2ee533f0674770182207576e463c8a5859956175a4619500b832863cae9ba9d0d09d76c33441c7b3e929896a61304b25c9d2dd6c94 -DIST tokio-core-0.1.18.crate 78620 BLAKE2B 006af129069b71948573abf6b2017e0e9d66ffb3f5e15bbd80a97d49157fb19317ec063355e8c15f8751e582b6ae1053a93666b6be2c9cc7c0ba23f08afd273d SHA512 414f3ff2e567ff837e27b6c732d83aff68ea39a47e8a88bbdd4d62f8fd4fae7ad8b1e559620eeace84a8180e0806a70a7cd6618a2ef599354e060420cde74669 -DIST tokio-current-thread-0.1.7.crate 19690 BLAKE2B 1a6ccb40e59095df2e4ece5be501027a9975297c8606cbf107e8a365529d175415d1738e6770c31b586685fa0e573b6c4eade68fc83b1e01d89c2e22a3741e28 SHA512 4458eecddf552cc63dfb877976cdaa2060f8fd82a9cb6667f8fb3507aeffef4f3db38d649de55bd784f98828a12bc066d35e96c60ca07a42cf8f16a5fd7d58ea -DIST tokio-executor-0.1.10.crate 12191 BLAKE2B 9efed875a669cc842d298d2ea5ec310a008707f5ec4b796d68fbcaa3ff47c3484630306116d6d36c71f4461869e63a11dd498cb680013f5a3c2a9a46fff9763f SHA512 e2101de6130d09c1a0cf750ea49f605db2933ee4d96943e111d550816ba6a67e4d662e0ba5fb548ae62d582b665239b27b8478f2364b6c46d038dbde8cc41754 -DIST tokio-fs-0.1.7.crate 20881 BLAKE2B 08d22887c990149cd3aeefc3a9aef949124a2c3cb9edb5ec2b76a01b90f85a22226417f75319f92514d812b752ff7090854188e64d2c1af8cf8c773b7a97a8e5 SHA512 3a1023dd9537164c61ba07b4759d05136165274efed6cbb7bf868ccabc311353b0e221137d2be643970f4d710bff20251104344a7542a08ac3d60ef502624d2f DIST tokio-io-0.1.13.crate 33665 BLAKE2B 4e9c6bda0d391ae685dfc89cc0137fc44b31a4a788f730ab632b73d92ab55dad871d68b03ae0899cba9f96e402f88a60d4b8be5d484947b8982a39e473e5b8ae SHA512 608341311f4bda9617634a2623033900bde1d6b9fc89ae52131838f033bdbdf8704114193d8409ea0e10bd53d6f7ab63d47e17b7abb41d3f8865ab36fd0532ef -DIST tokio-macros-0.2.6.crate 6460 BLAKE2B 239493963b5fb28eb9ea7dd568576db4d38c7e6b8ead4d072862891ca5aa096a8ae61481f3cc256d1bba2a2ae9a62660a8a0ac3a1b0408cf33f4b204a252d095 SHA512 1e3f7f42dcece16d8785e500816768ecdef944b0297bea9ca215c15aadf1dc89030061cd4ac01fc9d3c32ee83c6471dccbf7e99ff8f2385853e831e08954a51f -DIST tokio-macros-1.3.0.crate 7876 BLAKE2B 8541e18365182f65034f1ef7096c77186744edf5a171a2806f60c291d8475fa3722430f37936a28fb9e1d525a31e7fdfaff460d1d967e5b4ee875541f4e7581b SHA512 1ec1bc27236b76a9652595d2874d587e724207c1bbce777beeb41edcef5282cb740af28a99aee187127ec9cf824aa34a0a3983098bb355c73d7b4afd18eef1f9 DIST tokio-macros-1.6.0.crate 9225 BLAKE2B 0fd8eead025eb5789d57af750414ddcbc05597a5e06ab953611201db3b34ef4bbfe182c25463f63b9012e5c4916c4dd239679934c2f7cfd6114fa7780104c4c2 SHA512 f39958e210300341d1fcc2cc5f44f0a41d493727e9b50216d4cadc574cff46a7d29999a72dc1a39b29c85cb3044fcb941847198d1ac6557e7aaed10be829931a DIST tokio-native-tls-0.3.0.crate 20759 BLAKE2B 5073c5d93f5fa08170ffc76e21404b67100df5d944daa9cfe73420d4cb2409ca2617a0b1c25058a8b356b51fc4815972692aed7baa47ee3a11574a3109ce1691 SHA512 a8aa7586f15a3347ba9152497db84a098e751797c06df1a75d9b108689e14d6692b4efc6e5b49b5bf8f8fdb3bfc4f1157f56b3b0c9d9e753a8b31a61e65dfc4d -DIST tokio-proto-0.1.1.crate 44268 BLAKE2B c692a0eb5774141d5fda504eb07f5989f81b939533f1e69b6dbc79bcca05bb44331c3a218f2aec9eda9a235195404e2265bb124b8e7746e9ab73430a9639cd44 SHA512 72854f0926ee82b677747df5c8e2a0e2b81227eeef2dd9f758e72433e93918a53177c29f11bbe08712e98fe8dbeb95fbad0ab884a6041fdf7d81da11d1a3a4f1 -DIST tokio-reactor-0.1.12.crate 21058 BLAKE2B c1a1842aeccc0d3f74dc4e588c485d326f74b652b8f504bf20cdd69c42dcf937c49bbd0c149f8da428dd12f5d8a1715bd39ad76d3b71f1e414c663093a437d26 SHA512 2db454c63f8965345997685baa9e4f1e7d2fad1c0087e7d79bcbdc5bf0176703de49c50180689db5f797aff6794748e01a28877d46f58cf453d7a4fe17d3f791 -DIST tokio-service-0.1.0.crate 8376 BLAKE2B bb2193af371d14c19a7f79760d4544bc5ebcba46d38d9b2836e46b6041c4b0c68f7902af51dcd3c83970084f271b1f29591b1fa461b854cb1bcc46b4db2c4d4c SHA512 a22b5a33fc957abeb8556ad1f01c6574a855b24053f7bf1ec23376df42b1e83f2fa0a538828742f24f586456e0e1314abe74ca3ac62d364f905b74c2e45903c8 -DIST tokio-sync-0.1.8.crate 41830 BLAKE2B 20e61e5e5360f54446ad60de050a4156d3e975f4e246f51b308ea1def48c51f8f1b28fcfd81362b00e0f6f9c40382abb71a4c9e799e81cfd7b0c7b085c42cc27 SHA512 b3665476629ecc8d513d53169beebe090818c6b76ca99f0a508c730bde0ca3c49b828942fc3b9d76fa9cad1b6766237e18a329607ca2314c7ad4b343dd785371 -DIST tokio-tcp-0.1.4.crate 12745 BLAKE2B b11b76b94ac5fee26c83537d9c169fa775539c90703fd9ae2c5565c99bbb56305c474710a3b90ed2e8cc2010ac00de77023ecc04e5cb4a653d7b5e0f0e21e23d SHA512 e33168e12ab9cf448f75ccc1662f54b287db0961dd472da3a86f400d6b80159cce290b9a4b948d216b86284e5bd61c14db8750fc2d0ac16d3937418c1260d2f4 -DIST tokio-threadpool-0.1.18.crate 54825 BLAKE2B b1c202bb8aa453f3af56d82713c175dbe0b3b2c1a8efd8ba849b0afb243f48a4f76b994095e4c490b37710d6a1c33eab2f1a2dddcfe15bd9887ad8bfa9c76f8b SHA512 163aea96e536f670e5536c728b159da52585805a721a18ee42e9324320df4e93a9baa5b31072e5a12af7cfe3968bb57f0a5864e17a758f66e71e31f7f02d7b27 -DIST tokio-timer-0.2.13.crate 37873 BLAKE2B 0a1c1e07b941919dc5d1c1a425ba84d6d954b52932933e521fe5e8c76f36c9c2bef9b93eb710e79490c3082519f385f7737454ed884fc7d11ca92ca44b4fe5ca SHA512 9813e5e74cf210eb3fc29268483da32272852c79b23d4b09ad7ee012687c910848b9b8fa5638d4d71cf62d2722f29093f2324ccd4f2e65db5c111ed6f9142d04 -DIST tokio-tls-0.3.1.crate 22517 BLAKE2B 05be1ca4abb345fc859677bb1b4e49064324ef7858c5bff7301b4a5110e4a6339857f5d85037bbd66b433a3c2439eb3c15edc63648fe04df2da9bfe1c93b8e08 SHA512 46ac00d839415a8dc9d9709967414e3812606a23c2c1e0e9dc9aa6aff70b24afb44e4c5a231d0d857ea8d06d07c254c97a459713122006cf1afbc6d4f7b7b6dd -DIST tokio-udp-0.1.6.crate 11677 BLAKE2B 6a2e871f385be1fb7bc597fc00a20f0086e7fbdb0b5fd2785e3bb3c01d5c41f0b1c46b29d9735f5a0176e1560225346a4ae394b7552d4d5668277ca7053b82b3 SHA512 404d2418c2e78c5e693514b181a782cd41d313f62b29186b9f30796d5fa48d7d223156d665dab39fded5b7ff5c2a47c0d08ae320b003063aa22112bc8857f62a -DIST tokio-uds-0.2.7.crate 11942 BLAKE2B 5c74cf32de1c047f75175fbff9af0cadda1a74673f5b2e3b2e652ef5724f0d428b9caade0c474411c5308559103972e19344adc97822f930d1dd31edb048d1db SHA512 c06818507ebbfc53c34b7afffe5b16c682749371a9dd7db9fffb3800b5d63fdd1d7e646bdb0c84c3b86228f86c54d2b95f61942cdcf087c9f5a1491fcb764102 -DIST tokio-util-0.3.1.crate 27233 BLAKE2B 96e43dd3f6f6209a6436e6ef3a40739f44507312b02a83f0316c7500dd6a59b5a71af005a98818d9b1db0e33aed4a9330e4cf955855925c8a428132762985db2 SHA512 301a5d9a8a9537653e17d3360dc27d41c95aa28bcda3e0815923dca0ac735071b01b9fc8c1d53e826e0cd1e6e5f98cc233f1e9dea906ba06c6b5192608ae7ae8 -DIST tokio-util-0.6.7.crate 73201 BLAKE2B 4bed0bdc343b9fce03c12c0ab442cd7eaf3681232090547a0269bef5f362e1d96d2a10cf78708c6775234e23e8e2e00697333dc861df56136a29583d7a2401d2 SHA512 f6d81191a1caffd2cf78175bf0de3432bec684c739378072cf23daa1280b54d1781cf43d663a49b0cb34662043c1747073c97291414cf0407581325cb091b263 DIST tokio-util-0.6.9.crate 76480 BLAKE2B a16fec47a50cef0ada375715c391cfe8239a92a89dbe174ec0afa20281ae28dbbe6fb62029a678765d885aa8dd7613138666be5fb00c660756237bede980b82a SHA512 95b1bf648106c73bc9a3e63cf438a5fca2969cd9425dcb54aa31f5471a6d68cfd9fd99da0b8c86a3b268e618be77f3957d7c88fa072c970dababa4d8965f916a DIST toml-0.5.8.crate 54219 BLAKE2B b4f9f563e5ba4574d4f2dcbe244378a2e1e984bd9fbbbfa5a06bdd5f8b8d677394f0db9cb8696f6936c80a52caa86b1b3ebaf3885c53855af23f03d318785f19 SHA512 26b7901ee4b7cbb4cf8ea57d365a99ed05e0a76e73452e47d4bcb3b4eeb7bbd393c13eea9ea33dc13622942efcda39acdba9425b74b40c920c9f19673a1f2082 DIST tower-service-0.3.1.crate 6299 BLAKE2B f56562faebe3a933f39f8e2093af65378bd307c59f9695408510ea9ca2230c68228c6726a0a2c7c42943002837dd9d86ce0a1d4b7849ba5c61df28df7632d909 SHA512 d23f9db2d6632f561970b55eaeaac22a20c8b9af18931cd564db193688eb2a2973127b440e175cfd7358f3d0ead53f7a759e34b7b86c293751079af9c2181ba7 -DIST tracing-0.1.26.crate 68583 BLAKE2B dbdeb4081dddb777d52afd1afb043e018e72f99ce6c4fbb16cb14e618da9c794ee594252cdd7a6d4a7c149a8ea86d63f6e4f1d75ad3bd76590d70af107616eac SHA512 19ddccaebb2d3b2230a6ceda5f72af29200ae760e8d411c2073e7338a6ca2231c8b2b14180eabec78dd521ab7b48996966b0419725adf8c67a03d1775ec834be DIST tracing-0.1.29.crate 72444 BLAKE2B 637f52a1890ee8b2ce20eabb8491b100de680088792be87008107455e5404c9efdb2d2e97129fbed6ce29296a880ecfca370535ccefdea2fea49d9457ad6b683 SHA512 8b9c58aa6d236485cbd8e6c3b39a1cc05d30169dd9ddb377ba464ba72c774af69b0eecce1551660d26fa6735e5483f45463cfcd196513c0b4c351c900cf4c7d8 -DIST tracing-attributes-0.1.15.crate 20632 BLAKE2B 77e78d3dde799de16610d35f6d30bf15e03e8724ea80302a661fdd958a25574c7d6620f480669917dc94152bf0dd1237310523d881f4971f4a5e837ff26e0da0 SHA512 750836fab24caa68bbd8f19c953a45d2d1bc7adb9fae65b113b8b9bc1cec97b9f6088b15bea3c1c8c7a106345440037c880485e4e4f4d1e5690ca4841ff135a4 -DIST tracing-core-0.1.18.crate 48381 BLAKE2B f175efd5481bbc9e881a36dad6c29eeb4b39400dd117e178d9e7a0e765cfdd3f36abe7e3fc2a537c79c5af544c764a0273a382cae907f5e79b6c140ffd2b9a91 SHA512 a5fddcc04651d05e61c2422d028a399cca260672f7a8e5c072126d9d4e21ef7a38911fca09e32c6da287a0f1cb6d1297d30e0f6fbb951fc190d2a67281a115b7 -DIST tracing-core-0.1.19.crate 50079 BLAKE2B 4eb551d147eb17d96f9248dc780ebb305c622173d98fb429fc17ee6544e30f499883973c1d7c80d322a509c69df632fd47ec6be5ed0e7fd2e04e3751d7d40252 SHA512 27db417a15eeb736b695374650994029c41a7ac50b6b7ab0a76a02aca0473be14a2d4aa0a27029071d6b864760f32977a9fb3e47144dc5f3b79fdd1a42c7bd4f DIST tracing-core-0.1.21.crate 50683 BLAKE2B dc48e0fd6586b8ac0059469a26049c6746b44a06a4e7768d129822bbd2f6ce719c63964ee3e4f9543ce278566efda8fd957c8b4be8b696ef12724f899b2830dc SHA512 2c3e00674c02023ee3e9a114878ad8941253a9489312082b2cf9a163b04fb8d23767f00892874645f59f30b6f620dfb83dab8680c64db5510208678b52f2db9c -DIST tracing-futures-0.2.5.crate 11637 BLAKE2B 2b23233705674cadf5dc8092d3990f375e780de2b9bdfcbfdd5f4bc9bd0f15a14c6bc8e36963bcd332e729b33b90ecd10b2250495e0657eaeb302e666313534e SHA512 8a437a029e18dcac3a3be7a3355a63e75432ff892316c9f2929c7557e3895b1bb5efb59a7588372bd9efc386b5cab54c2b382be99ef8fa643e66ae5656e506bb -DIST trash-1.3.0.crate 7786 BLAKE2B 095ce34bddc502c109a6cba1489fac4639b86257b5b63d8aedf2fa56bd85f19af76bbdc374b464e8bb39ae2fd4a7c492ae366d5d53f2a47ccd087b45da8faefa SHA512 05408e15a26ff1e28f9957e450ab941e39ee77f2d30d20bb3fbab5345d068ff4f838eeb556590ad728f5ac7927d8a31809028a72946274d52c0ba9c0d486c62c DIST trash-2.0.2.crate 30119 BLAKE2B 2fb224e0984d327bbee5a318e4007489d232a189a04712676c0dd184ce74e145e2dcad5840cdce5c047f1e03d2e0adbb74cc4cb1928650a471434714155e57d5 SHA512 88d512a7caa8b9163908bc2dc9240134b642d1b7a94ad15715ce391f250c8b14d2df4010c7c3213af219b433185e20bfdfef2545ae030053901faa6a1926f1bc -DIST try-lock-0.1.0.crate 3195 BLAKE2B 70a97d35322f488382ba0bca516a672d464f963ea9c91ed0696aabbf3a14fcd759fa3b06dac4005026213cff1091326e57f25e9df919cef48794c1fa5c679690 SHA512 bb00cfa02cae996fab0d94623c71d261a73d6f8b189b75ca9c1636739c53b700e8bd915311eae54851b5f184f0999209bb45ab748828666b2cd2a9b4d3803d1f DIST try-lock-0.2.3.crate 4158 BLAKE2B d8bb2fd8ba10285871ac3dee069474d4225e312c0a13b6bc238604c5207fe33437541abfdb507a6b400fc3359b78d39a7e9a5bebca426692b5dab4622b09c192 SHA512 ebae7ba9227e6fc20499b48ab85169943765342d4790bb4a31ac33a2be0af9401e2854c8e00b9d3b7e225d16875c90700b1c3fa99af07833d3b7a91b7a414fc3 -DIST tui-0.14.0.crate 140336 BLAKE2B bffb807b11d6b7863676d4d46d115ce64666931520d4e2544d4e655b2d51f8b9335e66993d35609e4f9b1fdd7c5a0eb04f6e523b45a49aeab7dca4358baed1f7 SHA512 d333c5368ad51a9a3d6bfdf23bbbc636bfc4518238b7e2bf4983ff7ad765c5d3c6f016a00ebc6ecaf7aea79bef54e4e7acf88d5e18cde50fd3f7d0fe8df2c1ee DIST tui-0.15.0.crate 139975 BLAKE2B 889ea1a56c797e862cd2af85dc6d3f85e253b02d40fe5ea29008b2083f63c5d078dc614401d98461d7c9daa3367283c3a91274a023a3f220361ee6cd73b06277 SHA512 2df5234f369d0ebb9724d63399a8c88a26dff878e7b618bd7697cc1e60a61098119c7f8845ed469486156c25998d8211d93fab8d9b5c10292cb637604adfd3b6 DIST typed-arena-1.7.0.crate 9927 BLAKE2B ff8fd0f87e69634d53b87b070499d3d119d9f153e0f06e27afbd3f96da6918136a83162f4e9374061ddd215845f75844251e3fb079d57266ea8502cf321eaf9e SHA512 506a90a11576e5a4135b46c5c4705db461a8ec1bba980c9ea65e8c4399bcc85898b7f81312acf4bc0b24a29d1b940d8dfe0352ad59985153743948616da5ed8e -DIST typenum-1.13.0.crate 40238 BLAKE2B 5e5f9c8c60a4406c5a9a487033ddf7e8fd835bc255547e8b3f94c966e0f661f9b8a2f4a844661c00ee3c7e01f9fa109ac79c6bf53a064335c317dc9d9f8b0923 SHA512 0cd0b884509a5b4a252bed10309139350fce24b5d4bb887f4c0757ed18cb2481e331d7dc32fc81f4cabeeb5849e89ea5d92ea9815cb2985e5df4a022ac703de1 DIST typenum-1.14.0.crate 40518 BLAKE2B ff6d77c28e41cddc1956619bca522f4ae5680cedf313d4a12a4d40f191f85ed10d673a32bdd811d7774a01a1b9b5adf9990269ae230737237249faad16ba7070 SHA512 e9739a24936563e9471213060d53d970f8cbbdd163892a22e98f1972d10861009ca1eb568c3bb5d1d78299482372fbe7e6bf42ec8f4f5f30df0a7446933a312c DIST ucd-trie-0.1.3.crate 44615 BLAKE2B 491f604d63446dbccf5176333edd159ac56261a9aa76efecf57e9a11ae017a6cba975658a4ffdd310561704fb0831686fb7770b1142b4ac495f01e26de51b099 SHA512 54d43b3824669aa20b725c7747f4fb65bd24e620670c968c1bb0094a0503773acda921b50a0b200c1ea0f84e1e059883c1704bfa5a856d2e2ccda116fb8c3e2b -DIST ucd-util-0.1.8.crate 26948 BLAKE2B 9e0e650588dfefa4300505c4c76db45758775c9e6a9e821c3f7cdc01b3b2e4e8461ddad065bbf0471270f19b790861e39c5cc8844957dc313c05eb604aed0fc3 SHA512 b1ea29d005c9ddc55b72769da61f1855e3838222e20b4a3423d344acd61463a4bdcb233c437f0fa2c1ef975dc72ccd679570354b9ad615a3bafaf18616884e7d DIST umask-1.0.0.crate 4380 BLAKE2B 3e1adf758039cf60d27d62417bdfd6b6fccc5fc4c2db483c81698e83d2689a7a6c89a9c45e68a8808d50f2481b0bdcb1a224d18eaed7ad9aafaecb5c2f199a1d SHA512 096b11f02ba12e0bc112481920d600d3e782ad296f6a287c4d2a36d78e35f0b4d38d13d32d73ccc58830711521f27e3d22f204d1e4474596973dc8fd8ef3c4b4 DIST unicase-2.6.0.crate 23478 BLAKE2B 6e580108ac81b1cbee70e5bd331f43b12f266dae4f4f758bb8f5f073bd1af61943ee0de34cc27769525b19da8c24f8dea4941d0f5454594ab0cc8b78071ff053 SHA512 7e76a5f344e32c56cf87223585d87a56c79627b52bba0b29eb6de82de874b2964accededa8e9b5741f57944b6750fba5c61e679a50d4fd5a5646f431e2f4f188 -DIST unicode-bidi-0.3.5.crate 33423 BLAKE2B 26434df7646ca6fc3b655ac2482c2be70700bd84fdd31d016f49b5276b23308d1f9258d40ff97a4090e3dd603d3a19f8fe45c13c5dcde6b00816dcee1695c7d3 SHA512 4541d84db17eef16da6ea59f1ff7103549ff338d6ffabef21e75fbfcfdb1a3fd0f8e8fe18abab7b6117e997cefeaa5e87fb01fed8fedbcd0657fc913743de8ad -DIST unicode-bidi-0.3.6.crate 33737 BLAKE2B 90cb2d05bcafd32a237b747e290f3dba186d069845e50ffdcd7e62a2ddd73f4e8fc27ad972d86453ff375fab50fd5ec47ac323413e351fb7d4b80f1536519d7f SHA512 a1013539b0da1609d9c37cc1d8359efa93bd88b4ae176d25398e6c44d93b615835a54b184641f00313b14cf46542b1e92278b0dc1bd00dfca0566467b21857e7 DIST unicode-bidi-0.3.7.crate 33759 BLAKE2B 4d5224062c829b5e48d26ca727bb60d10d7c663cfca24762331b36a2819a70e7d43d2b6b64ba64751d9b686949142b53346a52027d400acf8cb1e1b1895b2796 SHA512 6eeafec87a504ac968b59dd3168714e555b5b374cfbb5a6a9c962445c423f82b68ee54d1b732c5939eb17fdbb804f9b3affe828745bf4ff34e8a1587df2bc8bf -DIST unicode-normalization-0.1.17.crate 100345 BLAKE2B 2579748ab87f6d74ab8e845d88c1990e4ef32e46e38f9a1841e3381d257d973f2f8a9da359c8e3f11790a888acf81f548ed3b749a67bb3e95acf3b744dd063f3 SHA512 727b4844a4eb103375dff7d88d620e1fb581cbdf2523f07a5c1673ff333d772d48ffae7658bfe4816a5bb42de5f68a96e15be9341c540a0f746c2990eeccb3d6 DIST unicode-normalization-0.1.19.crate 107353 BLAKE2B 4c69d50efcae131eb4b91d385a64b49412a11ba913b3c0364cd04ad107d59e31adbda74d34ed13a065d9a7825d79fb740e82a4dc66b7813a9837af4352ac9e16 SHA512 7459e9d2867308cac80a98d8dd0b0cce797e2830ea5ff55b878f7a37a6f5e1f0bc14340e1a29955298d660ba2be57754a1478d74851b1b90576dd5bc4231729f -DIST unicode-segmentation-1.7.1.crate 93066 BLAKE2B 80058a79c64972dfff897b08a24e9f18ae0fa312a50f86fc321961eeab83c5546bdbc30534315870d891e648bde1d7d77f459ec9744455bdebb94bf6e326f2ef SHA512 183ca68d456a8d53e6f255129e8fd07b87d8da23b8f18187231d6fa70dac80e4069eb6c501d45155d9f0050b6bd713964e55f0e4b25a40546c4d245a17fc8dc6 DIST unicode-segmentation-1.8.0.crate 94011 BLAKE2B 33440cedd5b51bd6075c9c75541bb8dcc16037b1c937ca72962f6c46be71a30850ab8e8a144d8b7548e5a91c78d551e7bbab5f26a713f1df0311d15f11299af9 SHA512 f0779ec42907b665df53f38ea370e661f10e7c72a75917f4cbd055868428c0eac1c7fc194d4bbf048e00f0f3d3e2b3602ae88d7820ad0c73e94a5228b61f6495 -DIST unicode-width-0.1.8.crate 16732 BLAKE2B 5aa7b87eef1322e4151a3fcf981ade311b8fa030527d7561815950e58d3f15156163dfe34da6a708c37dccc3f7652bf7fc2cd899fe8bb0118b67c4113ff3a2d2 SHA512 0abba6da6981a2451e01d93bbd47652c46eb6fb07cc0214f33259fb29945bfd5ee2b302e883ddca8f68e921635f222701b7310e7da2a5e225f854980d1e474b0 DIST unicode-width-0.1.9.crate 16745 BLAKE2B 38d4b92e47a284d6881a8073089be59a73d82b91efe5522f55be977f95f479890b6c02cd519544729f1b1e62eb21bcfff8c5f5382917f953603b760e39cf1ea7 SHA512 0f5ec46c57e3b5e50cb8430c89db8d9c129e80ca11a9c398b5312bfe95001e19ca3efbfeb01c3ac09c4ce7e26c6ee1f352f7e114ecef78cefd68c54d2d50f5f4 -DIST unicode-xid-0.0.4.crate 16034 BLAKE2B 7ce4752eab109f457a1f8cdd3a9bebfe637652d7e2c0625b6c6f76dcd2d5f3e8b66c89dc4ca158282044dc1a2b030adb1b28e3a44b5a462c7e206cd25d925e66 SHA512 7a3a60936a18d54001dc477f6da1c9784bec53263f13e5c21ba00228ae4ff09f7bb8445cfb39febde957b8500bd1a4a998cc5cfd18046aacbc68e9993510e091 DIST unicode-xid-0.2.2.crate 14955 BLAKE2B 6c6da49ac08dbd8b3248272224d6bff96b9cd1f36029b1937a58a0b929c3a48326053305ed49e73edd70f572f5abbc4817cedc899c69e3457805ad056669f6af SHA512 92ffd0dd34e3ca235ecf110b38c447d3ec1faa23d76c112457f28d432f92fa6b5f428bc5e1bfd278f361f55426dd96e19ecb0d3eff6cf250892f069c52bd89a8 -DIST universal-hash-0.4.0.crate 8386 BLAKE2B 71c6d768bf8c1266416e650bc41f96254cf9451d91998b6bdb20267d14e689cfb2368b1f123c859f052ae60e6a69017ad74185ba1c3f375fac5ecd2280c9970b SHA512 572b1760b04d61491ce468b79d3afd1257a67ea0d33f21a81dc0efe32c6a31d4f85915e927806f06b8deaf0bcb609950afa4fa1759e0f276746d75b00a8c703a DIST unsafe_unwrap-0.1.0.crate 7365 BLAKE2B 94d8f4a5ed88d7031d1b0a87c540dc2135cc3ec2c0f536cf5263417388ddd81535a90127892c7d64b7cab6ccfa6015784f08296925dae65c474669fa2f870343 SHA512 679d9b7744e9b0fcaa4e86475e0381d6dedec497d8c77924cd6c481422043e73bdddc81127f0362d372312f2e4e5f36d9932c3326a8b1ae825c91a1b721f138a -DIST url-2.2.1.crate 65434 BLAKE2B e9180c56afaf9dd781812b3650b28cee14a2330629e708bb8a67144f6c12e3781d07fae68166990bebaae60190a1a88dfa1d087d4982ed04d8cdfa59ae4a0d7e SHA512 f2065e68dd917cc174c222a44127ac10a59d25a87ccce6b88ac1e1e775856fd7d5931d728296db355117f94e71e12404fdd68a283545b543a2e00a659a6997ed DIST url-2.2.2.crate 68555 BLAKE2B f8e59f784b6c2e16bacfba36ad68670a6af17c16ea3b0866b5aa98e5bf4686cf1b1aac9b1f0a0ea3b89a01e044a2ca37830416f42d147158ea8e88f23fd28ac2 SHA512 f9b6ad99d69ff303283b3fd9e98945fbd6cb411a3d141badcbb3a0566723a451375e6dd5d5357e3eb7a1b5b1ee5756a2347c43817db2de6fe35b9004b090e077 DIST user32-sys-0.2.0.crate 10624 BLAKE2B 76e57ff5dcaf533f7087073d85b3ac9a5825ca5c7251c1e8729cd35c9c3bc3c0cfb6a4d7586c3490fccf1aa581a6ce7c58696b161073bb23e524a20ca5c30be3 SHA512 75fa43621acff70425ca40a132a25fc67923526c895c51edb6b49ef507d1d461383e1d92b5dbb5c5aee9207cc76b9a9e43d27efa0b65476bc5ae0c122a2dcc19 DIST users-0.11.0.crate 21980 BLAKE2B c106e9ed67b9ad766bb7318506261579768185aea3d956d9e8b2adb52349525fe69703ee3bb2e4fb02aa223bfa6fc92a14d8128412623f70654254f842d7322c SHA512 e28028f895780bd59a11069b81b87470a287a447e42566cfb8de0e2d4ba8c90a3ce92901e253dcd2628383c8ed06c10714bc0181a57bf257f7edb3510936e596 DIST utf-8-0.7.6.crate 10422 BLAKE2B 296690040895ba9da9e69d527aea415f4bd6bd3c010e67a08f9cffd2f4cd92a99f9ddde77512f9ef5a0db069ac9ac3cd6fd91aa18f0bcadf870ed212fdd76f2b SHA512 6bf0787cc297a1ac4e47389464d05ef6850602f549621687e776618bec96c1f7bacbb1ac8faaa63e5d28d975b850db8d6c784eb66e2466128f0521b91c14015b -DIST utf8-ranges-1.0.4.crate 8575 BLAKE2B 686bfd854cdcb7510b07751630089f4f0cb0884017792288a63a4a8fa00e6cf1a10b38c39142e57d5b4d1f494c95f3445f343f1b34fc1883dbacfd708d8c13b6 SHA512 acd7008c92ed23cc0ad3fbacecfba2169781687c6aaa475ef5388fe416391cd209218a2cb19b9d4fc87a2a616f1dd67129d39978fe1b58be134a013f90cd53d4 DIST utf8-width-0.1.5.crate 2941 BLAKE2B 3203d11eda41fc8f4eb4f7ccce6ff3cdc8fde5c36d04887b92f3569ce269cee44b3cd9dce0d5901c022dca26d6d021fce03f5f5c53f3e65c991506d8f47a8b08 SHA512 9491b21ae7d516afc6015ce06fba94ba2916c4811bdb58b91b1d531603e978985473651abd56777285c58b8b0c7ed650a68fdab20423b623e0140aeab1bf3f6e -DIST utf8parse-0.1.1.crate 13995 BLAKE2B 6b1de4afdb2837a76637de72f6e6a81e73aa683d8da04ebc94cf7ee3c542845d2244e721840511ee2725320f2f882722e2bea67914435131d7af1ab29291d1eb SHA512 543d4daddce8248b181deb1c3952ca15303d78616480b23af163ca6253a059b5ce9494652839a051c48a47816c3dd719465bbe5bb7930db676a16bcdac47c517 DIST utf8parse-0.2.0.crate 13392 BLAKE2B 05296f48fe429a871f42e729e3540ec3a974a69892c6bc9da95e23c0aee2163c9b115a9614eb1943363076793e17ac4c89e28066a9816cab30c451524a5832c0 SHA512 1f6a2eca32e42c8e4b53d28c4fea54c426ed66fc01447b3cf8fc0fd75694453eadbe3ba000ac8ee0347d16dbfec47681254117949109081798eab5370886827c DIST uuid-0.8.2.crate 37909 BLAKE2B e6ede5f8ae05572d4c55909eb3fe6946de6f10ad9bf71bd357739bc01201bf93f59ccbb3dabcbfd7b3e54b0c98c3b52d21f1bf1877b7283c6df623e9b2b3f33f SHA512 5a1f5ead9a920b9bbc120c02049c24b62ec215765e486d3a15c5015ef49fa506206efb737e6f6555cf6e2eddddfe55f0ca1d7dcfa9aa8bcf3e0ef570a54fa2d8 -DIST value-bag-1.0.0-alpha.6.crate 25273 BLAKE2B a52f1b75f7974c453ca110e3fab94abb6ed7ec0a1736dc3f22b7d871699fb1ff8e9f0e91b71372935ad10afcdc94f1772106a606fb5dc328950f612f4e17b4aa SHA512 1723a8e7698b832b288845b466ae7efb5ee1cf90d7510ece286774fc71e8f322596c05e03732d9e51af2db460b689b3e473cc11a94f97c9015972d6db3c6ba80 -DIST vcpkg-0.2.12.crate 15530 BLAKE2B 23ee1a34064f19b67232c417a11093f01624b1ddb6aa572ac67ec125dd3f784036e68b58078607e028028e7c7e787c40a158d99cf120b8b80fd8d18c18a07a74 SHA512 33076b42cc83fa614fde2cbcfe1bc5426c99fe3707c129e6c2b7aa16afe3bbf6ada027ac35cc70bc432df25e6a4f6086d251effceae373b6efc23c6a6fb2ff46 DIST vcpkg-0.2.15.crate 228735 BLAKE2B 6b6bacd9a7fa38919241f45a97f58cae957e58d3aac99df208a26aa718e4f1644f4ccefa31b09151e5c1952288e0e5837c363918b98c7f55079a948a952c1c50 SHA512 7322a21e8811b2fe4e79e09dc321458068ecdf1953f05d36233f3278ecc0b1dfc64194db7010dd46fcf692285f42475beb090c6c6cac0c8f9fe0eb5c770e3172 -DIST vec_map-0.8.2.crate 14466 BLAKE2B 8f109fbff19604b82ea2aa61c952e2ce9b5597ccc8e1ef4e847648e2de08dece8c4debe92889edeccb8d393645fd0b62436b49d236ded7ad181c4a51239a9539 SHA512 4f1ef59bc2c437e79f1f84fe021bce5aa8ccd581f500f3d5776913d5f17d45b03ccee64f5bd03d47656318cfc9344a1f4311079d471fa409a8e4e94c143973f9 DIST version_check-0.9.3.crate 12547 BLAKE2B 85761c300a8d755e0b376191ef0604728ae641261fdb10682a3134a828eadc4a33216426d286bcdbd8d0c5fcfe6ca8ba20ed078c4f53066b959739a0e73daec0 SHA512 4b3b428214a0322af536a18e6f050438398766af6589389f20a804121a6721962ba411e2dcfded60aaa74313128fb0e831bea31378e2695c29b29bdc24d7cbfd DIST void-1.0.2.crate 2356 BLAKE2B 41578fb5507f94e7d135f9595cec107ed00a926f4968df8b59792d1676ba5b6980cd67310f820fc37a9c14ebe43a171833fa8dfc09eac5dd42f2ebe808632a83 SHA512 1cc7d282600dc0164d7e410aa895d5dc99de1174991549c6733c94cc2027026517f66797751d737869eae58c560fa26edbf43f36b3015eb2fd99828fe40e0aa1 DIST vte-0.10.1.crate 24947 BLAKE2B c7e94b7bba2423d14e5aa85f94dba856a6c984261551f204f029c55ef923c0012b259e5b229974b54b4eb5da1e85bae3c8cdb680372b5f9dc6caf51d1075b0ba SHA512 0c8fed2cfca5ad07d2a146e1e26979d390347a409cdc2b960246fc2fadd85019b9febf2dfd618f7a144493084b55f285c58ef5204e613bd9013af26faa9f2033 -DIST vte-0.3.3.crate 2397439 BLAKE2B 213fccf5b1f09b2d23bca57be2abec0a3580ab01864c51dd364676f5c66decc5184ef15f0e484f9a94e892f118863655f4b2ed2a340a47276b3fe7b4db901dec SHA512 5e00e8409ef21edb5aa6fbe482785fd5969dd17a6695f82328c4ae12ea8622712dc3473f33832fdfe0cc2395411431fd47842e86e35022149d5e958c4e5f8fe9 DIST vte_generate_state_changes-0.1.1.crate 2422 BLAKE2B 6e8fb4ce0ca0fd6b9a4dcccdfb02445babbc13d47de5fae9bbb81e8c67ada8a40e8dc5e57c120c36876293b111ccc71e1069ea3fdabade6f9ba5ea2d44ff4632 SHA512 ba09352e037cbd279cbf5641c9783a24f76e54f1f09e13f0ab1ca99c9646c1e3c958e8e302d7cc88431073bad2e2d5619410f2f93f96f1db25f0f0ded0236f7e -DIST waker-fn-1.1.0.crate 7114 BLAKE2B e510eec0490f0caca3930000cecccde209ad387d1657c380f95122c68ccc15fcbe0684315d0aea28f094f2c65f7b7b08ae62f6ec95e0d67fc47e6af0ba4589e9 SHA512 80f612597534d9f8bdcd5e6bdff740805efe28242822bc6db360e114a23cb47ff88c74b8ab855bc764f0a73545e85a69d76bce1441e5899a36e41ca270695dc5 DIST walkdir-2.3.2.crate 23516 BLAKE2B 473f2b51aafd6ac17e5c3da8d545d179b31486b3a65ab39fbd8bd7fbb2ebcc24bebf01781200a26a68f0b1cb464f5763a919aead3b03eba5a7e1be6efec5500b SHA512 6c44071354faf37720ec4117ded34c8d530489542ee107ac26a7a56ef4a882b9003e22e84f1d61f6078643521343e35aa1f7b57c838779e78e5937a667bf82da -DIST want-0.0.4.crate 5357 BLAKE2B 499a5394eddfa50f4fce288f6155c1a6fe664d3d52a2a23f623087655f33854ab475f67d9f748c17e437218b7c029a0ece4d3c32d4bbe061348a50fe537b4600 SHA512 4d6fa1a8c194081efeb6188646ee764da3a3de4374529a6b0af70cd5ff001491b6a87d4281f6ca40d6640308f0435f6b4b838b52e20afe3944ae58c885b6134f DIST want-0.3.0.crate 6550 BLAKE2B d97ac51dd5e49bec27cd196711110679013bb7aca520235db3f38c7d4399a2a17b9cf599cd0811137df957f2341e75442d48483dc7aed6910f0eed7a78ddad37 SHA512 7e7af8ddcc6faed3e3d18384a000339617187b74b0adf111a02bc15fdb152c88007844d6fe6f35a47a13f3384a19ee4723b884623de7d45c6619d76aa6699404 DIST wasi-0.10.0+wasi-snapshot-preview1.crate 26964 BLAKE2B 525db01649a5981ee82ad80a1a4bab9baffd235262452675619f36a1b454017a74593c53c129f8c30b865994bbe30ef19cebaad9d245ccf54b9b07ef70d5d8ec SHA512 88e2da617f50d9ebfb1e0c5857321fb86b5ee88ae8a8d199d3cc092e0f39688a2cb68503f7c6bb09dd6bc50a9a03597a1eb2e032150fbd0d0b8afa02ad771c88 DIST wasi-0.9.0+wasi-snapshot-preview1.crate 31521 BLAKE2B 716bdd2ec46d0bc9911c5e5e29fc783840559931b2563d8619675fc11da9527ddbe653a0f1ce0b782ee0c5f7a3131aba2b0867d415f003aa9c2389357569e7dc SHA512 dbe641f796ee3a5daafcaafc911ecc6dff170340f477c2df7a61fb4858a85aefc2637c9e61973ecce66a987aa8e08a736273a4aad3ef47eaf61ed4268dbf9c47 -DIST wasm-bindgen-0.2.73.crate 159293 BLAKE2B 3ad8a4221d5a3824d8c7788294b3b3b571ba4d676c782f7890be6f0f8acf5fc88166b8bf28933bb7511a388defa5ebd968b8fb8a69bdc424ff8ae64fddba1d16 SHA512 69b070d71df7b5539a9b45cb61704629cb917626e8e9f892ff684007647c36aaa04b7413f1f87eee7fffbcf28550b2d9e632c3747cd1a73a2a75043ea0849722 -DIST wasm-bindgen-0.2.76.crate 160285 BLAKE2B f57e3463db92d0a57239028f4e92ac6767b7cf2e8e4c2637688fcd6478c6c4559462a69586bc9c24e9df2559c28dbe2db59e24092dbdac8fb18165b0981fc08a SHA512 8fa02f42c55a91d9a4c4a8c8752a09360c86993405cb8de2d0309f4bfd09c99c6353af753d1927a12467f489b660ef9f293dc32b362ce0226fe65b642de0c98e DIST wasm-bindgen-0.2.78.crate 162111 BLAKE2B a3311e67900961b35a59ead7a8972dcee37671921c0f524895c821658a7b1246403d4674bee1735f1b2b94aa789d5376edd02afe4c8ebda110f4344ef58c9225 SHA512 bedeb2828d1e74b1e373bdf34dc2eaec70dd523e9ed96a341da1ab3729a7cf8470a828ddb9cfd4cf15af6e2fff75b4368553ab4f6f02c8dec9419dcdd7578de9 -DIST wasm-bindgen-backend-0.2.73.crate 25434 BLAKE2B 63298c33497fac327ecf31f2dafa3681b906c8d0a873a80bce1282c53a6d63aa8b0d30b8962ecef1f9a0986ab481a41b79cba5b8180f48b084d04fb0c6ba4577 SHA512 853fd0e354aa41706e19de192c9872812072cc881520f8c81b94eadb0cceaa693855598380dcb7729c8c6125eb90cac440453545a5fff0e40714038c86ff2cb6 -DIST wasm-bindgen-backend-0.2.76.crate 25569 BLAKE2B 501b5994157943585bc11e011f227de573c6d00b0f1f6e31a6c4c46ec53014c3724c81b61f3dc97741bef6e779026a1efb93333ff9bffb0475540b64ab91614f SHA512 e3a69e9f861f0d12dd47a60233b2435a784ce4532b8c0af0c40565e20e747ae573f4a3ca750eaed1c0e45a467befef8036f8b74370ec5edf98eb5f6a58a9c511 DIST wasm-bindgen-backend-0.2.78.crate 25576 BLAKE2B 03dc6b255ab9e30f9eb54f81638eb02a05a0b994ddd51f47852bca376a02080fcce596453d688f5e8e7b5a814fd081b9709c1215f7e9f9fec0e4a7a6cba1000c SHA512 00a0ec9afb65c084b64cf9d25f778ab03bf2368a1e0ff213e07b8fe742a125ddae00c7b4d693225d6d798618b0441d4dea3c175cacdb37fdd75b0a46ba3a287b -DIST wasm-bindgen-futures-0.4.23.crate 14760 BLAKE2B 3b783c6056e7566197f68c9f18c557328b8a32a671247497999107052a3e51d2e616d5dd03f5399154b3cafd002b953dfc2850e9d018031b4d4ed3b940a09505 SHA512 344f2705a64f0618584c5a9ad0a026f156918873ad6fafbaf92d57b564445ab6d557d76233445ec263a18a0bb19b6be7d1d7710d3f83b25114ea1b621fe102d9 -DIST wasm-bindgen-futures-0.4.26.crate 14775 BLAKE2B 225bf975528c93db10e33fb32a870ffafa77ad80ab0e1fdd8e59b9e1d6fbffbbc39a054ebb42a2cd2f99f3b7867ee301a7be417ba067bb2bb9cffe2fcc6387f9 SHA512 80c1ce9071b36bf2241075a76fc61eb7c735b2cb01d8f57258eb2ec7f5589c2b763318d3ba4fab6dcb3ff8d621558dd9a9d9cc49b2acfa4f5832f8c915e8785e DIST wasm-bindgen-futures-0.4.28.crate 14734 BLAKE2B a8db494634c36c1e2201ef8a73c3233be5b5e0ffd68212e071c82756295bc48f7a7e68fe1f592a1e7cca9f7e831e1372f599667e72ad739ffb80baac07a56db2 SHA512 16914f3218dc523522bab90dbeaa969de300b500d3669efec14e0fc5718b867a6cc849323119b1b80079a61a0656904237af78d8bae1514cf7c19dadd6a7f29e -DIST wasm-bindgen-macro-0.2.73.crate 11545 BLAKE2B 481800c0c118048b29733a3bbe11ed5c816c1b5496b10b4142310d79ab6b825eb12280cf3c7304e768e6c8acd77105faa8574cf21afbf27810c9b7eac31010b9 SHA512 7ac842e68e6ba577b33df50ebe5c5fd250b1f4bc4e1ec1112be4fc806980d21f73f33612b14024626904a6116a8c72b83f2b7c5405fc111cd2164b4744f843d1 -DIST wasm-bindgen-macro-0.2.76.crate 11552 BLAKE2B 4ba4e7c3832caa9d4cab118a305094fa38673bd4f1c7221634402e1cf103ca0fbeadaf1c9eb65628532ec9f8b69d7c4470248c401fcab467543ce2feed207ce6 SHA512 529926b78d3d3c6d8dcc34f2d7b2ef334aa76e0050814c990cab0f62e5e08a67f4c56581206bbafe2e86614abbef757fc7d6548a6e27797ed313fa188997f91e DIST wasm-bindgen-macro-0.2.78.crate 11700 BLAKE2B 9f1538d79a39555f643b9ac6bfe026c259dfd129c45fdcc33cfbeeba2acb2a26ff4c9df83a3d11674c5ef8e9393af7a4d0cd7e3bd08b7eca0fa55986c893c5e3 SHA512 3389922198b0d5c19163f4de345e0cd7a3c0609d48ff933bd5af0cfb205463632878b5d60bfeeb8dd8f8a98f28f23c5185dd6d8389f599f31176297c944b595d -DIST wasm-bindgen-macro-support-0.2.73.crate 17835 BLAKE2B 8e18ef319106273d3f41e947bd1f5ffa7a91e04f713fd67fa0bb697579ae51bbcce75b48a91949aca8e64e6f52ed35eda6b49cec366365126115a9c30572281c SHA512 22e322840ebda05ffdd2f4ffd07745d0f24b928e3425c66425392560f8dd59b007f80d7c4e4a01dafd83c09d76953ecc2cd61d362219791ed88f7f4ecc56960d -DIST wasm-bindgen-macro-support-0.2.76.crate 17907 BLAKE2B d057a7f3d6b7f080e52aff3e9a03f6cc8038c8d8ef9c9a92f204e5d7e6e1e064965cebf34658cc4ca83a9bba48edf444e2f9baa668ad40deae0346c713c8a38b SHA512 5f239585ecfe48488e6ad68acb0238faaaff15fd3269d3c44e41e690f538c4520fe2ded83800ecfd74525059321c2c3648ffede93e1db32b89c935c745b7e9d3 DIST wasm-bindgen-macro-support-0.2.78.crate 17858 BLAKE2B 8378f639a94797d2d149f2cd836f56143a498d3be5fc30eced6fe4fc2e1bfe14a70f3165cdc5cc1c88f0162efec75b64e56aa9819596984afa97003601b933ce SHA512 84d9867407a7caa942ab11f0ad1c343839bf51793930cdc3ebc5279ca370062eda006540448cc401f6afa078dbb1523b348ae69f4c6d7ccc9a7b8fa1ff895236 -DIST wasm-bindgen-shared-0.2.73.crate 6691 BLAKE2B fbde26dfb5f36474ed3e01f7254dbe742a205cacc85848b85efda09c22e1f9fdb464bd3b7a2c429b73e4f5f3095803e9e477cfb81d6bcc779c04c2602c465bb6 SHA512 d3a28e4bf42071496f2e48c3ba3134a06856be12deac79fe13d1e2e7da8018d5e7f220f4dcc02fdda9eddfc2d52ceef18cd180db7d2bcced44e88a36304f947c -DIST wasm-bindgen-shared-0.2.76.crate 7238 BLAKE2B 95dfc5c13e01a17bc02a37e958faa24ebb326962c148a214d247bb2338b0d76901e60d68a6efc42d7ceb43821c4bf6c750e9ec7bcc2b90d49cb752cee4186c0c SHA512 67691b52e34d8e837d9953986bc6a24f760f4e6110499fc0f447cc740433127a06def8ccdeeab1888ddfa8daded0227b07c187dfba0c66335b0283c819b55a29 DIST wasm-bindgen-shared-0.2.78.crate 7206 BLAKE2B ee60946d3a90a2760d8cb045657de659c6367aed2d98efd60074cb57f6b06aedf9ac44fed3d41c20299c5edc095cac5537a365fdb01183f3e60b6323da581935 SHA512 a808b7a7909e4a287ccced1b251ad4c1230399c84c05e246127b6a91fa4ed328d6a24316dbdc1843db71a5bd78cfd80113424f9984e0777323d74e3125607134 -DIST web-sys-0.3.50.crate 650100 BLAKE2B 448227dfbb6b91ab316ceebe554c9d9b89c397c25cd465f2e8a77560f185eb7308caf3b6052946e691d8fc22d6d382a0e3f164f7d29d873591ce17da792a993a SHA512 32afbfd3021c6cc4f228fc1762a4e29935373f4e7c572128723b508e6ab9588f3737167b91d5837e05a08c0bd182dd339c8f16b71e8a032f7e735cd619949d14 -DIST web-sys-0.3.53.crate 664908 BLAKE2B 56300ec722214ce9627cc385cc775522637cb45e203f0a70f9677ffae39158a101258f40adba0e788e459a7257b98eeea96a80312ef9802725b19cb2c582eb3a SHA512 42f69d998b88f25ea98241bfb3225be344a323816c687276d6cd7247c7e2113ebe0ddb7b3f6d310631f1b8177fe40a07baba48195f0368c2871aa1dbd808304c DIST web-sys-0.3.55.crate 664827 BLAKE2B 1864f320e6c9b80c6b4b4fd8941d66cf9368a9b0cebcb86d3486b99f65456748b46c507a1bb761611c4825d412986f5bd8c8fc38c3bda3dad2e9de213467ee51 SHA512 ddf191f009d49388bf60ee31650eff1ff884f01822989a226c559b9560aebd90681fadd34e7437f555d627a0a3139ebe267375618eadac8c17ace5fd47650764 DIST webbrowser-0.5.5.crate 11194 BLAKE2B de9e7afab8606cecf9c39d84c743ef7e78a81d85e189c145a4e3235350392a55c2713fd8798e10a2ca133011f893df0475df3451096648ef5d13c958f33b6c3f SHA512 1a8332b3c5cb9114530beb83b15219d6dcf2aef628fa6f4a6b45f1b8eb3c38ad07ef933f3de21159c3df523fb904630f32ffcc14d75b209fd5e48d8e20e4ee94 -DIST weezl-0.1.5.crate 34944 BLAKE2B 57db23ed5d92b658a3ace462194763756a3ec3caa530296efc3255ae1d14f36ccfb4841d2417028ef57f093eadfa19b157f9cdc29d37b2f72fb661578cc7e907 SHA512 1fe4352dc8c773ac1297ba23ca3236dece6cec44887116afb1b3760dd0cf3ffcf5faae3aa98814775fddc38032c97c26a14684b47e7aa9deaecafe8c908e0735 -DIST wepoll-sys-3.0.1.crate 25807 BLAKE2B c6078643e6d3e47dc1028008a12eefca1c238e6057c3b8699f2a70ac2609973d9c4f76baa81f9b6e566228b0820172a132e7f9f438aadd0066d6067040fcff23 SHA512 f1a5e91ac284d9542cbdc891000309d67d9651058db3a7307e4a2378178920ae7e04525ae625d18e45c54c269b320061120c459b046a5f3f0373c1d15fc8d239 -DIST which-4.1.0.crate 7684 BLAKE2B 4d8eb0a263c14b506f446fa808d9326c6e4e781cc2d79a1f6efcf7b9bb9a294d3266a2f3de4526ac0ec08ca65a18622ac064e9ae1e86dd1b325b122f684371f8 SHA512 4fffd3dd4ac73f5c232ee8a53bbc948a7295a2a51ec3f792d5d0aa84ceb6c2322fc11b35d29f5d3181c763b34c434c5ea2807ae6cc3393cd30d68b0fd44c7a22 DIST which-4.2.2.crate 8589 BLAKE2B 360ea38f7fcb357f558f8e80a2c951d016e4f5dd45f1294f1b85a6ab441cf89fb6f3192b63ca42491693f2eeb57c048d8d0f9ca9f1d857301288b098b138b07c SHA512 25fe54f3703d865bdda04a26720839d6cf52300558e1abdf339eec985cc085fc983ea44a3b36767ef56748c865d432b0105a9fbe677f4b4deee8ec0af9dda59c DIST widestring-0.4.3.crate 26215 BLAKE2B 7e5cdbb58a23004bb76cc12d451fd891ef08c05f730b059eb62a0f5e9482dde58c4059f9c0892fb1ebebbc8ee85dd20ece3ebf12c48790dca5eaeeb20b81dc34 SHA512 48561bd8a3b589f2a0328d1286177fbc6c5bc534756898912cbaab81d742b64ef898eed75073484d5e30762ceda9d2e88710074e7e9ce1a7dd43b5d871de3860 -DIST wild-2.0.4.crate 7068 BLAKE2B 4f2846b44c5cb34de67688afb74af36b5f435e314b4a5312fe33eaa8378a218354bde2355f6ef53ef1444abcfeaafc150f76f155aa97850d09fff469e3bd1fc5 SHA512 a0c7d27891064d7455c3abf8aaecbd744e7fdd3b4e11bd8e7becb8917585410828fe45f2077e90d81608d230d8a31eaaf2ac818d4ad3225e1f9d3ffd27495453 DIST winapi-0.2.8.crate 455145 BLAKE2B 50f3c2a0cf4eeedd6891b11392e520c1cca139a71f8f736eabaf43aa7e4b1b5d57697918978220459572d373940edf971eb8302f292cbff832283e905076319a SHA512 115e6f027cdd4a56f77ca24f4ab249d2a6cac1e1f955c826a9b6ee05db4861790a533f5e674aebbb540370fff52ed41618c2cd7c906e73200e92df213109cebe DIST winapi-0.3.9.crate 1200382 BLAKE2B cb5799749ccd935ea2d7068d953cecf19f543d9db7dc16ad4584bb7005373ada34937a3ced7225544d8bc765da599911c7a3190efefb3a25b7c1bb7123b4f673 SHA512 ff8b7b78065f3d8999ec03c725a0460ebc059771bf071c7a3df3f0ecd733edf3b0a2450024d4e24e1aedddaecd9038ce1376c0d8bbf45132068cf45cf4a53a97 DIST winapi-build-0.1.1.crate 669 BLAKE2B 6c8d8e0f81574c086f06fb3f234b0e6759d293d1d254857c3d491e4d43279e5c2f57f2fcfdc9d5d7b083280f4cc2a75a6ee9bc1541ec6ce8f8d904ded0567faf SHA512 8b0a239e205a5368892f41c870a8a7ea16e3468c364b03382bef7fa3a2e7159b09c07661e95b1227578f6d72c14879daa4444b28c51ae20ef15d985d59ca5a77 DIST winapi-i686-pc-windows-gnu-0.4.0.crate 2918815 BLAKE2B 4d357e4d30f9552972170d65b9a5358b69c46a3e772fe05efc22f3d4ffc1caeeaad7aacdc7abd503a7ad0545f8bd7d22bf351dcb6df76f812fa4d45c34d65df0 SHA512 a672ccefd0730a8166fef1d4e39f9034d9ae426a3f5e28d1f4169fa5c5790767693f281d890e7804773b34acdb0ae1febac33cde8c50c0044a5a6152c7209ec2 DIST winapi-util-0.1.5.crate 10164 BLAKE2B fc800aceae5249a858c806c3e969ef2545766099872d856ebee51c883d9acf1122278db9607d50ca53eac351502b700fd2463900932d342240f97f683d517963 SHA512 7baeb661f397c4693dfa001fdc774b323c51a7c55caad40f2de5112a1cefd1d6151e3df41fa4ee193460a5905917c83d2b1de5fa10b4bd014ad96690af95c0fd -DIST winapi-wsapoll-0.1.1.crate 2881 BLAKE2B 752a56fd63334b38528eca1bfaa4ba4e07de8b7b4f35aa71165038c70f7f6d482c994a9d8367fa5c8d17df48de746bdf773e32a1109b847d8998ab78c6fc33b9 SHA512 110bcb68119ce5848b9de19a9af0a752bb7f3bbb9c07f2e0d303b428166197d3525c8b4ca6afd56f132f14b4948054cf1dbcc7669c02775b66343e089488fba6 DIST winapi-x86_64-pc-windows-gnu-0.4.0.crate 2947998 BLAKE2B 2ad1ea8b5fa07d544e910ccba043ae925269b76b26c9da356305b34b86741dd8b9aff0b9ffe3d562db4fcd7d7c46a11ce9e3168b782b1d89ae6881742b7ede82 SHA512 4a654af6a5d649dc87e00497245096b35a2894ae66f155cb62389902c3b93ddcc5cf7d0d8b9dd97b291d2d80bc686af2298e80abef6ac69883f4a54e79712513 DIST windows-0.9.1.crate 65533 BLAKE2B 3907b0ed8e4ca17796a4cdd7f96da384b9e9978d68300d0b5f4574b5fa5ed15a279ff3d9a7ddc85324bb64be18fe7b6477d22193643fa76a964ab3a0262dcf71 SHA512 a33f93f38a04188bda6b06ef57e99a3be5e2a162fa55bd494ea4ba97ac1e23141a4cdd55b9c39aa0e634d450ab96d9c799811b61fe38d0191c8b0728bf27e508 DIST windows-sys-0.28.0.crate 3075898 BLAKE2B d62e2d2404026d29989abb8984c1c84819234b2bdcf4bf55979b5c02e1a593525494d4d5276722001752663013a478b96827b0507dc5d839fe48ecaea5a317be SHA512 5af1e8fa0b0f30d4626f17ad72d7d7b7bc62b24b69c9ef37d1e1440676e3306a4ffe0006d8c977162e4d4d1520d3c91aee132043e8e6fd86b260a148aa8ec651 @@ -1077,19 +554,11 @@ DIST windows_macros-0.9.1.crate 6501 BLAKE2B 55d8d9a4d557214f2f620f3280ff7cd6ad7 DIST windows_x86_64_gnu-0.28.0.crate 743221 BLAKE2B 2d6205ed5adadd4799d7779e1adcaabe5e1cecb90779775f58dc1e571ba8c5b1d8eafd92043b6838e2906f810946c49a7ebc078c249e8c804ed088ac2e6d6b35 SHA512 1aacddb207e6b34ac2123b90e9cde2573b2f18581a8fb1371a828f6c469539327f9e3df115825936d3e4fae7b525718d8cab3f1f0b5b0782dd76c149ce104349 DIST windows_x86_64_msvc-0.28.0.crate 668950 BLAKE2B 90488fdda855494be0aaf3b4381785ec74c5beae3a4d853835ce320750d7867c1e95067f8f921e2f2f67047b9f84d963f2c765c7c8cd3011841908a7d1c990de SHA512 d8daf7c8cc31d1da53d54ca495dc54b457c5e8a42418348c1fe3b91d4184b3831bffafc56cca1067ecf67c4edf7873e74e505a6e3a7868ce495f2afc759d20c7 DIST winreg-0.7.0.crate 21225 BLAKE2B 5841db683dc0aa8b92de8ec43100403b029c8d3e544adcaab030d998e5af4644ea176ac0bcd97141d137450a7bd761a5291405202c445a326da7d4f240686230 SHA512 a0b7a2d239e30cea89a863b879831bc32b5f2988ef3f0586ddadda48827cafc82d3602d2f8df3c47dc1e80537149a1ca1dc1506f9fbf960d9ba081dff1bac731 -DIST ws2_32-sys-0.2.1.crate 4697 BLAKE2B 52a7a3f57bcd73156730ada4d78fe12a54a498c9064e0928e09de13a95bd9237f884538e5f9368b47a7ac3c425f0f798c26bad85f20bed4ea26c2fa16c779b97 SHA512 18356861fc595efe7d0180afb8ce7649da35a4f9ba456271d2068679ab258a861af32a2e016e241fbfbf5f6ef0eb33127b26eabfc11428af39506538faa4821f -DIST x11-2.18.2.crate 63683 BLAKE2B 2ea3b1ca42924a160cf054ec8abc75af031c154f1289614a1f82a68f75d3aa8a7ca4929f53dc5a5fe8177efebb4002710eb5be082d2f588ccdfef6e7acf685b9 SHA512 fecaff0e52e4b106ebd74aa60356547d582d42d7505a9ceda44c827e19478f02f2b4a832b4a8e82af2a005da4e83c4ca018346d2b3a370ed3ca1e6ea280a6824 DIST x11-2.19.1.crate 65593 BLAKE2B 5217ba6155b0705320c164e046e9efcad966e875e50cb3e9d20d27857d199d123d0fa5e4f28081f078f24d54fac5f10f2c26eeb011e12ef4d3cbb659dd8a3c1e SHA512 0b500b5a3d6cdb2ff5b2ac60cfca261bf3bb98ed3b36d0a52d85d195c1605550aa9cbe46fbaad94380b50b781002d75b1710f324e5f278ecf9707390c6a622ed -DIST x11rb-0.8.1.crate 611888 BLAKE2B a57c68441d51ba0f976424f4e6e939d100526070d52f109e1d6ca9b55ba6831431239c83890cbceec019e75bf1673913a0317e1817ad1eee78e04b11e19ca0a0 SHA512 1acd4d45fa4b073cf91fdfd030487a13cd13b2dd0d1188c624dcf5be44233b40647dee1effdb5d4c8742fcb936a192c294d3b9f4872b4645bb792e104a0f5d85 -DIST xml-rs-0.8.3.crate 52547 BLAKE2B cffdece0269b9c04c763481af3a3a25df53d7593552c0956a0efa30669aae497e7c4865c92bcf267f4d7684d0ab957fab3d62b76a241fbfd6497eae25bd9154f SHA512 e44048aa2a010c6242d79c8590bceb300d7056cfd1397c4e4e4411089a3c3686b49603fc2336ea69596b6775b729f1197ab6d9d7d8f83a758e2d962c07aec033 DIST xml-rs-0.8.4.crate 52690 BLAKE2B 140d4e725ae0e82c949838c1f6d82e1fbb00e2df4d51b74486597302d4a434ccb46bbd6f5e97636b4947c0092793928c29837a3290bb525344e8a27c0951a42b SHA512 b21b0db9ee7cdfddae7c110e4fec714d719e75ba139744c290692d660caa425aa8b1ece644deb5f1879f21c0561b9b412b9ba8931f7f5b4e220ef08f8a7fc5e6 DIST xmlparser-0.13.3.crate 25732 BLAKE2B 83c3a95c3d39e1f08d2de08082aad2812017c21bc8691c1e09c48d6b0791994abc192c8e56e0729dfa89bbd37f4de22c8f8480ab940550057b66f81ee6b1f38a SHA512 aefe23681c42b82274d9deed6fb65af12cf815ee150b385220c1184de0d4b588fa1bb02eb54e52cf8336c19bdae771711efc77e016781b19ce97711908fa91f5 DIST yaml-rust-0.4.5.crate 47783 BLAKE2B 3e888c5cc7afb43eaf3aaab2b6f47b86df164a66eb54d4e166b965cc84b1e06cd17bd992a0d6ee175d9a73a76e2b44a13167246383ed054afcf3cc1710b309cb SHA512 7621dc8dfd5e7d4a7a8805b2a7e8319b63b852367655f2359d4e3e8fec6c4fad52d75c46ce1161e4c674eac0780b757ce9d34e664e304d8d2beec7afa0363ea0 -DIST zip-0.5.12.crate 43857 BLAKE2B 9b1b0dcd5f04300efd3c7e480eb0d14e7c36f2819a187c9b435da99f61c4ee93ca469fa4810a1bd52624138e51ac276a68e9d05df75bea5bbfe89d845f1c2662 SHA512 8ead1f24eb7c8c7624c80f8fdc17d85c397686b2cb45174bdc8cfab44417738e1d1a49ae3f776dc0fbb698b20b7de71e94afe1526f8814061289f229891d95f0 DIST zip-0.5.13.crate 48237 BLAKE2B 0ffd9c41535f3e49d091b831925e8b639f3128702deafc75e0ea712b67df6f0900ec79628dd2640eb9b91fba7e828abd8b5c9edad87fbe7b22e042ef9909b07f SHA512 b30950ede91cdb1d4ef4f9d6aee8f62a3aa5a1a6422bd10507dfd76edc02c1bd24d41c7bf2ac416a5ee045562cacda0d17cd04938ec02b8be0a0d64acbaf7e01 -DIST zstd-0.8.1+zstd.1.5.0.crate 27554 BLAKE2B 1fbb7ea05380d6dac1a9207ec932314bca50d8cd5f94b361adbe5864b53415805ae6c5914bcbba7293e4ba4602a88d3c146e32cd08059cb28a76b4f4fb0096ff SHA512 fa7f418de09aba647879b46578c9d36b297d9cc41fc7ea6ecfa0d39573c76db0dcfe51afcdca9ca2927be8706fbc0887a4c26def2a69b17646b20608aba5834f DIST zstd-0.9.0+zstd.1.5.0.crate 25973 BLAKE2B d12fc714b4712feea71e43e0ca391c6390e16d2f3650653c719110b7cd1599ab4028b907932015a7bd7396a0466dc0a45840dbe7135f88f7bfaa33656c41ea6d SHA512 64e80dbbd1ba00de21b9dd5300ec61ae642d0280cec8039a0d465547aa863744218c2d314073d6480051af37d2a24cb0553286154f4363257d991d65a1c73742 -DIST zstd-safe-4.1.0+zstd.1.5.0.crate 12667 BLAKE2B 68e6d1291d9796f878a1b02e7aa0ca2d17a594e0a8720b0147cfe0d7d584e04396e7af60c499d5095fd6b44c893a97c26fe82753b4837225935bdba847feefeb SHA512 b54277a929ab2ad10aa56599452977859f669d431cab86619f4b26640fa7726c898a3d9e030f7b0f76c50453fe27bcc02b59f5a2d8701e1f3ce2a0a772dd4f27 DIST zstd-safe-4.1.1+zstd.1.5.0.crate 12665 BLAKE2B bc525d967b1266eb7c005dc46af0e2ccf9b77f3ef2bc8f60a2106b50cd64a324851f1022a1128d3223a85c3124230610ce54e2183ece00a386841ca68b6a95cf SHA512 0127fd28342b118b0ddcbab0a68945f11b9c5ce68e3dcf88cca42fee0345a5818fa403cb827cdf4f4d35e17c786321ab8b3667033a1dd5b7ffcb84a11940f1d4 -DIST zstd-sys-1.6.0+zstd.1.5.0.crate 650825 BLAKE2B dca14ea142cd94b12e92200b8b8943ed42af163d9c872cdfd7e5b7e63d314416e457ff487023ca00c6fdaf042e3cd3f9d6d514a72ecd3f275d9d548d5dc24369 SHA512 64afe8fa009f38413fcaf51e4da507b206c2e5b6eb8dce4fbf8e4fb1ac99e25d5a440793fe969c730ad82d8cde410d15746d26a3228bc9009c7eb436a35c3453 DIST zstd-sys-1.6.1+zstd.1.5.0.crate 650935 BLAKE2B 271cff18da805358361c28bc2076c3144923be3a45510fe0e6725839a18937bbcf08b5b46d13363548e57bf4da737c551731999c9894d5f1690901212a472f52 SHA512 79278016fbe30f0b55195c540f31be5e8de961f6b7de7852c6870ba9d21f7be4aef8c4f57871e0a932e830484d6612c1fce808e77991bf1c6aa98d84007eb01a diff --git a/app-shells/nushell/nushell-0.32.0-r1.ebuild b/app-shells/nushell/nushell-0.32.0-r1.ebuild deleted file mode 100644 index 34dea5b10753..000000000000 --- a/app-shells/nushell/nushell-0.32.0-r1.ebuild +++ /dev/null @@ -1,719 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -CRATES=" -addr2line-0.14.1 -adler-1.0.2 -adler32-1.2.0 -aead-0.3.2 -aes-0.6.0 -aes-gcm-0.8.0 -aesni-0.10.0 -aes-soft-0.6.4 -ahash-0.7.2 -aho-corasick-0.6.10 -aho-corasick-0.7.18 -alloc-no-stdlib-2.0.1 -alloc-stdlib-0.2.1 -ansi_colours-1.0.2 -ansi_term-0.11.0 -ansi_term-0.12.1 -anyhow-1.0.40 -arboard-1.2.0 -arrayref-0.3.6 -arrayvec-0.4.12 -arrayvec-0.5.2 -arrow-4.1.0 -as-slice-0.1.5 -async-channel-1.6.1 -async-executor-1.4.1 -async-global-executor-2.0.2 -async-io-1.4.1 -async-lock-2.4.0 -async-mutex-1.4.0 -async-recursion-0.3.2 -async-std-1.9.0 -async-task-4.0.3 -async-trait-0.1.50 -atomic-waker-1.0.0 -atty-0.2.14 -autocfg-1.0.1 -backtrace-0.3.58 -base64-0.13.0 -base64-0.6.0 -base64-0.9.3 -base-x-0.2.8 -bat-0.17.1 -bigdecimal-0.2.0 -bincode-1.3.3 -bitflags-1.2.1 -bit-set-0.5.2 -bit-vec-0.6.3 -blake2b_simd-0.5.11 -block-0.1.6 -block-buffer-0.2.0 -block-buffer-0.9.0 -blocking-1.0.2 -brotli-3.3.0 -brotli-decompressor-2.3.1 -bson-0.14.1 -bstr-0.2.16 -bumpalo-3.6.1 -bytemuck-1.5.1 -byteorder-1.4.3 -bytes-0.4.12 -bytes-0.5.6 -bytes-1.0.1 -byte-tools-0.2.0 -byte-unit-4.0.11 -bzip2-0.3.3 -bzip2-sys-0.1.10+1.0.8 -cache-padded-1.1.1 -calamine-0.17.0 -cassowary-0.3.0 -cc-1.0.67 -cfg_aliases-0.1.1 -cfg-if-0.1.10 -cfg-if-1.0.0 -chrono-0.4.19 -chrono-tz-0.5.3 -cipher-0.2.5 -clap-2.33.3 -clipboard-win-4.1.0 -cloudabi-0.0.3 -codepage-0.1.1 -codespan-reporting-0.11.1 -colored-1.9.3 -color_quant-1.1.0 -common-path-1.0.0 -concurrent-queue-1.2.2 -config-0.10.1 -console-0.13.0 -constant_time_eq-0.1.5 -const_fn-0.4.7 -content_inspector-0.2.4 -convert_case-0.4.0 -cookie-0.14.4 -core-foundation-0.9.1 -core-foundation-sys-0.8.2 -core-graphics-0.21.0 -cpuid-bool-0.1.2 -cpuid-bool-0.2.0 -crc32fast-1.2.1 -crossbeam-channel-0.5.1 -crossbeam-deque-0.7.3 -crossbeam-deque-0.8.0 -crossbeam-epoch-0.8.2 -crossbeam-epoch-0.9.4 -crossbeam-queue-0.2.3 -crossbeam-utils-0.7.2 -crossbeam-utils-0.8.4 -crossterm-0.18.2 -crossterm-0.19.0 -crossterm_winapi-0.6.2 -crossterm_winapi-0.7.0 -crypto-mac-0.10.0 -crypto-mac-0.4.0 -cssparser-0.27.2 -cssparser-macros-0.6.0 -cstr_core-0.2.3 -csv-1.1.6 -csv-core-0.1.10 -ctor-0.1.20 -ctr-0.6.0 -ctrlc-3.1.9 -cty-0.2.1 -curl-0.4.36 -curl-sys-0.4.42+curl-7.76.0 -dashmap-4.0.2 -data-encoding-2.3.2 -decimal-2.1.0 -deflate-0.7.20 -deflate-0.8.6 -derive_is_enum_variant-0.1.1 -derive_more-0.99.13 -derive-new-0.5.9 -digest-0.6.2 -digest-0.9.0 -directories-3.0.2 -directories-next-2.0.0 -dirs-1.0.5 -dirs-3.0.2 -dirs-next-2.0.0 -dirs-sys-0.3.6 -dirs-sys-next-0.1.2 -discard-1.0.4 -doc-comment-0.3.3 -dtoa-0.4.8 -dtoa-short-0.3.3 -dtparse-1.2.0 -dunce-1.0.1 -dyn-clone-1.0.4 -either-1.6.1 -eml-parser-0.1.2 -encode_unicode-0.3.6 -encoding-0.2.33 -encoding-index-japanese-1.20141219.5 -encoding-index-korean-1.20141219.5 -encoding-index-simpchinese-1.20141219.5 -encoding-index-singlebyte-1.20141219.5 -encoding_index_tests-0.1.4 -encoding-index-tradchinese-1.20141219.5 -encoding_rs-0.8.28 -endian-type-0.1.2 -env_logger-0.7.1 -env_logger-0.8.3 -error-chain-0.12.4 -error-code-2.2.0 -event-listener-2.5.1 -failure-0.1.8 -failure_derive-0.1.8 -fake-simd-0.1.2 -fallible-iterator-0.2.0 -fallible-streaming-iterator-0.1.9 -fancy-regex-0.3.5 -fast-float-0.2.0 -fastrand-1.4.1 -fd-lock-2.0.0 -filesize-0.2.0 -fixedbitset-0.2.0 -flatbuffers-0.8.4 -flate2-1.0.20 -flume-0.9.2 -fnv-1.0.7 -foreign-types-0.3.2 -foreign-types-shared-0.1.1 -form_urlencoded-1.0.1 -fs_extra-1.2.0 -fuchsia-cprng-0.1.1 -fuchsia-zircon-0.3.3 -fuchsia-zircon-sys-0.3.3 -futf-0.1.4 -futures-0.1.31 -futures-0.3.14 -futures-channel-0.3.14 -futures_codec-0.4.1 -futures-core-0.3.14 -futures-cpupool-0.1.8 -futures-executor-0.3.14 -futures-io-0.3.14 -futures-lite-1.11.3 -futures-macro-0.3.14 -futures-sink-0.3.14 -futures-task-0.3.14 -futures-timer-3.0.2 -futures-util-0.3.14 -fxhash-0.2.1 -gcc-0.3.55 -generic-array-0.12.4 -generic-array-0.13.3 -generic-array-0.14.4 -generic-array-0.8.4 -gethostname-0.2.1 -getrandom-0.1.16 -getrandom-0.2.2 -getset-0.1.1 -ghash-0.3.1 -gimli-0.23.0 -git2-0.13.18 -gjson-0.7.5 -glob-0.3.0 -globset-0.4.6 -gloo-timers-0.2.1 -h2-0.2.7 -hamcrest2-0.3.0 -hash32-0.1.1 -hashbrown-0.11.2 -hashbrown-0.9.1 -hashlink-0.7.0 -heapless-0.6.1 -heck-0.3.2 -hermit-abi-0.1.18 -hex-0.3.2 -hex-0.4.3 -hkdf-0.10.0 -hmac-0.10.1 -hmac-0.4.2 -hmac-sha1-0.1.3 -html5ever-0.25.1 -htmlescape-0.3.1 -http-0.2.4 -httparse-1.4.0 -http-body-0.3.1 -http-client-6.3.5 -httpdate-0.3.2 -http-types-2.11.0 -humantime-1.3.0 -hyper-0.11.27 -hyper-0.13.10 -hyper-tls-0.4.3 -ical-0.7.0 -idna-0.2.3 -image-0.22.5 -image-0.23.14 -indexmap-1.6.2 -infer-0.2.3 -inflate-0.4.5 -Inflector-0.11.4 -instant-0.1.9 -integer-encoding-1.1.7 -iovec-0.1.4 -ipnet-2.3.0 -isahc-0.9.14 -itertools-0.10.0 -itoa-0.4.7 -jobserver-0.1.22 -jpeg-decoder-0.1.22 -js-sys-0.3.50 -kernel32-sys-0.2.2 -kv-log-macro-1.0.7 -language-tags-0.2.2 -lazycell-1.3.0 -lazy_static-0.2.11 -lazy_static-1.4.0 -lexical-5.2.2 -lexical-core-0.7.6 -libc-0.2.94 -libgit2-sys-0.12.19+1.1.0 -libm-0.2.1 -libnghttp2-sys-0.1.6+1.43.0 -libsqlite3-sys-0.22.2 -libz-sys-1.1.3 -line-wrap-0.1.1 -linked-hash-map-0.3.0 -linked-hash-map-0.5.4 -lock_api-0.3.4 -lock_api-0.4.4 -log-0.3.9 -log-0.4.14 -lz4-1.23.2 -lz4-sys-1.9.2 -mac-0.1.1 -malloc_buf-0.0.6 -markup5ever-0.10.1 -matches-0.1.8 -maybe-uninit-2.0.0 -md5-0.3.8 -md5-0.6.1 -md5-0.7.0 -memchr-2.4.0 -memmap2-0.2.2 -memoffset-0.5.6 -memoffset-0.6.3 -meval-0.2.0 -mime-0.3.16 -mime_guess-2.0.3 -miniz_oxide-0.3.7 -miniz_oxide-0.4.4 -minus-3.3.3 -mio-0.6.23 -mio-0.7.11 -mio-uds-0.6.8 -miow-0.2.2 -miow-0.3.7 -multiversion-0.6.1 -multiversion-macros-0.6.1 -native-tls-0.2.7 -neso-0.5.0 -net2-0.2.37 -new_debug_unreachable-1.0.4 -nibble_vec-0.1.0 -nipper-0.1.9 -nix-0.20.0 -nodrop-0.1.14 -nom-1.2.4 -nom-5.1.2 -ntapi-0.3.6 -num-0.2.1 -num-0.4.0 -num-bigint-0.2.6 -num-bigint-0.3.2 -num-bigint-0.4.0 -num-complex-0.2.4 -num-complex-0.4.0 -num_cpus-1.13.0 -num-format-0.4.0 -num-integer-0.1.44 -num-iter-0.1.42 -num-rational-0.2.4 -num-rational-0.3.2 -num-rational-0.4.0 -num-traits-0.1.43 -num-traits-0.2.14 -objc-0.2.7 -objc-foundation-0.1.1 -objc_id-0.1.1 -object-0.23.0 -once_cell-1.7.2 -onig-6.1.1 -onig_sys-69.6.0 -opaque-debug-0.3.0 -open-1.7.0 -openssl-0.10.34 -openssl-probe-0.1.2 -openssl-sys-0.9.62 -ordered-float-1.1.1 -parking-2.0.0 -parking_lot-0.11.1 -parking_lot-0.9.0 -parking_lot_core-0.6.2 -parking_lot_core-0.8.3 -parquet-4.1.0 -parquet-format-2.6.1 -parse-zoneinfo-0.3.0 -path_abs-0.5.1 -percent-encoding-1.0.1 -percent-encoding-2.1.0 -peresil-0.3.0 -pest-2.1.3 -petgraph-0.5.1 -phf-0.8.0 -phf_codegen-0.8.0 -phf_generator-0.8.0 -phf_macros-0.8.0 -phf_shared-0.8.0 -pin-project-0.4.28 -pin-project-1.0.7 -pin-project-internal-0.4.28 -pin-project-internal-1.0.7 -pin-project-lite-0.1.12 -pin-project-lite-0.2.6 -pin-utils-0.1.0 -pkg-config-0.3.19 -plist-1.1.0 -png-0.15.3 -png-0.16.8 -polars-0.13.4 -polars-arrow-0.13.4 -polars-core-0.13.4 -polars-io-0.13.4 -polars-lazy-0.13.4 -polling-2.0.3 -polyval-0.4.5 -ppv-lite86-0.2.10 -precomputed-hash-0.1.1 -pretty-0.5.2 -pretty_env_logger-0.4.0 -prettytable-rs-0.8.0 -proc-macro2-1.0.26 -proc-macro-error-1.0.4 -proc-macro-error-attr-1.0.4 -proc-macro-hack-0.5.19 -proc-macro-nested-0.1.7 -ptree-0.3.2 -query_interface-0.3.5 -quickcheck-1.0.3 -quickcheck_macros-1.0.0 -quick-error-1.2.3 -quick-xml-0.12.4 -quick-xml-0.19.0 -quick-xml-0.21.0 -quote-0.3.15 -quote-1.0.9 -radix_trie-0.2.1 -rand-0.3.23 -rand-0.4.6 -rand-0.7.3 -rand-0.8.3 -rand_chacha-0.2.2 -rand_chacha-0.3.0 -rand_core-0.3.1 -rand_core-0.4.2 -rand_core-0.5.1 -rand_core-0.6.2 -rand_distr-0.3.0 -rand_hc-0.2.0 -rand_hc-0.3.0 -rand_pcg-0.2.1 -rawkey-0.1.3 -rayon-1.5.0 -rayon-core-1.9.0 -rdrand-0.4.0 -readkey-0.1.7 -redox_syscall-0.1.57 -redox_syscall-0.2.7 -redox_users-0.3.5 -redox_users-0.4.0 -regex-0.2.11 -regex-1.5.3 -regex-automata-0.1.9 -regex-syntax-0.5.6 -regex-syntax-0.6.25 -relay-0.1.1 -remove_dir_all-0.5.3 -reqwest-0.10.10 -result-1.0.0 -roxmltree-0.14.1 -rusqlite-0.25.3 -rust-argon2-0.8.3 -rustc-demangle-0.1.18 -rust-crypto-0.2.36 -rustc-serialize-0.3.24 -rustc_version-0.2.3 -rust_decimal-0.10.2 -rust-embed-5.9.0 -rust-embed-impl-5.9.0 -rust-embed-utils-5.1.0 -rust-ini-0.13.0 -rustversion-1.0.4 -rustyline-8.1.0 -ryu-1.0.5 -s3handler-0.6.6 -safemem-0.2.0 -safemem-0.3.3 -same-file-1.0.6 -schannel-0.1.19 -scoped-tls-0.1.2 -scopeguard-1.1.0 -security-framework-2.2.0 -security-framework-sys-2.2.0 -selectors-0.22.0 -semver-0.11.0 -semver-0.9.0 -semver-parser-0.10.2 -semver-parser-0.7.0 -serde-0.8.23 -serde-1.0.125 -serde_bytes-0.11.5 -serde_derive-1.0.125 -serde-hjson-0.9.1 -serde_ini-0.2.0 -serde_json-1.0.64 -serde_qs-0.7.2 -serde_test-0.8.23 -serde_test-1.0.125 -serde_urlencoded-0.7.0 -serde-value-0.6.0 -serde_yaml-0.8.17 -serial_test-0.5.1 -serial_test_derive-0.5.1 -servo_arc-0.1.1 -sha1-0.2.0 -sha1-0.6.0 -sha2-0.6.0 -sha2-0.9.3 -shadow-rs-0.5.25 -shellexpand-2.1.0 -shell-words-1.0.0 -signal-hook-0.1.17 -signal-hook-registry-1.3.0 -siphasher-0.3.5 -slab-0.3.0 -slab-0.4.3 -sluice-0.5.4 -smallvec-0.2.1 -smallvec-0.6.14 -smallvec-1.6.1 -smart-default-0.6.0 -snap-1.0.5 -socket2-0.3.19 -socket2-0.4.0 -spinning_top-0.2.3 -stable_deref_trait-1.2.0 -standback-0.2.17 -static_assertions-1.1.0 -std_prelude-0.2.12 -stdweb-0.4.20 -stdweb-derive-0.5.3 -stdweb-internal-macros-0.2.9 -stdweb-internal-runtime-0.1.5 -str-buf-2.0.0 -string_cache-0.8.1 -string_cache_codegen-0.5.1 -strip-ansi-escapes-0.1.0 -strsim-0.8.0 -subtle-2.4.0 -surf-2.2.0 -sxd-document-0.3.2 -sxd-xpath-0.4.2 -syn-0.11.11 -syn-1.0.71 -synom-0.11.3 -synstructure-0.12.4 -syntect-4.5.0 -sysinfo-0.16.5 -sys-locale-0.1.0 -take-0.1.0 -tempfile-3.2.0 -tendril-0.4.2 -term-0.5.2 -term-0.7.0 -termcolor-1.1.2 -terminal_size-0.1.16 -term_size-0.3.2 -textwrap-0.11.0 -thin-slice-0.1.1 -thiserror-1.0.24 -thiserror-impl-1.0.24 -thread_local-0.3.6 -threadpool-1.8.1 -thrift-0.13.0 -tiff-0.6.1 -time-0.1.44 -time-0.2.26 -time-macros-0.1.1 -time-macros-impl-0.1.1 -tint-1.0.1 -tinyvec-1.2.0 -tinyvec_macros-0.1.0 -titlecase-1.1.0 -tokio-0.1.22 -tokio-0.2.25 -tokio-codec-0.1.2 -tokio-core-0.1.18 -tokio-current-thread-0.1.7 -tokio-executor-0.1.10 -tokio-fs-0.1.7 -tokio-io-0.1.13 -tokio-macros-0.2.6 -tokio-proto-0.1.1 -tokio-reactor-0.1.12 -tokio-service-0.1.0 -tokio-sync-0.1.8 -tokio-tcp-0.1.4 -tokio-threadpool-0.1.18 -tokio-timer-0.2.13 -tokio-tls-0.3.1 -tokio-udp-0.1.6 -tokio-uds-0.2.7 -tokio-util-0.3.1 -toml-0.5.8 -tower-service-0.3.1 -tracing-0.1.26 -tracing-attributes-0.1.15 -tracing-core-0.1.18 -tracing-futures-0.2.5 -trash-1.3.0 -try-lock-0.1.0 -try-lock-0.2.3 -tui-0.14.0 -typed-arena-1.7.0 -typenum-1.13.0 -ucd-trie-0.1.3 -ucd-util-0.1.8 -umask-1.0.0 -unicase-2.6.0 -unicode-bidi-0.3.5 -unicode-normalization-0.1.17 -unicode-segmentation-1.7.1 -unicode-width-0.1.8 -unicode-xid-0.0.4 -unicode-xid-0.2.2 -universal-hash-0.4.0 -unsafe_unwrap-0.1.0 -url-2.2.1 -user32-sys-0.2.0 -users-0.11.0 -utf-8-0.7.6 -utf8parse-0.1.1 -utf8parse-0.2.0 -utf8-ranges-1.0.4 -utf8-width-0.1.5 -uuid-0.8.2 -value-bag-1.0.0-alpha.6 -vcpkg-0.2.12 -vec_map-0.8.2 -version_check-0.9.3 -void-1.0.2 -vte-0.3.3 -waker-fn-1.1.0 -walkdir-2.3.2 -want-0.0.4 -want-0.3.0 -wasi-0.10.0+wasi-snapshot-preview1 -wasi-0.9.0+wasi-snapshot-preview1 -wasm-bindgen-0.2.73 -wasm-bindgen-backend-0.2.73 -wasm-bindgen-futures-0.4.23 -wasm-bindgen-macro-0.2.73 -wasm-bindgen-macro-support-0.2.73 -wasm-bindgen-shared-0.2.73 -webbrowser-0.5.5 -web-sys-0.3.50 -weezl-0.1.5 -wepoll-sys-3.0.1 -which-4.1.0 -widestring-0.4.3 -wild-2.0.4 -winapi-0.2.8 -winapi-0.3.9 -winapi-build-0.1.1 -winapi-i686-pc-windows-gnu-0.4.0 -winapi-util-0.1.5 -winapi-wsapoll-0.1.1 -winapi-x86_64-pc-windows-gnu-0.4.0 -winreg-0.7.0 -ws2_32-sys-0.2.1 -x11-2.18.2 -x11rb-0.8.1 -xmlparser-0.13.3 -xml-rs-0.8.3 -yaml-rust-0.4.5 -zip-0.5.12 -zstd-0.8.1+zstd.1.5.0 -zstd-safe-4.1.0+zstd.1.5.0 -zstd-sys-1.6.0+zstd.1.5.0 -" - -inherit cargo - -DESCRIPTION="A new type of shell, written in Rust" -HOMEPAGE="https://www.nushell.sh" -SRC_URI="https://github.com/nushell/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz - $(cargo_crate_uris ${CRATES})" - -LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD Boost-1.0 CC0-1.0 ISC LGPL-3+ MIT MPL-2.0 Unlicense ZLIB" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64" -IUSE="+extra" - -DEPEND=" - >=dev-libs/libgit2-0.99:= - dev-libs/oniguruma:= - dev-libs/openssl:0= - net-libs/libssh2:= - net-libs/nghttp2:= - net-misc/curl - extra? ( - dev-db/sqlite:3= - x11-libs/libX11 - x11-libs/libxcb - ) -" - -RDEPEND="${DEPEND}" - -BDEPEND=" - >=virtual/rust-1.51 - virtual/pkgconfig -" - -QA_FLAGS_IGNORED="usr/bin/nu.*" - -src_configure() { - # high magic to allow system-libs - export OPENSSL_NO_VENDOR=true - export RUSTONIG_SYSTEM_LIBONIG=1 - export LIBGIT2_SYS_USE_PKG_CONFIG=1 - export LIBSSH2_SYS_USE_PKG_CONFIG=1 - export PKG_CONFIG_ALLOW_CROSS=1 - - local myfeatures=( - stable - $(usev extra) - ) - - cargo_src_configure -} - -src_compile() { - cargo_src_compile --workspace -} - -src_install() { - cargo_src_install - local DOCS=( README.md docs/. ) - einstalldocs -} diff --git a/app-shells/nushell/nushell-0.39.0.ebuild b/app-shells/nushell/nushell-0.39.0.ebuild deleted file mode 100644 index e4f80b8e6b9e..000000000000 --- a/app-shells/nushell/nushell-0.39.0.ebuild +++ /dev/null @@ -1,615 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -CRATES=" -Inflector-0.11.4 -addr2line-0.16.0 -adler32-1.2.0 -adler-1.0.2 -ahash-0.7.4 -aho-corasick-0.7.18 -alloc-no-stdlib-2.0.3 -alloc-stdlib-0.2.1 -ansi_colours-1.0.4 -ansi_term-0.11.0 -ansi_term-0.12.1 -anyhow-1.0.43 -arboard-1.2.1 -arrayref-0.3.6 -arrayvec-0.4.12 -arrayvec-0.5.2 -arrow2-0.5.3 -async-stream-0.3.2 -async-stream-impl-0.3.2 -async-trait-0.1.51 -as-slice-0.1.5 -atty-0.2.14 -autocfg-1.0.1 -backtrace-0.3.61 -base64-0.13.0 -bat-0.18.3 -bigdecimal-rs-0.2.1 -bincode-1.3.3 -bitflags-1.2.1 -bitpacking-0.8.4 -bit-set-0.5.2 -bit-vec-0.6.3 -blake2b_simd-0.5.11 -block-0.1.6 -block-buffer-0.9.0 -brotli-3.3.2 -brotli-decompressor-2.3.2 -bson-0.14.1 -bstr-0.2.16 -bugreport-0.4.1 -bumpalo-3.7.0 -bytemuck-1.7.2 -byteorder-1.4.3 -bytes-0.4.12 -bytes-0.5.6 -bytes-1.1.0 -byte-unit-4.0.12 -bzip2-0.4.3 -bzip2-sys-0.1.11+1.0.8 -calamine-0.18.0 -cassowary-0.3.0 -cc-1.0.69 -cfg-if-0.1.10 -cfg-if-1.0.0 -chrono-0.4.19 -chrono-humanize-0.2.1 -chrono-tz-0.5.3 -clap-2.33.3 -clipboard-win-4.2.1 -clircle-0.3.0 -codepage-0.1.1 -codespan-reporting-0.11.1 -color_quant-1.1.0 -common-path-1.0.0 -console-0.14.1 -constant_time_eq-0.1.5 -content_inspector-0.2.4 -convert_case-0.4.0 -core-foundation-0.9.1 -core-foundation-sys-0.8.2 -core-graphics-0.21.0 -cpufeatures-0.2.1 -crc32fast-1.2.1 -crossbeam-channel-0.5.1 -crossbeam-deque-0.8.1 -crossbeam-epoch-0.9.5 -crossbeam-utils-0.8.5 -crossterm-0.19.0 -crossterm_winapi-0.7.0 -crunchy-0.2.2 -crypto-mac-0.11.1 -cssparser-0.27.2 -cssparser-macros-0.6.0 -cstr_core-0.2.4 -csv-1.1.6 -csv-core-0.1.10 -ctrlc-3.2.0 -cty-0.2.1 -decimal-2.1.0 -deflate-0.7.20 -deflate-0.8.6 -derive-new-0.5.9 -derive_more-0.99.16 -digest-0.9.0 -directories-next-2.0.0 -dirs-1.0.5 -dirs-3.0.2 -dirs-next-2.0.0 -dirs-sys-0.3.6 -dirs-sys-next-0.1.2 -doc-comment-0.3.3 -dtoa-0.4.8 -dtoa-short-0.3.3 -dtparse-1.2.0 -dunce-1.0.2 -dyn-clone-1.0.4 -ego-tree-0.6.2 -either-1.6.1 -eml-parser-0.1.2 -encode_unicode-0.3.6 -encoding-0.2.33 -encoding-index-japanese-1.20141219.5 -encoding-index-korean-1.20141219.5 -encoding-index-simpchinese-1.20141219.5 -encoding-index-singlebyte-1.20141219.5 -encoding-index-tradchinese-1.20141219.5 -encoding_index_tests-0.1.4 -encoding_rs-0.8.28 -endian-type-0.1.2 -env_logger-0.7.1 -env_logger-0.8.4 -error-chain-0.12.4 -error-code-2.3.0 -failure-0.1.8 -failure_derive-0.1.8 -fallible-iterator-0.2.0 -fallible-streaming-iterator-0.1.9 -fancy-regex-0.7.1 -fd-lock-3.0.0 -filesize-0.2.0 -flatbuffers-2.0.0 -flate2-1.0.20 -fnv-1.0.7 -foreign-types-0.3.2 -foreign-types-shared-0.1.1 -form_urlencoded-1.0.1 -fs_extra-1.2.0 -fuchsia-cprng-0.1.1 -futf-0.1.4 -futures-0.1.31 -futures-0.3.16 -futures-channel-0.3.16 -futures-core-0.3.16 -futures-executor-0.3.16 -futures-io-0.3.16 -futures-macro-0.3.16 -futures-sink-0.3.16 -futures-task-0.3.16 -futures-util-0.3.16 -fxhash-0.2.1 -gcc-0.3.55 -generic-array-0.12.4 -generic-array-0.13.3 -generic-array-0.14.4 -gethostname-0.2.1 -getopts-0.2.21 -getrandom-0.1.16 -getrandom-0.2.3 -getset-0.1.1 -gimli-0.25.0 -git2-0.13.21 -git-version-0.3.5 -git-version-macro-0.3.5 -gjson-0.7.5 -globset-0.4.8 -glob-0.3.0 -grep-cli-0.1.6 -h2-0.3.4 -hamcrest2-0.3.0 -hash32-0.1.1 -hashbrown-0.11.2 -hashlink-0.7.0 -hash_hasher-2.0.3 -heapless-0.6.1 -hermit-abi-0.1.19 -hex-0.3.2 -hex-0.4.3 -hmac-0.11.0 -hmac-sha1-0.1.3 -html5ever-0.25.1 -htmlescape-0.3.1 -httparse-1.5.1 -httpdate-1.0.1 -http-0.2.4 -http-body-0.4.3 -humantime-1.3.0 -hyper-0.14.12 -hyper-tls-0.5.0 -ical-0.7.0 -idna-0.2.3 -image-0.22.5 -image-0.23.14 -indexmap-1.7.0 -inflate-0.4.5 -instant-0.1.10 -insta-1.7.2 -integer-encoding-3.0.2 -iovec-0.1.4 -ipnet-2.3.1 -is_executable-1.0.1 -itertools-0.10.1 -itoa-0.4.8 -jobserver-0.1.24 -jpeg-decoder-0.1.22 -js-sys-0.3.53 -lazycell-1.3.0 -lazy_static-1.4.0 -lexical-6.0.0 -lexical-core-0.8.0 -lexical-parse-float-0.8.0 -lexical-parse-integer-0.8.0 -lexical-util-0.8.1 -lexical-write-float-0.8.0 -lexical-write-integer-0.8.0 -libc-0.2.101 -libgit2-sys-0.12.22+1.1.0 -libm-0.2.1 -libsqlite3-sys-0.22.2 -libz-sys-1.1.3 -line-wrap-0.1.1 -linked-hash-map-0.5.4 -lock_api-0.4.5 -log-0.4.14 -lz4-1.23.2 -lz4-sys-1.9.2 -mac-0.1.1 -malloc_buf-0.0.6 -markup5ever-0.10.1 -matches-0.1.9 -md5-0.6.1 -md5-0.7.0 -md-5-0.9.1 -memchr-2.4.1 -memmap2-0.2.3 -memoffset-0.6.4 -meval-0.2.0 -mime-0.3.16 -mime_guess-2.0.3 -miniz_oxide-0.3.7 -miniz_oxide-0.4.4 -miow-0.3.7 -mio-0.7.13 -mp4-0.8.3 -multiversion-0.6.1 -multiversion-macros-0.6.1 -native-tls-0.2.8 -neso-0.5.0 -new_debug_unreachable-1.0.4 -nibble_vec-0.1.0 -nix-0.20.1 -nix-0.22.1 -nodrop-0.1.14 -nom-1.2.4 -ntapi-0.3.6 -num-0.2.1 -num-0.4.0 -num-bigint-0.2.6 -num-bigint-0.3.3 -num-bigint-0.4.2 -num-complex-0.2.4 -num-complex-0.4.0 -num-format-0.4.0 -num-integer-0.1.44 -num-iter-0.1.42 -num-rational-0.2.4 -num-rational-0.3.2 -num-rational-0.4.0 -num-traits-0.2.14 -num_cpus-1.13.0 -nu-0.39.0 -nu-ansi-term-0.39.0 -nu-cli-0.39.0 -nu-command-0.39.0 -nu-completion-0.39.0 -nu-data-0.39.0 -nu-engine-0.39.0 -nu-errors-0.39.0 -nu-json-0.39.0 -nu-parser-0.39.0 -nu-path-0.39.0 -nu-plugin-0.39.0 -nu-pretty-hex-0.39.0 -nu-protocol-0.39.0 -nu-serde-0.39.0 -nu-source-0.39.0 -nu-stream-0.39.0 -nu-table-0.39.0 -nu-test-support-0.39.0 -nu-value-ext-0.39.0 -nu_plugin_binaryview-0.39.0 -nu_plugin_chart-0.39.0 -nu_plugin_from_bson-0.39.0 -nu_plugin_from_mp4-0.1.0 -nu_plugin_from_sqlite-0.39.0 -nu_plugin_inc-0.39.0 -nu_plugin_match-0.39.0 -nu_plugin_query_json-0.39.0 -nu_plugin_s3-0.39.0 -nu_plugin_selector-0.39.0 -nu_plugin_start-0.39.0 -nu_plugin_textview-0.39.0 -nu_plugin_to_bson-0.39.0 -nu_plugin_to_sqlite-0.39.0 -nu_plugin_tree-0.39.0 -nu_plugin_xpath-0.39.0 -objc-0.2.7 -objc-foundation-0.1.1 -objc_id-0.1.1 -object-0.26.2 -once_cell-1.8.0 -onig-6.2.0 -onig_sys-69.7.0 -opaque-debug-0.3.0 -openssl-0.10.36 -openssl-probe-0.1.4 -openssl-sys-0.9.66 -open-1.7.1 -ordered-float-1.1.1 -overload-0.1.1 -parking_lot-0.11.2 -parking_lot_core-0.8.4 -parquet2-0.4.0 -parquet-format-async-temp-0.2.0 -parse-zoneinfo-0.3.0 -pathdiff-0.2.0 -path_abs-0.5.1 -percent-encoding-2.1.0 -peresil-0.3.0 -pest-2.1.3 -phf-0.8.0 -phf_codegen-0.8.0 -phf_generator-0.8.0 -phf_macros-0.8.0 -phf_shared-0.8.0 -pin-project-lite-0.2.7 -pin-utils-0.1.0 -pkg-config-0.3.19 -plist-1.2.1 -png-0.15.3 -png-0.16.8 -polars-0.16.0 -polars-arrow-0.16.0 -polars-core-0.16.0 -polars-io-0.16.0 -polars-lazy-0.16.0 -ppv-lite86-0.2.10 -precomputed-hash-0.1.1 -prettytable-rs-0.8.0 -pretty-0.5.2 -pretty_env_logger-0.4.0 -proc-macro2-1.0.28 -proc-macro-error-1.0.4 -proc-macro-error-attr-1.0.4 -proc-macro-hack-0.5.19 -proc-macro-nested-0.1.7 -ptree-0.3.2 -quickcheck-1.0.3 -quickcheck_macros-1.0.0 -quick-error-1.2.3 -quick-xml-0.19.0 -quick-xml-0.22.0 -quote-1.0.9 -radix_trie-0.2.1 -rand-0.3.23 -rand-0.4.6 -rand-0.7.3 -rand-0.8.4 -rand_chacha-0.2.2 -rand_chacha-0.3.1 -rand_core-0.3.1 -rand_core-0.4.2 -rand_core-0.5.1 -rand_core-0.6.3 -rand_distr-0.3.0 -rand_hc-0.2.0 -rand_hc-0.3.1 -rand_pcg-0.2.1 -rawkey-0.1.3 -rayon-1.5.1 -rayon-core-1.9.1 -rdrand-0.4.0 -readkey-0.1.7 -redox_syscall-0.1.57 -redox_syscall-0.2.10 -redox_users-0.3.5 -redox_users-0.4.0 -regex-1.5.4 -regex-automata-0.1.10 -regex-syntax-0.6.25 -remove_dir_all-0.5.3 -reqwest-0.11.4 -result-1.0.0 -roxmltree-0.14.1 -rstest-0.10.0 -rusqlite-0.25.3 -rustc-demangle-0.1.21 -rustc-serialize-0.3.24 -rustc_version-0.3.3 -rustversion-1.0.5 -rustyline-9.0.0 -rust-argon2-0.8.3 -rust-crypto-0.2.36 -rust-embed-5.9.0 -rust-embed-impl-5.9.0 -rust-embed-utils-5.1.0 -rust_decimal-0.10.2 -ryu-1.0.5 -s3handler-0.7.4 -safemem-0.3.3 -same-file-1.0.6 -schannel-0.1.19 -scopeguard-1.1.0 -scraper-0.12.0 -security-framework-2.3.1 -security-framework-sys-2.4.0 -selectors-0.22.0 -semver-0.11.0 -semver-parser-0.10.2 -serde-1.0.129 -serde_bytes-0.11.5 -serde_derive-1.0.129 -serde_ini-0.2.0 -serde_json-1.0.66 -serde_test-1.0.129 -serde_urlencoded-0.7.0 -serde_yaml-0.8.20 -serial_test-0.5.1 -serial_test_derive-0.5.1 -servo_arc-0.1.1 -sha1-0.2.0 -sha2-0.9.6 -shadow-rs-0.6.13 -shell-escape-0.1.5 -shell-words-1.0.0 -signal-hook-0.1.17 -signal-hook-registry-1.4.0 -similar-1.3.0 -siphasher-0.3.6 -slab-0.4.4 -smallvec-1.6.1 -smart-default-0.6.0 -snap-1.0.5 -socket2-0.4.1 -stable_deref_trait-1.2.0 -static_assertions-1.1.0 -std_prelude-0.2.12 -streaming-iterator-0.1.5 -strength_reduce-0.2.3 -string_cache-0.8.1 -string_cache_codegen-0.5.1 -strip-ansi-escapes-0.1.1 -strsim-0.8.0 -str-buf-1.0.5 -subtle-2.4.1 -sxd-document-0.3.2 -sxd-xpath-0.4.2 -synstructure-0.12.5 -syntect-4.6.0 -syn-1.0.75 -sysinfo-0.20.2 -sys-info-0.9.0 -sys-locale-0.1.0 -tempfile-3.2.0 -tendril-0.4.2 -termcolor-1.1.2 -terminal_size-0.1.17 -term-0.5.2 -term-0.7.0 -term_size-0.3.2 -textwrap-0.11.0 -thin-slice-0.1.1 -thiserror-1.0.26 -thiserror-impl-1.0.26 -tiff-0.6.1 -time-0.1.44 -tinyvec-1.3.1 -tinyvec_macros-0.1.0 -titlecase-1.1.0 -tokio-1.10.1 -tokio-io-0.1.13 -tokio-macros-1.3.0 -tokio-native-tls-0.3.0 -tokio-util-0.6.7 -toml-0.5.8 -tower-service-0.3.1 -tracing-0.1.26 -tracing-core-0.1.19 -trash-1.3.0 -try-lock-0.2.3 -tui-0.15.0 -typed-arena-1.7.0 -typenum-1.13.0 -ucd-trie-0.1.3 -umask-1.0.0 -unicase-2.6.0 -unicode-bidi-0.3.6 -unicode-normalization-0.1.19 -unicode-segmentation-1.8.0 -unicode-width-0.1.8 -unicode-xid-0.2.2 -unsafe_unwrap-0.1.0 -url-2.2.2 -user32-sys-0.2.0 -users-0.11.0 -utf8parse-0.2.0 -utf8-width-0.1.5 -utf-8-0.7.6 -uuid-0.8.2 -vcpkg-0.2.15 -vec_map-0.8.2 -version_check-0.9.3 -void-1.0.2 -vte-0.10.1 -vte_generate_state_changes-0.1.1 -walkdir-2.3.2 -want-0.3.0 -wasi-0.9.0+wasi-snapshot-preview1 -wasi-0.10.0+wasi-snapshot-preview1 -wasm-bindgen-0.2.76 -wasm-bindgen-backend-0.2.76 -wasm-bindgen-futures-0.4.26 -wasm-bindgen-macro-0.2.76 -wasm-bindgen-macro-support-0.2.76 -wasm-bindgen-shared-0.2.76 -webbrowser-0.5.5 -web-sys-0.3.53 -weezl-0.1.5 -which-4.2.2 -widestring-0.4.3 -wild-2.0.4 -winapi-0.2.8 -winapi-0.3.9 -winapi-build-0.1.1 -winapi-i686-pc-windows-gnu-0.4.0 -winapi-util-0.1.5 -winapi-wsapoll-0.1.1 -winapi-x86_64-pc-windows-gnu-0.4.0 -winreg-0.7.0 -x11rb-0.8.1 -x11-2.18.2 -xmlparser-0.13.3 -xml-rs-0.8.4 -yaml-rust-0.4.5 -zip-0.5.13 -zstd-0.9.0+zstd.1.5.0 -zstd-safe-4.1.1+zstd.1.5.0 -zstd-sys-1.6.1+zstd.1.5.0 -" - -inherit cargo - -DESCRIPTION="A new type of shell, written in Rust" -HOMEPAGE="https://www.nushell.sh" -SRC_URI="https://github.com/nushell/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz - $(cargo_crate_uris ${CRATES})" - -LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD Boost-1.0 CC0-1.0 ISC LGPL-3+ MIT MPL-2.0 Unlicense ZLIB" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64" -IUSE="+extra" - -DEPEND=" - >=dev-libs/libgit2-0.99:= - dev-libs/oniguruma:= - dev-libs/openssl:0= - net-libs/libssh2:= - net-libs/nghttp2:= - net-misc/curl - extra? ( - dev-db/sqlite:3= - x11-libs/libX11 - x11-libs/libxcb - ) -" - -RDEPEND="${DEPEND}" - -BDEPEND=" - >=virtual/rust-1.51 - virtual/pkgconfig -" - -QA_FLAGS_IGNORED="usr/bin/nu.*" - -src_configure() { - # high magic to allow system-libs - export OPENSSL_NO_VENDOR=true - export RUSTONIG_SYSTEM_LIBONIG=1 - export LIBGIT2_SYS_USE_PKG_CONFIG=1 - export LIBSSH2_SYS_USE_PKG_CONFIG=1 - export PKG_CONFIG_ALLOW_CROSS=1 - - local myfeatures=( - stable - $(usev extra) - ) - - cargo_src_configure -} - -src_compile() { - cargo_src_compile --workspace -} - -src_install() { - cargo_src_install - local DOCS=( README.md docs/. ) - einstalldocs -} diff --git a/app-shells/nushell/nushell-0.40.0.ebuild b/app-shells/nushell/nushell-0.42.0.ebuild similarity index 70% rename from app-shells/nushell/nushell-0.40.0.ebuild rename to app-shells/nushell/nushell-0.42.0.ebuild index daffdc069c7b..4eeee38dc430 100644 --- a/app-shells/nushell/nushell-0.40.0.ebuild +++ b/app-shells/nushell/nushell-0.42.0.ebuild @@ -4,20 +4,16 @@ EAPI=7 CRATES=" -Inflector-0.11.4 -addr2line-0.16.0 +addr2line-0.17.0 adler32-1.2.0 adler-1.0.2 -ahash-0.7.4 +ahash-0.7.6 aho-corasick-0.7.18 alloc-no-stdlib-2.0.3 alloc-stdlib-0.2.1 ansi_colours-1.0.4 -ansi_term-0.11.0 ansi_term-0.12.1 -anyhow-1.0.43 -arboard-1.2.1 -arrayref-0.3.6 +anyhow-1.0.51 arrayvec-0.4.12 arrayvec-0.5.2 arrow2-0.7.0 @@ -27,56 +23,51 @@ async-stream-impl-0.3.2 async-trait-0.1.51 atty-0.2.14 autocfg-1.0.1 -backtrace-0.3.61 +backtrace-0.3.63 base64-0.13.0 bat-0.18.3 -bigdecimal-rs-0.2.1 +bigdecimal-0.3.0 bincode-1.3.3 bitflags-1.2.1 bitpacking-0.8.4 -bit-set-0.5.2 -bit-vec-0.6.3 -blake2b_simd-0.5.11 -block-0.1.6 block-buffer-0.9.0 brotli-3.3.2 brotli-decompressor-2.3.2 bson-2.0.1 -bstr-0.2.16 +bstr-0.2.17 bugreport-0.4.1 -bumpalo-3.7.0 +bumpalo-3.8.0 bytemuck-1.7.2 byteorder-1.4.3 bytes-0.4.12 bytes-0.5.6 bytes-1.1.0 -byte-unit-4.0.12 +byte-unit-4.0.13 bzip2-0.4.3 bzip2-sys-0.1.11+1.0.8 calamine-0.18.0 cassowary-0.3.0 -cc-1.0.69 +cc-1.0.72 cfg-if-0.1.10 cfg-if-1.0.0 chrono-0.4.19 chrono-humanize-0.2.1 chrono-tz-0.5.3 -clap-2.33.3 -clipboard-win-4.2.1 +clipboard-win-4.2.2 clircle-0.3.0 codepage-0.1.1 codespan-reporting-0.11.1 color_quant-1.1.0 +comfy-table-1.6.0 common-path-1.0.0 console-0.14.1 -constant_time_eq-0.1.5 +const-sha1-0.2.0 content_inspector-0.2.4 convert_case-0.4.0 -core-foundation-0.9.1 -core-foundation-sys-0.8.2 -core-graphics-0.21.0 +core-foundation-0.9.2 +core-foundation-sys-0.8.3 cpufeatures-0.2.1 -crc32fast-1.2.1 +crc32fast-1.3.0 crossbeam-channel-0.5.1 crossbeam-deque-0.8.1 crossbeam-epoch-0.9.5 @@ -91,13 +82,12 @@ cstr_core-0.2.4 csv-1.1.6 csv-core-0.1.10 ctrlc-3.2.0 -cty-0.2.1 +cty-0.2.2 deflate-0.8.6 derive-new-0.5.9 -derive_more-0.99.16 +derive_more-0.99.17 digest-0.9.0 directories-next-2.0.0 -dirs-1.0.5 dirs-3.0.2 dirs-next-2.0.0 dirs-sys-0.3.6 @@ -119,7 +109,7 @@ encoding-index-simpchinese-1.20141219.5 encoding-index-singlebyte-1.20141219.5 encoding-index-tradchinese-1.20141219.5 encoding_index_tests-0.1.4 -encoding_rs-0.8.28 +encoding_rs-0.8.29 endian-type-0.1.2 env_logger-0.7.1 env_logger-0.8.4 @@ -129,51 +119,49 @@ failure-0.1.8 failure_derive-0.1.8 fallible-iterator-0.2.0 fallible-streaming-iterator-0.1.9 -fancy-regex-0.7.1 -fd-lock-3.0.0 +fd-lock-3.0.1 filesize-0.2.0 flatbuffers-2.0.0 -flate2-1.0.20 +flate2-1.0.22 fnv-1.0.7 foreign-types-0.3.2 foreign-types-shared-0.1.1 form_urlencoded-1.0.1 fs_extra-1.2.0 -fuchsia-cprng-0.1.1 futf-0.1.4 futures-0.1.31 -futures-0.3.16 -futures-channel-0.3.16 -futures-core-0.3.16 -futures-executor-0.3.16 -futures-io-0.3.16 -futures-macro-0.3.16 -futures-sink-0.3.16 -futures-task-0.3.16 -futures-util-0.3.16 +futures-0.3.18 +futures-channel-0.3.18 +futures-core-0.3.18 +futures-executor-0.3.18 +futures-io-0.3.18 +futures-macro-0.3.18 +futures-sink-0.3.18 +futures-task-0.3.18 +futures-util-0.3.18 fxhash-0.2.1 -gcc-0.3.55 generic-array-0.14.4 -gethostname-0.2.1 getopts-0.2.21 getrandom-0.1.16 getrandom-0.2.3 -getset-0.1.1 -gimli-0.25.0 -git2-0.13.21 +getset-0.1.2 +gimli-0.26.1 +git2-0.13.25 git-version-0.3.5 git-version-macro-0.3.5 -gjson-0.7.5 +gjson-0.8.0 globset-0.4.8 glob-0.3.0 grep-cli-0.1.6 -h2-0.3.4 +h2-0.3.7 hamcrest2-0.3.0 hash32-0.2.1 hashbrown-0.11.2 hashlink-0.7.0 hash_hasher-2.0.3 heapless-0.7.8 +heck-0.3.3 +heck-0.4.0 hermit-abi-0.1.19 hex-0.4.3 hmac-0.11.0 @@ -181,40 +169,41 @@ hmac-sha1-0.1.3 html5ever-0.25.1 htmlescape-0.3.1 httparse-1.5.1 -httpdate-1.0.1 -http-0.2.4 -http-body-0.4.3 +httpdate-1.0.2 +http-0.2.5 +http-body-0.4.4 humantime-1.3.0 -hyper-0.14.12 +hyper-0.14.15 hyper-tls-0.5.0 ical-0.7.0 idna-0.2.3 image-0.23.14 indexmap-1.7.0 -instant-0.1.10 -insta-1.7.2 +instant-0.1.12 +insta-1.8.0 integer-encoding-3.0.2 iovec-0.1.4 ipnet-2.3.1 +is_debug-1.0.1 is_executable-1.0.1 itertools-0.10.1 itoa-0.4.8 jobserver-0.1.24 jpeg-decoder-0.1.22 -js-sys-0.3.53 +js-sys-0.3.55 lazycell-1.3.0 lazy_static-1.4.0 -lexical-6.0.0 -lexical-core-0.8.0 -lexical-parse-float-0.8.0 +lexical-6.0.1 +lexical-core-0.8.2 +lexical-parse-float-0.8.2 lexical-parse-integer-0.8.0 lexical-util-0.8.1 -lexical-write-float-0.8.0 +lexical-write-float-0.8.2 lexical-write-integer-0.8.0 -libc-0.2.101 -libgit2-sys-0.12.22+1.1.0 +libc-0.2.108 +libgit2-sys-0.12.26+1.3.0 libm-0.2.1 -libsqlite3-sys-0.22.2 +libsqlite3-sys-0.23.1 libz-sys-1.1.3 line-wrap-0.1.1 linked-hash-map-0.5.4 @@ -237,7 +226,7 @@ mime_guess-2.0.3 miniz_oxide-0.3.7 miniz_oxide-0.4.4 miow-0.3.7 -mio-0.7.13 +mio-0.7.14 mp4-0.9.0 multiversion-0.6.1 multiversion-macros-0.6.1 @@ -245,8 +234,7 @@ native-tls-0.2.8 neso-0.5.0 new_debug_unreachable-1.0.4 nibble_vec-0.1.0 -nix-0.20.1 -nix-0.22.1 +nix-0.22.2 nodrop-0.1.14 nom-1.2.4 ntapi-0.3.6 @@ -254,7 +242,7 @@ num-0.2.1 num-0.4.0 num-bigint-0.2.6 num-bigint-0.3.3 -num-bigint-0.4.2 +num-bigint-0.4.3 num-complex-0.2.4 num-complex-0.4.0 num-format-0.4.0 @@ -265,62 +253,60 @@ num-rational-0.3.2 num-rational-0.4.0 num-traits-0.2.14 num_cpus-1.13.0 -nu-0.40.0 -nu-ansi-term-0.40.0 -nu-cli-0.40.0 -nu-command-0.40.0 -nu-completion-0.40.0 -nu-data-0.40.0 -nu-engine-0.40.0 -nu-errors-0.40.0 -nu-json-0.40.0 -nu-parser-0.40.0 -nu-path-0.40.0 -nu-plugin-0.40.0 -nu-pretty-hex-0.40.0 -nu-protocol-0.40.0 -nu-serde-0.40.0 -nu-source-0.40.0 -nu-stream-0.40.0 -nu-table-0.40.0 -nu-test-support-0.40.0 -nu-value-ext-0.40.0 -nu_plugin_binaryview-0.40.0 -nu_plugin_chart-0.40.0 -nu_plugin_from_bson-0.40.0 -nu_plugin_from_mp4-0.1.0 -nu_plugin_from_sqlite-0.40.0 -nu_plugin_inc-0.40.0 -nu_plugin_match-0.40.0 -nu_plugin_query_json-0.40.0 -nu_plugin_s3-0.40.0 -nu_plugin_selector-0.40.0 -nu_plugin_start-0.40.0 -nu_plugin_textview-0.40.0 -nu_plugin_to_bson-0.40.0 -nu_plugin_to_sqlite-0.40.0 -nu_plugin_tree-0.40.0 -nu_plugin_xpath-0.40.0 +nu-0.42.0 +nu-ansi-term-0.42.0 +nu-cli-0.42.0 +nu-command-0.42.0 +nu-completion-0.42.0 +nu-data-0.42.0 +nu-engine-0.42.0 +nu-errors-0.42.0 +nu-json-0.42.0 +nu-parser-0.42.0 +nu-path-0.42.0 +nu-plugin-0.42.0 +nu-pretty-hex-0.42.0 +nu-protocol-0.42.0 +nu-serde-0.42.0 +nu-source-0.42.0 +nu-stream-0.42.0 +nu-table-0.42.0 +nu-test-support-0.42.0 +nu-value-ext-0.42.0 +nu_plugin_binaryview-0.42.0 +nu_plugin_chart-0.42.0 +nu_plugin_from_bson-0.42.0 +nu_plugin_from_mp4-0.42.0 +nu_plugin_from_sqlite-0.42.0 +nu_plugin_inc-0.42.0 +nu_plugin_match-0.42.0 +nu_plugin_query_json-0.42.0 +nu_plugin_s3-0.42.0 +nu_plugin_selector-0.42.0 +nu_plugin_start-0.42.0 +nu_plugin_textview-0.42.0 +nu_plugin_to_bson-0.42.0 +nu_plugin_to_sqlite-0.42.0 +nu_plugin_tree-0.42.0 +nu_plugin_xpath-0.42.0 objc-0.2.7 -objc-foundation-0.1.1 -objc_id-0.1.1 -object-0.26.2 +object-0.27.1 once_cell-1.8.0 -onig-6.2.0 -onig_sys-69.7.0 +onig-6.3.1 +onig_sys-69.7.1 opaque-debug-0.3.0 -openssl-0.10.36 +openssl-0.10.38 openssl-probe-0.1.4 -openssl-sys-0.9.66 +openssl-sys-0.9.71 open-1.7.1 ordered-float-1.1.1 overload-0.1.1 parking_lot-0.11.2 -parking_lot_core-0.8.4 +parking_lot_core-0.8.5 parquet2-0.6.0 parquet-format-async-temp-0.2.0 parse-zoneinfo-0.3.0 -pathdiff-0.2.0 +pathdiff-0.2.1 path_abs-0.5.1 percent-encoding-2.1.0 peresil-0.3.0 @@ -332,40 +318,34 @@ phf_macros-0.8.0 phf_shared-0.8.0 pin-project-lite-0.2.7 pin-utils-0.1.0 -pkg-config-0.3.19 -plist-1.2.1 +pkg-config-0.3.22 +plist-1.3.1 png-0.16.8 polars-0.17.0 polars-arrow-0.17.0 polars-core-0.17.0 polars-io-0.17.0 polars-lazy-0.17.0 -ppv-lite86-0.2.10 +ppv-lite86-0.2.15 precomputed-hash-0.1.1 -prettytable-rs-0.8.0 pretty-0.5.2 pretty_env_logger-0.4.0 -proc-macro2-1.0.28 +proc-macro2-1.0.32 proc-macro-error-1.0.4 proc-macro-error-attr-1.0.4 proc-macro-hack-0.5.19 -proc-macro-nested-0.1.7 -ptree-0.3.2 +ptree-0.4.0 quickcheck-1.0.3 quickcheck_macros-1.0.0 quick-error-1.2.3 quick-xml-0.19.0 quick-xml-0.22.0 -quote-1.0.9 +quote-1.0.10 radix_trie-0.2.1 -rand-0.3.23 -rand-0.4.6 rand-0.7.3 rand-0.8.4 rand_chacha-0.2.2 rand_chacha-0.3.1 -rand_core-0.3.1 -rand_core-0.4.2 rand_core-0.5.1 rand_core-0.6.3 rand_distr-0.3.0 @@ -375,70 +355,67 @@ rand_pcg-0.2.1 rawkey-0.1.3 rayon-1.5.1 rayon-core-1.9.1 -rdrand-0.4.0 readkey-0.1.7 -redox_syscall-0.1.57 redox_syscall-0.2.10 -redox_users-0.3.5 redox_users-0.4.0 regex-1.5.4 regex-automata-0.1.10 regex-syntax-0.6.25 remove_dir_all-0.5.3 -reqwest-0.11.4 +reqwest-0.11.7 result-1.0.0 roxmltree-0.14.1 rstest-0.10.0 -rusqlite-0.25.3 +rusqlite-0.26.1 rustc-demangle-0.1.21 rustc-serialize-0.3.24 rustc_version-0.3.3 +rustc_version-0.4.0 rustversion-1.0.5 rustyline-9.0.0 -rust-argon2-0.8.3 -rust-crypto-0.2.36 rust-embed-5.9.0 rust-embed-impl-5.9.0 rust-embed-utils-5.1.0 rust_decimal-0.10.2 -ryu-1.0.5 -s3handler-0.7.4 +ryu-1.0.6 +s3handler-0.7.5 safemem-0.3.3 same-file-1.0.6 schannel-0.1.19 scopeguard-1.1.0 scraper-0.12.0 security-framework-2.3.1 -security-framework-sys-2.4.0 +security-framework-sys-2.4.2 selectors-0.22.0 semver-0.11.0 +semver-1.0.4 semver-parser-0.10.2 -serde-1.0.129 +serde-1.0.130 serde_bytes-0.11.5 -serde_derive-1.0.129 +serde_derive-1.0.130 serde_ini-0.2.0 -serde_json-1.0.66 -serde_test-1.0.129 +serde_json-1.0.72 +serde_test-1.0.130 serde_urlencoded-0.7.0 -serde_yaml-0.8.20 +serde_yaml-0.8.21 serial_test-0.5.1 serial_test_derive-0.5.1 servo_arc-0.1.1 sha1-0.2.0 -sha2-0.9.6 -shadow-rs-0.6.13 +sha2-0.9.8 +shadow-rs-0.8.1 shell-escape-0.1.5 shell-words-1.0.0 signal-hook-0.1.17 signal-hook-registry-1.4.0 simdutf8-0.1.3 similar-1.3.0 -siphasher-0.3.6 -slab-0.4.4 -smallvec-1.6.1 +siphasher-0.3.7 +slab-0.4.5 +smallvec-1.7.0 smart-default-0.6.0 snap-1.0.5 -socket2-0.4.1 +socket2-0.4.2 spin-0.9.2 stable_deref_trait-1.2.0 static_assertions-1.1.0 @@ -446,57 +423,56 @@ std_prelude-0.2.12 streaming-decompression-0.1.0 streaming-iterator-0.1.5 strength_reduce-0.2.3 -string_cache-0.8.1 +string_cache-0.8.2 string_cache_codegen-0.5.1 strip-ansi-escapes-0.1.1 -strsim-0.8.0 +strum-0.20.0 +strum_macros-0.20.1 str-buf-1.0.5 subtle-2.4.1 sxd-document-0.3.2 sxd-xpath-0.4.2 -synstructure-0.12.5 +synstructure-0.12.6 syntect-4.6.0 -syn-1.0.75 -sysinfo-0.20.2 -sys-info-0.9.0 +syn-1.0.82 +sysinfo-0.21.2 +sys-info-0.9.1 sys-locale-0.1.0 tempfile-3.2.0 tendril-0.4.2 termcolor-1.1.2 terminal_size-0.1.17 -term-0.5.2 term-0.7.0 term_size-0.3.2 -textwrap-0.11.0 thin-slice-0.1.1 -thiserror-1.0.26 -thiserror-impl-1.0.26 -tiff-0.6.1 +thiserror-1.0.30 +thiserror-impl-1.0.30 time-0.1.44 -tinyvec-1.3.1 +time-0.3.5 +tinyvec-1.5.1 tinyvec_macros-0.1.0 titlecase-1.1.0 -tokio-1.10.1 +tokio-1.14.0 tokio-io-0.1.13 -tokio-macros-1.3.0 +tokio-macros-1.6.0 tokio-native-tls-0.3.0 -tokio-util-0.6.7 +tokio-util-0.6.9 toml-0.5.8 tower-service-0.3.1 -tracing-0.1.26 -tracing-core-0.1.19 -trash-1.3.0 +tracing-0.1.29 +tracing-core-0.1.21 +trash-2.0.2 try-lock-0.2.3 tui-0.15.0 typed-arena-1.7.0 -typenum-1.13.0 +typenum-1.14.0 ucd-trie-0.1.3 umask-1.0.0 unicase-2.6.0 -unicode-bidi-0.3.6 +unicode-bidi-0.3.7 unicode-normalization-0.1.19 unicode-segmentation-1.8.0 -unicode-width-0.1.8 +unicode-width-0.1.9 unicode-xid-0.2.2 unsafe_unwrap-0.1.0 url-2.2.2 @@ -507,7 +483,6 @@ utf8-width-0.1.5 utf-8-0.7.6 uuid-0.8.2 vcpkg-0.2.15 -vec_map-0.8.2 version_check-0.9.3 void-1.0.2 vte-0.10.1 @@ -516,28 +491,33 @@ walkdir-2.3.2 want-0.3.0 wasi-0.9.0+wasi-snapshot-preview1 wasi-0.10.0+wasi-snapshot-preview1 -wasm-bindgen-0.2.76 -wasm-bindgen-backend-0.2.76 -wasm-bindgen-futures-0.4.26 -wasm-bindgen-macro-0.2.76 -wasm-bindgen-macro-support-0.2.76 -wasm-bindgen-shared-0.2.76 +wasm-bindgen-0.2.78 +wasm-bindgen-backend-0.2.78 +wasm-bindgen-futures-0.4.28 +wasm-bindgen-macro-0.2.78 +wasm-bindgen-macro-support-0.2.78 +wasm-bindgen-shared-0.2.78 webbrowser-0.5.5 -web-sys-0.3.53 -weezl-0.1.5 +web-sys-0.3.55 which-4.2.2 widestring-0.4.3 -wild-2.0.4 winapi-0.2.8 winapi-0.3.9 winapi-build-0.1.1 winapi-i686-pc-windows-gnu-0.4.0 winapi-util-0.1.5 -winapi-wsapoll-0.1.1 winapi-x86_64-pc-windows-gnu-0.4.0 +windows-0.9.1 +windows-sys-0.28.0 +windows_aarch64_msvc-0.28.0 +windows_gen-0.9.1 +windows_i686_gnu-0.28.0 +windows_i686_msvc-0.28.0 +windows_macros-0.9.1 +windows_x86_64_gnu-0.28.0 +windows_x86_64_msvc-0.28.0 winreg-0.7.0 -x11rb-0.8.1 -x11-2.18.2 +x11-2.19.1 xmlparser-0.13.3 xml-rs-0.8.4 yaml-rust-0.4.5 @@ -556,7 +536,7 @@ SRC_URI="https://github.com/nushell/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD Boost-1.0 CC0-1.0 ISC LGPL-3+ MIT MPL-2.0 Unlicense ZLIB" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv" IUSE="+extra" DEPEND=" diff --git a/app-text/Manifest.gz b/app-text/Manifest.gz index f590c59a4095..9a772486f6c7 100644 Binary files a/app-text/Manifest.gz and b/app-text/Manifest.gz differ diff --git a/app-text/asciidoc/Manifest b/app-text/asciidoc/Manifest index 064d9296ad3a..53b283e93809 100644 --- a/app-text/asciidoc/Manifest +++ b/app-text/asciidoc/Manifest @@ -1,4 +1,4 @@ -DIST asciidoc-9.0.2.new.tar.gz 1269444 BLAKE2B 0041073c572267628b8bbfd56258d86c35edb0e7f3a222743ce1476b405483b01144faf768ab1492fd3f378960f6cc8e17d92ef61671d84c318fbe7c1ca8cd7c SHA512 c20629001704f1c3acfef0407b82f35f6077f5b32ef754fcbeee03a5a86d4e01e374e89b79cbdb236fc2c7fc76bf47ba81efd691f2f9e1c87dc85a7111f5e030 -DIST asciidoc-9.0.4.new.tar.gz 1233878 BLAKE2B 506a2c82d95ce0d522f45b20eee31f7ce2b114e0ad43c78bb313f34b210a7bdd282a8a3779a3ea29025e865847eb8298bd5a6ddac7ee338e4b878ae79bdf149e SHA512 59be96514d0c4c82e5842ddea412ddd6e06647ebe09e0f1828b7c07e787d890896bab4271e7566ed038eb2da6755a67c725bee07bcfbd7aa31475f39c3abc089 +DIST asciidoc-10.1.1.tar.gz 214619 BLAKE2B b7dc12d57cc3ad72301335ea84aea45db1a1e98f13aebf17fac6cf86657c509daa48ce1755817076c1c82f0a61c68fa7b178bc78bc6fda7274708bfde619491a SHA512 7b2b1ed9ea32b7336c271faf1e40e3a24d3b3af803c87f9d5d32c2b40cadaed682fbbedc6ec67bbe5a51377812d18180128c27779d7190898446266adee92842 DIST asciidoc-9.0.5.new.tar.gz 1225334 BLAKE2B c3e428098dc4d71704ed13b54fd5f640b9de81d12939facb5faaf38a3123794e57201ecd9c312a22c220a2ec6b06c88a76ab47f05ffa972fc8751089b3471cfc SHA512 9125631fdee464f96f7e3c76a60fe37331905e9e55a81db27aece4065b246dc05a35db4c157dc7dbb2345eb95c153b474251d6a447d65774bf1b3f57e1883895 DIST asciidoc-9.1.0.new.tar.gz 1249958 BLAKE2B 0a98f58f7604f84d704092313c38563634bad5d697d60d02760f3be1d2a78a97ee2488dda3a9918b02e0062710175c6513d600f3fbd850fe700bf3fa917a3980 SHA512 c30854a936228fe5bcf2f9305741fbc4b17ef088b2fa637d5f3b19c7803306085634fb71146f0b089c2fad01f986da71a4fae364139f520c0906525317c0c4a6 +DIST asciidoc-9.1.1.new.tar.gz 1259206 BLAKE2B da274d3a9389ee2e42ad1be70467f11d0164df3e6f9102e6ef1be6a802dbeb12898786fa1fe37a95755d0db8c9df5d5dd3faf000dfb73b701a83af3cc0261606 SHA512 74b83e8c8904fd761783c2f572d353656fc0794c6cb427f61e9179c9f80b6fc3b3ee8d028baba4e25eafe5f8cf5318f9984a5828849a793a7520f83e6fe50d66 diff --git a/app-text/asciidoc/asciidoc-10.1.1-r1.ebuild b/app-text/asciidoc/asciidoc-10.1.1-r1.ebuild new file mode 100644 index 000000000000..4cd5659b677b --- /dev/null +++ b/app-text/asciidoc/asciidoc-10.1.1-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} pypy3 ) +DISTUTILS_SINGLE_IMPL=1 + +inherit distutils-r1 optfeature readme.gentoo-r1 + +DESCRIPTION="A plain text human readable/writable document format" +HOMEPAGE="https://asciidoc.org/ https://github.com/asciidoc-py/asciidoc-py/" +# Could use the github tarball but we need autotools then +#SRC_URI="https://github.com/asciidoc-py/asciidoc-py/releases/download/${PV}/${P}.tar.gz" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +RDEPEND="app-text/docbook-xml-dtd:4.5 + >=app-text/docbook-xsl-stylesheets-1.75 + dev-libs/libxslt + dev-libs/libxml2:2" + +DOC_CONTENTS=" +If you are going to use a2x, please also look at a2x(1) under +REQUISITES for a list of runtime dependencies. +" + +src_install() { + distutils-r1_src_install + + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog + + optfeature "music filter support" "media-sound/lilypond virtual/imagemagick-tools" + optfeature "source filter support" "dev-util/source-highlight dev-python/pygments app-text/highlight" + optfeature "latex filter support" "dev-texlive/texlive-latex app-text/dvipng" "dev-texlive/texlive-latex app-text/dvisvgm" + optfeature "graphviz filter support" "media-gfx/graphviz" +} diff --git a/app-text/asciidoc/asciidoc-9.0.4-r1.ebuild b/app-text/asciidoc/asciidoc-9.0.4-r1.ebuild deleted file mode 100644 index 7772c2bc97ef..000000000000 --- a/app-text/asciidoc/asciidoc-9.0.4-r1.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} pypy3 ) - -inherit autotools optfeature python-single-r1 readme.gentoo-r1 - -DESCRIPTION="A plain text human readable/writable document format" -HOMEPAGE="https://asciidoc.org/ https://github.com/asciidoc-py/asciidoc-py/" -SRC_URI="https://github.com/asciidoc-py/asciidoc-py/releases/download/${PV}/${P}.tar.gz -> ${P}.new.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="doc test" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RESTRICT="!test? ( test )" - -RDEPEND="${PYTHON_DEPS} - app-text/docbook-xml-dtd:4.5 - >=app-text/docbook-xsl-stylesheets-1.75 - dev-libs/libxslt - dev-libs/libxml2:2 - " -DEPEND=" - test? ( - ${PYTHON_DEPS} - app-text/dvipng - app-text/dvisvgm - dev-texlive/texlive-latex - dev-util/source-highlight - media-gfx/graphviz - media-gfx/imagemagick - media-sound/lilypond - )" - -DOC_CONTENTS=" -If you are going to use a2x, please also look at a2x(1) under -REQUISITES for a list of runtime dependencies. -" - -DOCS=( BUGS.txt CHANGELOG.txt README.asciidoc - docbook-xsl/asciidoc-docbook-xsl.txt dblatex/dblatex-readme.txt - filters/code/code-filter-readme.txt ) - -src_prepare() { - default - # Only needed for prefix - harmless (does nothing) otherwise - sed -i -e "s:^CONF_DIR=.*:CONF_DIR='${EPREFIX}/etc/asciidoc':" \ - asciidoc.py || die - - # enforce usage of the configured version of Python - sed -i -e "s:python3:${EPYTHON}:" Makefile.in || die - - eautoreconf -} - -src_configure() { - econf --sysconfdir="${EPREFIX}"/usr/share -} - -src_install() { - default - - if use doc; then - emake DESTDIR="${D}" docs - fi - - python_fix_shebang "${ED}"/usr/bin/*.py - - readme.gentoo_create_doc -} - -pkg_postinst() { - readme.gentoo_print_elog - - optfeature "\"music\" filter support" "media-sound/lilypond media-gfx/imagemagick" - optfeature "\"source\" filter support" dev-util/source-highlight dev-python/pygments app-text/highlight - optfeature "\"latex\" filter support" "dev-texlive/texlive-latex app-text/dvipng" "dev-texlive/texlive-latex app-text/dvisvgm" - optfeature "\"graphviz\" filter support" media-gfx/graphviz -} diff --git a/app-text/asciidoc/asciidoc-9.1.0.ebuild b/app-text/asciidoc/asciidoc-9.1.0.ebuild index f3c86d982e94..b90c8ca407fb 100644 --- a/app-text/asciidoc/asciidoc-9.1.0.ebuild +++ b/app-text/asciidoc/asciidoc-9.1.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/asciidoc-py/asciidoc-py/releases/download/${PV}/${P} LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="doc test" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/app-text/asciidoc/asciidoc-9.0.2-r1.ebuild b/app-text/asciidoc/asciidoc-9.1.1.ebuild similarity index 88% rename from app-text/asciidoc/asciidoc-9.0.2-r1.ebuild rename to app-text/asciidoc/asciidoc-9.1.1.ebuild index 7772c2bc97ef..f3c86d982e94 100644 --- a/app-text/asciidoc/asciidoc-9.0.2-r1.ebuild +++ b/app-text/asciidoc/asciidoc-9.1.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7,8,9} pypy3 ) +PYTHON_COMPAT=( python3_{8..10} pypy3 ) inherit autotools optfeature python-single-r1 readme.gentoo-r1 @@ -13,7 +13,7 @@ SRC_URI="https://github.com/asciidoc-py/asciidoc-py/releases/download/${PV}/${P} LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="doc test" REQUIRED_USE="${PYTHON_REQUIRED_USE}" @@ -33,7 +33,7 @@ DEPEND=" dev-texlive/texlive-latex dev-util/source-highlight media-gfx/graphviz - media-gfx/imagemagick + media-gfx/imagemagick[png] media-sound/lilypond )" diff --git a/app-text/asciidoc/metadata.xml b/app-text/asciidoc/metadata.xml index bf7692827cad..3c2c02f59a4b 100644 --- a/app-text/asciidoc/metadata.xml +++ b/app-text/asciidoc/metadata.xml @@ -1,14 +1,7 @@ - - marcec@gmx.de - Marc Joliet - - - proxy-maint@gentoo.org - Proxy Maintainers - + asciidoc asciidoc-py/asciidoc-py diff --git a/app-text/epspdf/Manifest b/app-text/epspdf/Manifest index 01e04f7bbd4c..bc3fef3d9903 100644 --- a/app-text/epspdf/Manifest +++ b/app-text/epspdf/Manifest @@ -1 +1,2 @@ +DIST epspdf-0.6.5.zip 331312 BLAKE2B 3bd2c9cd432172c38efe33d08068f20fddf169d5d7bc94c9f1720cf379de9ba54aedb1cb6fd438b721c2e98f24dfd1ca4b3dab5c1fe01a71791748f952832ac9 SHA512 28ef12546a957c62fd94b405b53359898d46c825bad8fd2167b5ab23bb2a6ea457ccbcc8263b31574e128ebe56e21b30fae27d406397df3fdc1506a088ab41f4 DIST epspdf.0.6.3.tgz 335975 BLAKE2B aacd6e222bfe74636dba796fd6e878fa9970f469d096eb77acf4a336a0ab5620629de7ba1c763afa62b181887724db55be57d1929a041a945c7d74ea3028d6de SHA512 ddb0d8c17b6b0bbb934312e6253a2b689d2545c892af989efac9782022c501109f2ff57bb2ea7c26d63d7747e2a510c18bd22a6076bb7137fe0252c38b2125ea diff --git a/app-text/epspdf/epspdf-0.6.5.ebuild b/app-text/epspdf/epspdf-0.6.5.ebuild new file mode 100644 index 000000000000..1c46675218c9 --- /dev/null +++ b/app-text/epspdf/epspdf-0.6.5.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop texlive-common + +DESCRIPTION="GUI and command-line converter for [e]ps and pdf" +HOMEPAGE="http://tex.aanhet.net/epspdf/" +# http://tex.aanhet.net/epspdf/${PN}.${PV}.tgz +SRC_URI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}.zip" +S="${WORKDIR}"/${PN} + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc tk" + +RDEPEND="!=dev-texlive/texlive-basic-2011 + app-text/ghostscript-gpl + tk? ( dev-lang/tk )" +BDEPEND="app-arch/unzip + sys-apps/texinfo" + +src_compile() { + cd doc || die + makeinfo epspdf || die +} + +src_install() { + exeinto /usr/share/${PN} + doexe epspdf.tlu + + insinto /usr/share/${PN} + + if use tk ; then + doins epspdf.help doc/images/epspdf.png + doexe epspdftk.tcl + fi + + dobin_texmf_scripts ${PN}/epspdf.tlu + use tk && dobin_texmf_scripts ${PN}/epspdftk.tcl + + doinfo doc/epspdf.info + dodoc doc/Changelog + if use doc ; then + dodoc doc/epspdf.pdf + dodoc -r doc + fi + + # Give it a .desktop + if use tk; then + make_desktop_entry epspdftk epspdftk "${EPREFIX}/usr/share/${PN}/epspdf.png" "Graphics;ImageProcessing" + fi +} diff --git a/app-text/lesspipe/Manifest b/app-text/lesspipe/Manifest index ea1f332fce7b..ba2ef82f29e0 100644 --- a/app-text/lesspipe/Manifest +++ b/app-text/lesspipe/Manifest @@ -2,3 +2,4 @@ DIST lesspipe-1.85.tar.gz 120568 BLAKE2B d2c00f4121dc1bbed6b82220dac038068bbff87 DIST lesspipe-1.89.tar.gz 121118 BLAKE2B e730b6e8afc767a0118abbcc6221d2c18467393119c26baf71b8758b5826ba52230526b9c5cd67704aadda07b63a62dfe006db10de1dbae0a73ede1885b03ed0 SHA512 b8d7c92d3dae77f2ccee8e314af4354fefc9f3aaec1566af02c9be2640f11ebf7ea1432334470c5d5dbce39d2ac7c3e9f4074bcf9ee4a502dc59b370a21b54f5 DIST lesspipe-1.90.tar.gz 121098 BLAKE2B 269f4193f423e4ac5770171156e2f63d14966d7dcc77bf015c3100f281206424ef334acc1edf2edb6fe31f73aed80b9c3ba6c715d6e97993c5a90dfc1ce42405 SHA512 d402bd46c37d2509c90530e9da0560fa3e5da9002c37a515451a8ab9275576d1af44793a10914e74e804f10a3352439815c6763d2d77e5e41a0e9840286f518e DIST lesspipe-1.91.tar.gz 121965 BLAKE2B 93c169b2b1a81db7e7b569718a43152a8f2b9ea95258047a00ae4940509817a3eb861fdadb6bafc5861c49e805ce910348a57f634bdae57317811ac6fbfc6945 SHA512 d080ceaae019d8885a53c8abb26f4a159b78578f68c2b9a024960aa69509651e3b6638e78bd6e2e57c23d81123d9a3cab167736f253ba4276a3889890d594bd3 +DIST lesspipe-2.00.tar.gz 190295 BLAKE2B 8f950853673e7939d6dd67c5022219ab101eea26b8efec1a7572e3c2c8465a14d09acbe945b204e927444b10953309b27fa47c5661df02e67aa2e2b98a940980 SHA512 f709bae63b17617d2c02bbe691736826c857ba1771907e37ba56bd407a29c2092a936ecb43d6a6e180a1d2eb5f54dccc894d2cf4eb113d42b4892ca6d8a4378d diff --git a/app-text/lesspipe/lesspipe-2.00.ebuild b/app-text/lesspipe/lesspipe-2.00.ebuild new file mode 100644 index 000000000000..c6c0557f8a33 --- /dev/null +++ b/app-text/lesspipe/lesspipe-2.00.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A preprocessor for less" +HOMEPAGE="https://github.com/wofr06/lesspipe" +SRC_URI="https://github.com/wofr06/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +# Please check again on bumps! +# bug #734896 +RESTRICT="test" + +BDEPEND="dev-lang/perl" +RDEPEND="${DEPEND} + ! - - tex@gentoo.org - Gentoo TeX Project - + GNU Ocrad is an OCR (Optical Character Recognition) program impleme nted as a filter and based on a feature extraction method. It reads a bitmap ima ge in pbm format and outputs text in diff --git a/app-text/ocrad/ocrad-0.27.ebuild b/app-text/ocrad/ocrad-0.27.ebuild index d7001dd7c77e..be1acd75228b 100644 --- a/app-text/ocrad/ocrad-0.27.ebuild +++ b/app-text/ocrad/ocrad-0.27.ebuild @@ -13,9 +13,9 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 ppc ppc64 ~sparc x86" -DEPEND="$(unpacker_src_uri_depends)" +BDEPEND="$(unpacker_src_uri_depends)" -DOCS="AUTHORS ChangeLog NEWS README" +DOCS=( AUTHORS ChangeLog NEWS README ) src_configure() { # ./configure is not based on autotools @@ -27,8 +27,13 @@ src_configure() { --prefix=/usr || die } +src_compile() { + emake AR="$(tc-getAR)" +} + src_install() { default + doman doc/${PN}.1 doinfo doc/${PN}.info } diff --git a/app-xemacs/Manifest.gz b/app-xemacs/Manifest.gz index 1139d1772c27..dee896cd21bc 100644 Binary files a/app-xemacs/Manifest.gz and b/app-xemacs/Manifest.gz differ diff --git a/app-xemacs/ebuild-mode/Manifest b/app-xemacs/ebuild-mode/Manifest index c6cb5ae44a34..506e42c0855e 100644 --- a/app-xemacs/ebuild-mode/Manifest +++ b/app-xemacs/ebuild-mode/Manifest @@ -1,2 +1,3 @@ DIST ebuild-mode-1.51.tar.xz 35280 BLAKE2B 63f57919bb73937ce3d40b4d6762e78c78d273bcf67875434d12450e00632d457d3dedbe6f213c1979a60cbc0a0874723e3e9424fdcfb64a48acc885cc90e577 SHA512 ff9ece96fbe7bfc9c070769dc6667e8c33f8fb7ef20a2d347c670342ef7500b52b54a93ed37ac9ea13a89c1b89752f5dd6e56c234abe9a4fcd4eb6bad0d0b466 DIST ebuild-mode-1.53.tar.xz 35920 BLAKE2B ee932441e23ba4b876e98feb9ff9dfea2e395296846e14f776ac10f4c5bab6b711161b4c890b0d8f2ccb5749db5bced3f693aa172e3ae92af506fee26fb5750a SHA512 8fcc28139c0cace21159a0b5026573f401f65b4501ff888f9818d8f5a506a7bc1f8d8a133f775619efc9e16e2172d6b5daba539b4e38b1a378c0b35395263ef9 +DIST ebuild-mode-1.54.tar.xz 35768 BLAKE2B 8cfba7230eb61bcdede498c696aedd7c64d01e5a1e7a22ad0edf793fbf6970bddd818d431e717bcc0b5ea07d35b525468131df260206db912f36341947b98d08 SHA512 7e67f3875beb42bc94fe522364212a02ea93e11aa1a64512283ab783c5a41097076b29a3ecf72b4369180253efd26fd3a223d617909953b2c7626f5cbc2aaba1 diff --git a/app-xemacs/ebuild-mode/ebuild-mode-1.54.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-1.54.ebuild new file mode 100644 index 000000000000..417a5874359c --- /dev/null +++ b/app-xemacs/ebuild-mode/ebuild-mode-1.54.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs" +SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~x86" + +RDEPEND=">=app-editors/xemacs-21.4.20-r5 + app-xemacs/sh-script" +BDEPEND="${RDEPEND}" + +src_compile() { + local XEMACS="${EPREFIX}/usr/bin/xemacs" + + "${XEMACS}" -batch -q --no-site-file \ + -eval "(add-to-list 'load-path \".\")" \ + -f batch-byte-compile \ + ebuild-mode.el gentoo-newsitem-mode.el || die + + "${XEMACS}" -batch -q --no-site-file \ + -eval "(setq autoload-package-name \"${PN}\")" \ + -eval "(setq generated-autoload-file \"${S}/auto-autoloads.el\")" \ + -l autoload -f batch-update-autoloads \ + ebuild-mode.el gentoo-newsitem-mode.el || die +} + +src_install() { + insinto /usr/share/xemacs/site-packages/lisp/${PN} + doins *.el *.elc +} diff --git a/app-xemacs/time/metadata.xml b/app-xemacs/time/metadata.xml index e6bc34a5c39f..218065eeca5b 100644 --- a/app-xemacs/time/metadata.xml +++ b/app-xemacs/time/metadata.xml @@ -5,4 +5,5 @@ xemacs@gentoo.org Gentoo XEmacs project + diff --git a/app-xemacs/time/time-1.18.ebuild b/app-xemacs/time/time-1.18.ebuild index 8ff66ee98185..4ce86822d768 100644 --- a/app-xemacs/time/time-1.18.ebuild +++ b/app-xemacs/time/time-1.18.ebuild @@ -11,6 +11,6 @@ XEMACS_EXPERIMENTAL="true" RDEPEND="app-xemacs/xemacs-base " -KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ppc ppc64 sparc x86" inherit xemacs-packages diff --git a/app-xemacs/xemacs-base/metadata.xml b/app-xemacs/xemacs-base/metadata.xml index e6bc34a5c39f..218065eeca5b 100644 --- a/app-xemacs/xemacs-base/metadata.xml +++ b/app-xemacs/xemacs-base/metadata.xml @@ -5,4 +5,5 @@ xemacs@gentoo.org Gentoo XEmacs project + diff --git a/app-xemacs/xemacs-base/xemacs-base-2.47.ebuild b/app-xemacs/xemacs-base/xemacs-base-2.47.ebuild index 56cd29670714..285d576b34b2 100644 --- a/app-xemacs/xemacs-base/xemacs-base-2.47.ebuild +++ b/app-xemacs/xemacs-base/xemacs-base-2.47.ebuild @@ -9,6 +9,6 @@ XEMACS_PKG_CAT="standard" XEMACS_EXPERIMENTAL="true" -KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm64 ~hppa ppc ppc64 ~riscv sparc x86" inherit xemacs-packages diff --git a/dev-ada/Manifest.gz b/dev-ada/Manifest.gz index 6c2d886e89f1..7f7c56b3ed56 100644 Binary files a/dev-ada/Manifest.gz and b/dev-ada/Manifest.gz differ diff --git a/dev-ada/VSS/VSS-22.0.0.ebuild b/dev-ada/VSS/VSS-22.0.0.ebuild index 170d744c2a58..4b8a933229a2 100644 --- a/dev-ada/VSS/VSS-22.0.0.ebuild +++ b/dev-ada/VSS/VSS-22.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -ADA_COMPAT=( gnat_202{0,1} ) +ADA_COMPAT=( gnat_2021 ) inherit ada multiprocessing DESCRIPTION="A high level string and text processing library" @@ -14,12 +14,26 @@ SRC_URI="https://github.com/AdaCore/${PN}/archive/refs/tags/v${PV}.tar.gz LICENSE="GPL-3 gcc-runtime-library-exception-3.1" SLOT="0/${PV}" KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" REQUIRED_USE="${ADA_REQUIRED_USE}" RDEPEND="${ADA_DEPS}" DEPEND="${RDEPEND}" -BDEPEND="dev-ada/gprbuild[${ADA_USEDEP}]" +BDEPEND="dev-ada/gprbuild[${ADA_USEDEP}] + test? ( app-i18n/unicode-data )" + +src_prepare() { + mkdir data + ln -sf /usr/share/unicode-data data/ucd || die + default +} src_compile() { emake GPRBUILD_FLAGS="-p -j$(makeopts_jobs) -v" } + +src_test() { + emake -j1 GPRBUILD_FLAGS="-p -j$(makeopts_jobs) -v" build_tests + emake check_text check_json +} diff --git a/dev-ada/libadalang-tools/libadalang-tools-22.0.0-r1.ebuild b/dev-ada/libadalang-tools/libadalang-tools-22.0.0-r1.ebuild new file mode 100644 index 000000000000..2b008feb5445 --- /dev/null +++ b/dev-ada/libadalang-tools/libadalang-tools-22.0.0-r1.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +ADA_COMPAT=( gnat_2021 ) +inherit ada multiprocessing + +DESCRIPTION="Libadalang-based tools: gnatpp, gnatmetric and gnatstub" +HOMEPAGE="https://www.adacore.com/community" +SRC_URI="https://github.com/AdaCore/${PN}/archive/refs/tags/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+shared static-libs static-pic" + +RESTRICT="test" + +REQUIRED_USE="|| ( shared static-libs static-pic ) + ${ADA_REQUIRED_USE}" + +RDEPEND="${ADA_DEPS}" +DEPEND="${RDEPEND} + dev-ada/libadalang:=[${ADA_USEDEP},static-libs?,static-pic?]" +BDEPEND="dev-ada/gprbuild[${ADA_USEDEP}]" + +src_compile() { + build () { + gprbuild -v -k -XLIBRARY_TYPE=$1 -XBUILD_MODE=prod \ + -P src/lal_tools.gpr -p -j$(makeopts_jobs) \ + -cargs:Ada ${ADAFLAGS} || die + gprbuild -v -k -XLIBRARY_TYPE=$1 -XXMLADA_BUILD=$1 \ + -XBUILD_MODE=prod -XLALTOOLS_SET=all \ + -P src/build.gpr -p -j$(makeopts_jobs) \ + -cargs:Ada ${ADAFLAGS} || die + } + if use shared; then + build relocatable + fi + if use static-libs; then + build static + fi + if use static-pic; then + build static-pic + fi +} + +src_install() { + build () { + gprinstall -XLIBRARY_TYPE=$1 -XBUILD_MODE=prod \ + --prefix="${D}"/usr --sources-subdir=include/lal_tools \ + --build-name=$1 --build-var=LIBRARY_TYPE \ + --build-var=LAL_TOOLS_BUILD \ + -P src/lal_tools.gpr -p -f || die + } + if use shared; then + build relocatable + fi + if use static-libs; then + build static + fi + if use static-pic; then + build static-pic + fi + dobin bin/gnat{metric,pp,stub,test} + einstalldocs +} diff --git a/dev-ada/libadalang-tools/libadalang-tools-22.0.0.ebuild b/dev-ada/libadalang-tools/libadalang-tools-22.0.0.ebuild deleted file mode 100644 index d0fb5513cc81..000000000000 --- a/dev-ada/libadalang-tools/libadalang-tools-22.0.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ADA_COMPAT=( gnat_2021 ) -inherit ada multiprocessing - -DESCRIPTION="Libadalang-based tools: gnatpp, gnatmetric and gnatstub" -HOMEPAGE="https://www.adacore.com/community" -SRC_URI="https://github.com/AdaCore/${PN}/archive/refs/tags/v${PV}.tar.gz - -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RESTRICT="test" - -RDEPEND="${ADA_DEPS}" -DEPEND="${RDEPEND} - dev-ada/libadalang:=[${ADA_USEDEP},static-libs]" -BDEPEND="dev-ada/gprbuild[${ADA_USEDEP}]" - -src_compile() { - gprbuild -v -k -XLIBRARY_TYPE=static -XXMLADA_BUILD=static \ - -XBUILD_MODE=dev -XLALTOOLS_SET=all -P src/build.gpr -p \ - -j$(makeopts_jobs) || die -} - -src_install() { - dobin bin/gnat{metric,pp,stub,test} - einstalldocs -} diff --git a/dev-ada/libadalang-tools/metadata.xml b/dev-ada/libadalang-tools/metadata.xml index d2615c1b0e0a..5d5e0fd45371 100644 --- a/dev-ada/libadalang-tools/metadata.xml +++ b/dev-ada/libadalang-tools/metadata.xml @@ -4,4 +4,8 @@ ada@gentoo.org + + Build shared library + Build static library with pic code + diff --git a/dev-cpp/Manifest.gz b/dev-cpp/Manifest.gz index 469c6a433326..f4a425623595 100644 Binary files a/dev-cpp/Manifest.gz and b/dev-cpp/Manifest.gz differ diff --git a/dev-cpp/catch/catch-1.12.2-r1.ebuild b/dev-cpp/catch/catch-1.12.2-r1.ebuild new file mode 100644 index 000000000000..4ad93b3e2470 --- /dev/null +++ b/dev-cpp/catch/catch-1.12.2-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/catchorg/Catch2.git" + EGIT_BRANCH="Catch1.x" +else + MY_P=${PN^}-${PV} + SRC_URI="https://github.com/catchorg/Catch2/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + + S="${WORKDIR}/${PN^}2-${PV}" +fi + +DESCRIPTION="Modern C++ header-only framework for unit-tests" +HOMEPAGE="https://github.com/catchorg/Catch2" + +LICENSE="Boost-1.0" +SLOT="1" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="! +Date: Fri Feb 19 10:45:49 2021 +0000 + + Patch for non-constant SIGSTKSZ + +--- a/include/internal/catch_fatal_condition.hpp ++++ b/include/internal/catch_fatal_condition.hpp +@@ -136,7 +136,7 @@ namespace Catch { + static bool isSet; + static struct sigaction oldSigActions [sizeof(signalDefs)/sizeof(SignalDefs)]; + static stack_t oldSigStack; +- static char altStackMem[SIGSTKSZ]; ++ static char altStackMem[32768]; + + static void handleSignal( int sig ) { + std::string name = ""; +@@ -156,7 +156,7 @@ namespace Catch { + isSet = true; + stack_t sigStack; + sigStack.ss_sp = altStackMem; +- sigStack.ss_size = SIGSTKSZ; ++ sigStack.ss_size = 32768; + sigStack.ss_flags = 0; + sigaltstack(&sigStack, &oldSigStack); + struct sigaction sa = { 0 }; +@@ -188,7 +188,7 @@ namespace Catch { + bool FatalConditionHandler::isSet = false; + struct sigaction FatalConditionHandler::oldSigActions[sizeof(signalDefs)/sizeof(SignalDefs)] = {}; + stack_t FatalConditionHandler::oldSigStack = {}; +- char FatalConditionHandler::altStackMem[SIGSTKSZ] = {}; ++ char FatalConditionHandler::altStackMem[32768] = {}; + + + } // namespace Catch +--- a/single_include/catch.hpp ++++ b/single_include/catch.hpp +@@ -6540,7 +6540,7 @@ namespace Catch { + static bool isSet; + static struct sigaction oldSigActions [sizeof(signalDefs)/sizeof(SignalDefs)]; + static stack_t oldSigStack; +- static char altStackMem[SIGSTKSZ]; ++ static char altStackMem[32768]; + + static void handleSignal( int sig ) { + std::string name = ""; +@@ -6560,7 +6560,7 @@ namespace Catch { + isSet = true; + stack_t sigStack; + sigStack.ss_sp = altStackMem; +- sigStack.ss_size = SIGSTKSZ; ++ sigStack.ss_size = 32768; + sigStack.ss_flags = 0; + sigaltstack(&sigStack, &oldSigStack); + struct sigaction sa = { 0 }; +@@ -6591,7 +6591,7 @@ namespace Catch { + bool FatalConditionHandler::isSet = false; + struct sigaction FatalConditionHandler::oldSigActions[sizeof(signalDefs)/sizeof(SignalDefs)] = {}; + stack_t FatalConditionHandler::oldSigStack = {}; +- char FatalConditionHandler::altStackMem[SIGSTKSZ] = {}; ++ char FatalConditionHandler::altStackMem[32768] = {}; + + } // namespace Catch + diff --git a/dev-cpp/cpp-hocon/cpp-hocon-0.3.0-r1.ebuild b/dev-cpp/cpp-hocon/cpp-hocon-0.3.0-r1.ebuild new file mode 100644 index 000000000000..c3a4a5914aa4 --- /dev/null +++ b/dev-cpp/cpp-hocon/cpp-hocon-0.3.0-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake prefix + +DESCRIPTION="Provides C++ support for the HOCON configuration file format" +HOMEPAGE="https://github.com/puppetlabs/cpp-hocon" +SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="debug test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/boost-1.54:=[nls] + >=dev-libs/leatherman-0.9.3:= +" +DEPEND="${DEPEND} + test? ( dev-cpp/catch:1 )" + +#PATCHES=( "${FILESDIR}"/${PN}-0.2.1-cmake.patch ) +PATCHES=( "${FILESDIR}"/${PN}-0.3.0-use-system-catch.patch ) + +src_prepare() { + cmake_src_prepare + + eprefixify lib/tests/CMakeLists.txt +} + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING=$(usex test) + ) + + cmake_src_configure +} diff --git a/dev-cpp/cpp-hocon/files/cpp-hocon-0.3.0-use-system-catch.patch b/dev-cpp/cpp-hocon/files/cpp-hocon-0.3.0-use-system-catch.patch new file mode 100644 index 000000000000..0964e3e7bc7a --- /dev/null +++ b/dev-cpp/cpp-hocon/files/cpp-hocon-0.3.0-use-system-catch.patch @@ -0,0 +1,51 @@ +https://bugs.gentoo.org/823419 + +Wanted to make this "proper" but Catch2 lacks a pkgconfig file (or a CMake one) +and it's easier to just do this for now. + +Based on patch version of sed commands from upstream bug +(https://github.com/puppetlabs/cpp-hocon/issues/132) and +Fedora (https://src.fedoraproject.org/rpms/cpp-hocon/blob/rawhide/f/cpp-hocon.spec#_76). + +Makes tests conditional too. +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -16,12 +16,16 @@ if (NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel." FORCE) + endif() + +-enable_testing() +- + # Leatherman setup +-set(LEATHERMAN_COMPONENTS locale catch nowide util) ++set(LEATHERMAN_COMPONENTS locale nowide util) + find_package(Leatherman REQUIRED COMPONENTS ${LEATHERMAN_COMPONENTS}) + ++option(BUILD_TESTING "Build test suite (needs Catch)" ON) ++ ++if(BUILD_TESTING) ++ enable_testing() ++endif() ++ + ## Before we find any packages, we want to pull in the common leatherman options, as they can affect commonly-used packages. + include(options) + ## Pull in common cflags setting from leatherman. Don't override CMAKE_CXX_FLAGS at the project root to avoid impacting 3rd party code. +--- a/lib/CMakeLists.txt ++++ b/lib/CMakeLists.txt +@@ -91,4 +91,6 @@ symbol_exports(lib${PROJECT_NAME} "${CMAKE_CURRENT_LIST_DIR}/inc/hocon/export.h" + leatherman_install(lib${PROJECT_NAME}) + install(DIRECTORY inc/hocon DESTINATION include) + +-add_subdirectory(tests) ++if (BUILD_TESTING) ++ add_subdirectory(tests) ++endif() +--- a/lib/tests/CMakeLists.txt ++++ b/lib/tests/CMakeLists.txt +@@ -1,5 +1,5 @@ + # Setup compiling the test executable. C++ compile flags are inherited from the parent directory. +-include_directories(${LEATHERMAN_CATCH_INCLUDE}) ++include_directories(@GENTOO_PORTAGE_EPREFIX@/usr/include/catch) + + set(TEST_CASES + concatenation_test.cc diff --git a/dev-games/Manifest.gz b/dev-games/Manifest.gz index 46d62479ef1c..9bf3c713211c 100644 Binary files a/dev-games/Manifest.gz and b/dev-games/Manifest.gz differ diff --git a/dev-games/openscenegraph-openmw/Manifest b/dev-games/openscenegraph-openmw/Manifest index d40ffdebd734..d3f72c953dcc 100644 --- a/dev-games/openscenegraph-openmw/Manifest +++ b/dev-games/openscenegraph-openmw/Manifest @@ -1,3 +1,2 @@ -DIST openscenegraph-openmw-3.4_p20200425.tar.gz 5698786 BLAKE2B 43684fa898912434dae9a7b41070a893c407dceba7e468a3f3dede32e24aea55d921098faf8d9d05708d2ef01a3507b2f126939dc13b8693002a0bec189bbaf7 SHA512 9bb4d2a6ca4694ee22a29508b74a095a483584ea801dc8298ec8a9b41c4d4fe18c52a21849ae9ec1065060479dcad5156227f82feed13c177415662ecba1da70 DIST openscenegraph-openmw-3.6_p20210610.tar.gz 5788655 BLAKE2B fdf345502ee7bb742741da758ae212028882544766a6acba3309d27e2fffa230e4a07626c9a39dbdf1310374b765b3941c915d7b6d527fc7cb75ba028230b4a0 SHA512 1964b12fedf297b8baf77d4db2eb4ce6732925bb3974fb4d8d20b1dec751400ceb57faf0b069c2a5cf45728cad83ea434356edbcb19413d650717c3d2ac39a03 DIST openscenegraph-openmw-3.6_p20211017.tar.gz 5788414 BLAKE2B d5ec3c7834bc8138b417d9bf8d92dde201a94f0158560aca477755752fd886378bfdffbd8c2e878ec1c6d35b572a60368c09695a93be9d83e26712de176b6824 SHA512 8985c6abedf2cbbf524aacc4f51e0217a8bd5eb17bae04774afc960b5cf21a6fb22941e08efcbd37e538c3e44cb044ca5cfa02380a75b4c87fe606c6fdfa8155 diff --git a/dev-games/openscenegraph-openmw/files/openscenegraph-3.4-cmake.patch b/dev-games/openscenegraph-openmw/files/openscenegraph-3.4-cmake.patch deleted file mode 100644 index 85eff1ab7907..000000000000 --- a/dev-games/openscenegraph-openmw/files/openscenegraph-3.4-cmake.patch +++ /dev/null @@ -1,87 +0,0 @@ ---- OpenSceneGraph-3.4.0/CMakeLists.txt -+++ OpenSceneGraph-3.4.0/CMakeLists.txt -@@ -76,6 +76,7 @@ - SET(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel." FORCE) - ENDIF(NOT CMAKE_BUILD_TYPE) - -+INCLUDE(MacroOptionalFindPackage) - - IF(ANDROID) - INCLUDE(OsgAndroidMacroUtils)--- OpenSceneGraph-3.4.0/CMakeModules/COPYING-CMAKE-SCRIPTS -+++ OpenSceneGraph-3.4.0/CMakeModules/COPYING-CMAKE-SCRIPTS -@@ -0,0 +1,22 @@ -+Redistribution and use in source and binary forms, with or without -+modification, are permitted provided that the following conditions -+are met: -+ -+1. Redistributions of source code must retain the copyright -+ notice, this list of conditions and the following disclaimer. -+2. Redistributions in binary form must reproduce the copyright -+ notice, this list of conditions and the following disclaimer in the -+ documentation and/or other materials provided with the distribution. -+3. The name of the author may not be used to endorse or promote products -+ derived from this software without specific prior written permission. -+ -+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -+IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -+OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -+IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -+NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ---- OpenSceneGraph-3.4.0/CMakeModules/MacroOptionalFindPackage.cmake -+++ OpenSceneGraph-3.4.0/CMakeModules/MacroOptionalFindPackage.cmake -@@ -0,0 +1,28 @@ -+# - MACRO_OPTIONAL_FIND_PACKAGE() combines FIND_PACKAGE() with an OPTION() -+# MACRO_OPTIONAL_FIND_PACKAGE( [QUIT] ) -+# This macro is a combination of OPTION() and FIND_PACKAGE(), it -+# works like FIND_PACKAGE(), but additionally it automatically creates -+# an option name WITH_, which can be disabled via the cmake GUI. -+# or via -DWITH_=OFF -+# The standard _FOUND variables can be used in the same way -+# as when using the normal FIND_PACKAGE() -+ -+# Copyright (c) 2006, Alexander Neundorf, -+# -+# Redistribution and use is allowed according to the terms of the BSD license. -+# For details see the accompanying COPYING-CMAKE-SCRIPTS file. -+ -+ -+macro (MACRO_OPTIONAL_FIND_PACKAGE _name ) -+ option(WITH_${_name} "Search for ${_name} package" ON) -+ if (WITH_${_name}) -+ find_package(${_name} ${ARGN}) -+ else (WITH_${_name}) -+ set(${_name}_FOUND) -+ set(${_name}_INCLUDE_DIR) -+ set(${_name}_INCLUDES) -+ set(${_name}_LIBRARY) -+ set(${_name}_LIBRARIES) -+ endif (WITH_${_name}) -+endmacro (MACRO_OPTIONAL_FIND_PACKAGE) -+ ---- OpenSceneGraph-3.5.5/CMakeModules/OsgMacroUtils.cmake -+++ OpenSceneGraph-3.5.5/CMakeModules/OsgMacroUtils.cmake -@@ -463,7 +463,7 @@ MACRO(SETUP_EXAMPLE EXAMPLE_NAME) - IF(APPLE) - INSTALL(TARGETS ${TARGET_TARGETNAME} RUNTIME DESTINATION share/OpenSceneGraph/bin BUNDLE DESTINATION share/OpenSceneGraph/bin ) - ELSE(APPLE) -- INSTALL(TARGETS ${TARGET_TARGETNAME} RUNTIME DESTINATION share/OpenSceneGraph/bin COMPONENT openscenegraph-examples ) -+ INSTALL(TARGETS ${TARGET_TARGETNAME} RUNTIME DESTINATION bin COMPONENT openscenegraph-examples ) - IF(MSVC) - INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/${TARGET_TARGETNAME}${CMAKE_RELWITHDEBINFO_POSTFIX}.pdb DESTINATION share/OpenSceneGraph/bin COMPONENT openscenegraph-examples CONFIGURATIONS RelWithDebInfo) - INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/${TARGET_TARGETNAME}${CMAKE_DEBUG_POSTFIX}.pdb DESTINATION share/OpenSceneGraph/bin COMPONENT openscenegraph-examples CONFIGURATIONS Debug) - ---- OpenSceneGraph-3.4.0/examples/osgviewerFLTK/CMakeLists.txt -+++ OpenSceneGraph-3.4.0/examples/osgviewerFLTK/CMakeLists.txt -@@ -1,6 +1,6 @@ - SET(TARGET_SRC osgviewerFLTK.cpp ) - --SET(TARGET_EXTERNAL_LIBRARIES ${FLTK_LIBRARY} ${FLTK_GL_LIBRARY}) -+SET(TARGET_EXTERNAL_LIBRARIES ${FLTK_BASE_LIBRARY} ${FLTK_GL_LIBRARY}) - - INCLUDE_DIRECTORIES(${FLTK_INCLUDE_DIR} ) - diff --git a/dev-games/openscenegraph-openmw/files/openscenegraph-3.4-gcc11.patch b/dev-games/openscenegraph-openmw/files/openscenegraph-3.4-gcc11.patch deleted file mode 100644 index 0d2dc2d0f73b..000000000000 --- a/dev-games/openscenegraph-openmw/files/openscenegraph-3.4-gcc11.patch +++ /dev/null @@ -1,23 +0,0 @@ -https://bugs.gentoo.org/788301 ---- a/include/osgDB/ObjectCache -+++ b/include/osgDB/ObjectCache -@@ -72,7 +72,7 @@ class OSGDB_EXPORT ObjectCache : public osg::Referenced - - class ClassComp { - public: -- bool operator() (const ObjectCache::FileNameOptionsPair& lhs, const ObjectCache::FileNameOptionsPair& rhs); -+ bool operator() (const ObjectCache::FileNameOptionsPair& lhs, const ObjectCache::FileNameOptionsPair& rhs) const; - }; - - typedef std::pair, double > ObjectTimeStampPair; ---- a/src/osgDB/ObjectCache.cpp -+++ b/src/osgDB/ObjectCache.cpp -@@ -16,7 +16,7 @@ - - using namespace osgDB; - --bool ObjectCache::ClassComp::operator() (const ObjectCache::FileNameOptionsPair& lhs, const ObjectCache::FileNameOptionsPair& rhs) -+bool ObjectCache::ClassComp::operator() (const ObjectCache::FileNameOptionsPair& lhs, const ObjectCache::FileNameOptionsPair& rhs) const - { - // check if filename are the same - if (lhs.first < rhs.first) return true; diff --git a/dev-games/openscenegraph-openmw/files/openscenegraph-3.5.1-jpeg-9.patch b/dev-games/openscenegraph-openmw/files/openscenegraph-3.5.1-jpeg-9.patch deleted file mode 100644 index f6e85e8e352d..000000000000 --- a/dev-games/openscenegraph-openmw/files/openscenegraph-3.5.1-jpeg-9.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 34b4e7001522c1b47b4211dac34d2d6a6b994a6f Mon Sep 17 00:00:00 2001 -From: Robert Osfield -Date: Thu, 17 Aug 2017 10:52:59 +0100 -Subject: [PATCH] Added version check for boolean, TRUE and FALSE settings - ---- - src/osgPlugins/jpeg/ReaderWriterJPEG.cpp | 14 ++++++++------ - 1 file changed, 8 insertions(+), 6 deletions(-) - -diff --git a/src/osgPlugins/jpeg/ReaderWriterJPEG.cpp b/src/osgPlugins/jpeg/ReaderWriterJPEG.cpp -index 9f7f4c38937..115203322a5 100644 ---- a/src/osgPlugins/jpeg/ReaderWriterJPEG.cpp -+++ b/src/osgPlugins/jpeg/ReaderWriterJPEG.cpp -@@ -70,12 +70,14 @@ namespace osgDBJPEG - - static int jpegerror = ERR_NO_ERROR; - --/* Some versions of jmorecfg.h define boolean, some don't... -- Those that do also define HAVE_BOOLEAN, so we can guard using that. */ --#ifndef HAVE_BOOLEAN -- typedef int boolean; -- #define FALSE 0 -- #define TRUE 1 -+#if JPEG_LIB_VERSION < 90 -+ /* Some versions of jmorecfg.h define boolean, some don't... -+ Those that do also define HAVE_BOOLEAN, so we can guard using that. */ -+ #ifndef HAVE_BOOLEAN -+ typedef int boolean; -+ #define FALSE 0 -+ #define TRUE 1 -+ #endif - #endif - - /* CODE FOR READING/WRITING JPEG FROM STREAMS diff --git a/dev-games/openscenegraph-openmw/openscenegraph-openmw-3.4_p20200425-r101.ebuild b/dev-games/openscenegraph-openmw/openscenegraph-openmw-3.4_p20200425-r101.ebuild deleted file mode 100644 index 82dcb9d455c9..000000000000 --- a/dev-games/openscenegraph-openmw/openscenegraph-openmw-3.4_p20200425-r101.ebuild +++ /dev/null @@ -1,172 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -LUA_COMPAT=( lua5-{1..2} ) -WX_GTK_VER="3.0-gtk3" -inherit cmake flag-o-matic lua-single wxwidgets - -DESCRIPTION="OpenMW-specific fork of OpenSceneGraph" -HOMEPAGE="https://github.com/OpenMW/osg" -MY_COMMIT="8b07809fa674ecffe77338aaea2e223b3aadff0e" -SRC_URI="https://github.com/OpenMW/osg/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="wxWinLL-3 LGPL-2.1" -SLOT="0/132" # NOTE: CHECK WHEN BUMPING! Subslot is SOVERSION -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="curl debug doc examples egl ffmpeg fltk fox gdal gif glut gstreamer jpeg - lua openexr openinventor osgapps pdf png qt5 sdl sdl2 svg tiff - truetype vnc wxwidgets xine xrandr zlib" - -REQUIRED_USE=" - lua? ( ${LUA_REQUIRED_USE} ) - sdl2? ( sdl ) - openexr? ( zlib ) -" - -# TODO: COLLADA, FBX, GTA, OpenVRML, Performer, DCMTK -RDEPEND=" - !dev-games/openscenegraph - media-libs/mesa[egl(+)?] - virtual/glu - virtual/opengl - x11-libs/libSM - x11-libs/libXext - curl? ( net-misc/curl ) - examples? ( - fltk? ( x11-libs/fltk:1[opengl] ) - fox? ( x11-libs/fox:1.6[opengl] ) - glut? ( media-libs/freeglut ) - sdl2? ( media-libs/libsdl2 ) - wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER}[opengl,X] ) - ) - ffmpeg? ( media-video/ffmpeg:0= ) - gdal? ( sci-libs/gdal:= ) - gif? ( media-libs/giflib:= ) - gstreamer? ( - media-libs/gstreamer:1.0 - media-libs/gst-plugins-base:1.0 - ) - jpeg? ( virtual/jpeg:0 ) - lua? ( ${LUA_DEPS} ) - openexr? ( - media-libs/ilmbase:= - media-libs/openexr:= - ) - openinventor? ( media-libs/coin ) - pdf? ( app-text/poppler[cairo] ) - png? ( media-libs/libpng:0= ) - qt5? ( - dev-qt/qtopengl:5 - dev-qt/qtwidgets:5 - ) - sdl? ( media-libs/libsdl ) - svg? ( - gnome-base/librsvg - x11-libs/cairo - ) - tiff? ( media-libs/tiff:0 ) - truetype? ( media-libs/freetype:2 ) - vnc? ( net-libs/libvncserver ) - xrandr? ( x11-libs/libXrandr ) - zlib? ( sys-libs/zlib ) -" -DEPEND="${RDEPEND} - x11-base/xorg-proto -" -BDEPEND=" - app-arch/unzip - virtual/pkgconfig - doc? ( app-doc/doxygen ) -" - -S="${WORKDIR}/osg-${MY_COMMIT}" - -PATCHES=( - "${FILESDIR}"/openscenegraph-3.4-cmake.patch - "${FILESDIR}"/openscenegraph-3.5.1-jpeg-9.patch - "${FILESDIR}"/openscenegraph-3.6.3-docdir.patch - "${FILESDIR}"/openscenegraph-3.4-gcc11.patch -) - -pkg_setup() { - if use lua; then - lua-single_pkg_setup - fi -} - -src_prepare() { - sed -i "s/ FIND_PACKAGE/ MACRO_OPTIONAL_FIND_PACKAGE/g" CMakeLists.txt || die "can't replace FIND_PACKAGE" - cmake_src_prepare -} - -src_configure() { - if use examples && use wxwidgets; then - setup-wxwidgets - fi - - # Needed by FFmpeg - append-cppflags -D__STDC_CONSTANT_MACROS - - local libdir=$(get_libdir) - local mycmakeargs=( - -DDYNAMIC_OPENSCENEGRAPH=ON - -DLIB_POSTFIX=${libdir/lib} - -DOPENGL_PROFILE=GL2 #GL1 GL2 GL3 GLES1 GLES3 GLES3 - -DOSG_PROVIDE_READFILE=ON - -DOSG_USE_LOCAL_LUA_SOURCE=OFF - -DWITH_Lua51=OFF # We use CMake-version FindLua52.cmake instead which can find any lua - -DWITH_Lua52=$(usex lua) - -DWITH_Asio=OFF # Fails to build, similar to https://github.com/chriskohlhoff/asio/issues/316 - -DWITH_CURL=$(usex curl) - -DBUILD_DOCUMENTATION=$(usex doc) - -DBUILD_OSG_APPLICATIONS=$(usex osgapps) - -DBUILD_OSG_EXAMPLES=$(usex examples) - -DWITH_FFmpeg=$(usex ffmpeg) - -DWITH_GDAL=$(usex gdal) - -DWITH_GIFLIB=$(usex gif) - -DWITH_GStreamer=$(usex gstreamer) - -DWITH_GLIB=$(usex gstreamer) - -DWITH_GtkGl=OFF - -DWITH_JPEG=$(usex jpeg) - -DWITH_Jasper=OFF - -DWITH_LIBLAS=OFF # dep failed to build https://bugs.gentoo.org/725938 - -DWITH_OpenEXR=$(usex openexr) - -DWITH_Inventor=$(usex openinventor) - -DWITH_Poppler-glib=$(usex pdf) - -DWITH_PNG=$(usex png) - -DWITH_SDL=$(usex sdl) - -DWITH_SDL2=$(usex sdl2) - -DWITH_RSVG=$(usex svg rsvg) - -DWITH_TIFF=$(usex tiff) - -DWITH_Freetype=$(usex truetype) - -DWITH_LibVNCServer=$(usex vnc) - -DWITH_Xine=$(usex xine) - -DOSGVIEWER_USE_XRANDR=$(usex xrandr) - -DWITH_ZLIB=$(usex zlib) - -DOSG_USE_QT=$(usex qt5) - -DDESIRED_QT_VERSION=5 - ) - if use examples; then - mycmakeargs+=( - -DWITH_FLTK=$(usex fltk) - -DWITH_FOX=$(usex fox) - -DWITH_GLUT=$(usex glut) - -DWITH_wxWidgets=$(usex wxwidgets) - ) - fi - if use lua; then - mycmakeargs+=( - -DLUA_INCLUDE_DIR="$(lua_get_include_dir)" - -DLUA_LIBRARY="$(lua_get_shared_lib)" - ) - fi - - cmake_src_configure -} - -src_compile() { - cmake_src_compile - use doc && cmake_src_compile doc_openscenegraph doc_openthreads -} diff --git a/dev-games/physfs/physfs-3.0.2.ebuild b/dev-games/physfs/physfs-3.0.2.ebuild deleted file mode 100644 index 5973e8fad0a0..000000000000 --- a/dev-games/physfs/physfs-3.0.2.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -CMAKE_ECLASS=cmake -inherit cmake-multilib - -DESCRIPTION="Abstraction layer for filesystem and archive access" -HOMEPAGE="https://icculus.org/physfs/" - -if [[ ${PV} == *9999* ]]; then - EHG_REPO_URI="https://hg.icculus.org/icculus/physfs" - inherit mercurial -else - KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc64 x86" - SRC_URI="https://icculus.org/physfs/downloads/${P}.tar.bz2" -fi - -LICENSE="ZLIB" -SLOT="0" -IUSE="7zip doc grp hog iso mvl qpak slb static-libs vdf wad +zip" - -BDEPEND="doc? ( app-doc/doxygen )" - -DOCS=( docs/CHANGELOG.txt docs/CREDITS.txt docs/TODO.txt ) - -multilib_src_configure() { - local mycmakeargs=( - -DPHYSFS_BUILD_SHARED=ON - -DPHYSFS_BUILD_TEST=OFF - -DPHYSFS_BUILD_STATIC="$(usex static-libs)" - -DPHYSFS_ARCHIVE_7Z="$(usex 7zip)" - -DPHYSFS_ARCHIVE_GRP="$(usex grp)" - -DPHYSFS_ARCHIVE_HOG="$(usex hog)" - -DPHYSFS_ARCHIVE_ISO9660="$(usex iso)" - -DPHYSFS_ARCHIVE_MVL="$(usex mvl)" - -DPHYSFS_ARCHIVE_SLB="$(usex slb)" - -DPHYSFS_ARCHIVE_VDF="$(usex vdf)" - -DPHYSFS_ARCHIVE_WAD="$(usex wad)" - -DPHYSFS_ARCHIVE_QPAK="$(usex qpak)" - -DPHYSFS_ARCHIVE_ZIP="$(usex zip)" - ) - cmake_src_configure -} - -multilib_src_compile() { - cmake_src_compile - - if multilib_is_native_abi && use doc; then - cmake_src_compile docs - HTML_DOCS=( "${BUILD_DIR}"/docs/html/. ) - fi -} diff --git a/dev-java/Manifest.gz b/dev-java/Manifest.gz index a9c028a8cebe..81aa876add26 100644 Binary files a/dev-java/Manifest.gz and b/dev-java/Manifest.gz differ diff --git a/dev-java/commons-pool/Manifest b/dev-java/commons-pool/Manifest deleted file mode 100644 index 8099fc3c4e7b..000000000000 --- a/dev-java/commons-pool/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST commons-pool2-2.2-src.tar.gz 163682 BLAKE2B b9a84b1387cd00eb46cc94726ae3295a73f2f47b824401aca525296eddbf04b6c978a4808014bf7e93c113014e0e2fb0db39d6b9ddb9c651bb385cecd05584a5 SHA512 a9c1a30f497f4a6c28b8b4b82d3b2f801b464fc329d1da4f5087dcd6b923c45bde9ac6f3dc9939025453462f9dfea9fff637db9b4334ed513770a546b4807256 diff --git a/dev-java/commons-pool/commons-pool-2.2.ebuild b/dev-java/commons-pool/commons-pool-2.2.ebuild deleted file mode 100644 index 162292b43aa1..000000000000 --- a/dev-java/commons-pool/commons-pool-2.2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 - -MY_PN="${PN}2" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Provides general purpose object pooling API" -HOMEPAGE="http://commons.apache.org/pool/" -SRC_URI="mirror://apache/commons/pool/source/${MY_P}-src.tar.gz" - -LICENSE="Apache-2.0" -SLOT="2" -KEYWORDS="amd64 ppc64 x86" - -COMMON_DEP="dev-java/cglib:3 - dev-java/asm:4" -RDEPEND="${COMMON_DEP} - >=virtual/jre-1.6" -DEPEND="${COMMON_DEP} - >=virtual/jdk-1.6 - test? ( - dev-java/ant-junit:0 - dev-java/junit:4 - )" - -S="${WORKDIR}/${MY_P}-src" - -EANT_BUILD_TARGET="build-jar" -JAVA_ANT_REWRITE_CLASSPATH="true" -EANT_GENTOO_CLASSPATH="cglib-3,asm-4" -EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},junit-4" - -src_test() { - ANT_TASKS="ant-junit" java-pkg-2_src_test -} - -src_install() { - java-pkg_newjar dist/${MY_P}-SNAPSHOT.jar ${PN}.jar - dodoc README.txt RELEASE-NOTES.txt - - use doc && java-pkg_dojavadoc dist/docs/api - use source && java-pkg_dosrc src/main/java/org -} diff --git a/dev-java/commons-pool/metadata.xml b/dev-java/commons-pool/metadata.xml deleted file mode 100644 index 6021501589e0..000000000000 --- a/dev-java/commons-pool/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - java@gentoo.org - Java - - diff --git a/dev-java/dict4j/Manifest b/dev-java/dict4j/Manifest deleted file mode 100644 index cf8272e71124..000000000000 --- a/dev-java/dict4j/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST dict4j-1.1.jar 50269 BLAKE2B 70f7a46549384a063e1240bdb375a8c12e81c6a07a4c15bc1abcdb603ac89a2157a2cc2561960e4ab955d079dab3419708ae89e7f59bed51cc1da53649e52714 SHA512 35a6d77d13effa8d5e59ed2c03ff5700ccf2d91673b2bcf420a4f216176ca521dff741ff6660547823d16d06df1dcd2d44be1e90ce293a83ad9fa649b5caf7c6 diff --git a/dev-java/dict4j/dict4j-1.1.ebuild b/dev-java/dict4j/dict4j-1.1.ebuild deleted file mode 100644 index 70e12c0b2ae4..000000000000 --- a/dev-java/dict4j/dict4j-1.1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="Dict protocol implementation in Java" -HOMEPAGE="http://dict4j.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}-src.jar -> ${P}.jar" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND=">=virtual/jre-1.6" -DEPEND=">=virtual/jdk-1.6 - app-arch/unzip" - -JAVA_SRC_DIR="net" -JAVA_ENCODING="ISO-8859-1" diff --git a/dev-java/felix-gogo-command/Manifest b/dev-java/felix-gogo-command/Manifest deleted file mode 100644 index 5f1a5ca5a6c7..000000000000 --- a/dev-java/felix-gogo-command/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST org.apache.felix.gogo.command-0.12.0-project.tar.gz 26454 BLAKE2B 0a0ed6b1ce7e66e90a32c71aa3786d290c907c68124a4056078907d1fe7d85546327d9540c68ee0bf3b90e28ef06fcd286e290d86799b6675fd642fbba30ad9e SHA512 8d7afa4b34be6460df9e1e91ecc42b34ecfc1888f5574add206a3c6fbc54647672e34d4f3a4e59eb39f8b2b9fd94b468647c0e95d5fc04649ab7a283e172a061 diff --git a/dev-java/felix-gogo-command/felix-gogo-command-0.12.0.ebuild b/dev-java/felix-gogo-command/felix-gogo-command-0.12.0.ebuild deleted file mode 100644 index b2f275c09e15..000000000000 --- a/dev-java/felix-gogo-command/felix-gogo-command-0.12.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit java-pkg-2 java-ant-2 java-osgi - -DESCRIPTION="Felix Gogo Command" -HOMEPAGE="http://felix.apache.org/site/apache-felix-gogo.html" -LICENSE="Apache-2.0" - -MY_PN="org.apache.felix.gogo.command" -MY_P="${MY_PN}-${PV}" -SRC_URI="mirror://apache/felix/${MY_P}-project.tar.gz" -SLOT="0" -KEYWORDS="amd64" - -CDEPEND=" - dev-java/felix-bundlerepository:0 - dev-java/felix-gogo-runtime:0 - dev-java/osgi-compendium:0 - dev-java/osgi-core-api:0 -" - -DEPEND=">=virtual/jdk-1.6 - ${CDEPEND}" - -RDEPEND=">=virtual/jre-1.6 - ${CDEPEND}" - -S="${WORKDIR}/${MY_P}" - -java_prepare() { - cp "${FILESDIR}"/${P}-build.xml build.xml || die -} - -JAVA_ANT_REWRITE_CLASSPATH="true" -EANT_GENTOO_CLASSPATH="osgi-core-api,osgi-compendium,felix-gogo-runtime,felix-bundlerepository" - -src_install() { - mv target/{${MY_P},${PN}}.jar || die - - java-osgi_dojar target/${PN}.jar ${MY_PN} ${MY_PN} "Export-Package: ${MY_PN}" -} diff --git a/dev-java/felix-gogo-command/files/felix-gogo-command-0.12.0-build.xml b/dev-java/felix-gogo-command/files/felix-gogo-command-0.12.0-build.xml deleted file mode 100644 index b31bcdccdc01..000000000000 --- a/dev-java/felix-gogo-command/files/felix-gogo-command-0.12.0-build.xml +++ /dev/null @@ -1,276 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - =================================== WARNING =================================== - JUnit is not present in your $ANT_HOME/lib directory. Tests not executed. - =============================================================================== - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev-java/felix-gogo-command/metadata.xml b/dev-java/felix-gogo-command/metadata.xml deleted file mode 100644 index 6021501589e0..000000000000 --- a/dev-java/felix-gogo-command/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - java@gentoo.org - Java - - diff --git a/dev-java/jama/Manifest b/dev-java/jama/Manifest deleted file mode 100644 index aee9142a85c1..000000000000 --- a/dev-java/jama/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jama-1.0.3.tar.gz 82188 BLAKE2B 35de815f770b192cd1b86a56ddf1919e12675d898ec4473489d3ce2c3899185f9d96eda39b6f7520fc67edfd17fe58b585f788f6a6967220150fc9a334b219ea SHA512 9bedf8f35ea1d400194b5a3b49914ebd04b5a31247959886f1967d062ceffae30993d34cd2f15d3942285a45c6930e2d4518f4ed0cc013ce853cc26aca021b0d diff --git a/dev-java/jama/jama-1.0.3-r1.ebuild b/dev-java/jama/jama-1.0.3-r1.ebuild deleted file mode 100644 index c3d99e6cda66..000000000000 --- a/dev-java/jama/jama-1.0.3-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -MY_PN="Jama" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="A Java Matrix Package" -HOMEPAGE="https://math.nist.gov/javanumerics/jama/" -SRC_URI="https://math.nist.gov/javanumerics/${PN}/${MY_P}.tar.gz -> ${P}.tar.gz" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="amd64 ~ppc64 x86" - -DEPEND=">=virtual/jdk-1.6" -RDEPEND=">=virtual/jre-1.6" - -S="${WORKDIR}" - -java_prepare() { - java-pkg_clean -} diff --git a/dev-java/jama/metadata.xml b/dev-java/jama/metadata.xml deleted file mode 100644 index 6021501589e0..000000000000 --- a/dev-java/jama/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - java@gentoo.org - Java - - diff --git a/dev-java/janino/Manifest b/dev-java/janino/Manifest deleted file mode 100644 index 60add465e00e..000000000000 --- a/dev-java/janino/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST janino-2.7.0.zip 992669 BLAKE2B cc9ba79d0fc9af5bbe73f167dee6d15619b40b75852fcc227eaf5399e427cde2aeca4b6ef3ff21f303b71dbc21f432cc3e844583cafce3cb073eec1a1498c45a SHA512 0fe0faf16c9d7c63ed14b156bbf75b1ce6deebda24fc0eb0176e96693de9877187694dfb39e748523329430332a36017b2d7d04b2b26ef0847fde7396106185f diff --git a/dev-java/janino/janino-2.7.0.ebuild b/dev-java/janino/janino-2.7.0.ebuild deleted file mode 100644 index 92ea09bfe8cc..000000000000 --- a/dev-java/janino/janino-2.7.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source examples" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="An embedded compiler for run-time compilation purposes" -HOMEPAGE="http://janino.net/" -SRC_URI="http://janino.net/download/${P}.zip" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" - -IUSE="" - -CDEPEND="dev-java/ant-core:0 - dev-java/unkrig-nullanalysis:0" -RDEPEND=">=virtual/jre-1.6 - ${CDEPEND}" -DEPEND=">=virtual/jdk-1.6 - app-arch/unzip - ${CDEPEND}" - -S="${WORKDIR}/${P}" -JAVA_SRC_DIR="src" -JAVA_GENTOO_CLASSPATH="ant-core,unkrig-nullanalysis" - -java_prepare() { - unzip "${S}"/janino-src.zip -d ${JAVA_SRC_DIR} && \ - unzip "${S}"/commons-compiler-src.zip -d ${JAVA_SRC_DIR} || die - find -iname '*.jar' -delete || die - - mkdir -p target/classes && \ - mv src/org.codehaus.commons.compiler.properties target/classes || die - - mkdir examples || die - mv src/org/codehaus/commons/compiler/samples/* examples/ || die -} - -src_install() { - java-pkg-simple_src_install - use examples && java-pkg_doexamples examples/ -} diff --git a/dev-java/jchardet/Manifest b/dev-java/jchardet/Manifest deleted file mode 100644 index 8542869adfc2..000000000000 --- a/dev-java/jchardet/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jchardet-1.1.zip 82782 BLAKE2B 08ceb3119615ab25a43030392ce0114a03b00ae7dd5488cbafac66f36e8963cc200f3c80afff6a99cf0a1f6bdfac8c22a27a5f0d2e4a217443916eda75752cac SHA512 3a6141b1783286adfc072075f46da8f6e719361425cb2cbcd1c4c4dd82a6ef834a9f6f1aad8126d663dcfa12ad20cc362566dc2095ea95e01bd95adfae20bc28 diff --git a/dev-java/jchardet/jchardet-1.1-r1.ebuild b/dev-java/jchardet/jchardet-1.1-r1.ebuild deleted file mode 100644 index d566bb21eb07..000000000000 --- a/dev-java/jchardet/jchardet-1.1-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="Java port of Mozilla's Automatic Charset Detection algorithm" -HOMEPAGE="http://jchardet.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${PN}/${P}.zip" - -LICENSE="MPL-1.1" -SLOT="0" -KEYWORDS="amd64 x86" - -IUSE="" - -RDEPEND=">=virtual/jre-1.6" -DEPEND=">=virtual/jdk-1.6 - app-arch/unzip" - -S="${WORKDIR}/${P}" -JAVA_SRC_DIR="src" - -java_prepare() { - java-pkg_clean -} diff --git a/dev-java/jchardet/metadata.xml b/dev-java/jchardet/metadata.xml deleted file mode 100644 index e9bb6ac81133..000000000000 --- a/dev-java/jchardet/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - java@gentoo.org - Java - - - jchardet - - diff --git a/dev-java/jcommon/Manifest b/dev-java/jcommon/Manifest deleted file mode 100644 index c7cdd4429d5e..000000000000 --- a/dev-java/jcommon/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jcommon-1.0.23.zip 1373666 BLAKE2B 23c87cd18339ea8f5991933c1430464ca5a408d4d4afb42847ee8c3b941d8fd7ed9695af74ec9ff7fc5867758b826d49b5def73923e893910efc0a0d77f26f75 SHA512 c358239da8b1ddf53ce94bebb00b6518456aa921dd3aa84fc6a23144d499f14a85ba421cd71f3880e8d10153a6ab816f54c1fa872a4ab694ce3c7b8d69bc2a4b diff --git a/dev-java/jcommon/jcommon-1.0.23.ebuild b/dev-java/jcommon/jcommon-1.0.23.ebuild deleted file mode 100644 index 208f734743d6..000000000000 --- a/dev-java/jcommon/jcommon-1.0.23.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 versionator - -MY_P=${PN}-$(replace_version_separator 3 -) -DESCRIPTION="A collection of useful classes used by JFreeChart, JFreeReport and others" -HOMEPAGE="http://www.jfree.org/jcommon" -SRC_URI="mirror://sourceforge/jfreechart/${MY_P}.zip" - -LICENSE="LGPL-2" -SLOT="1.0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="debug" - -DEPEND=" - >=virtual/jdk-1.6 - app-arch/unzip - test? ( dev-java/junit:4 )" -RDEPEND=">=virtual/jre-1.6" - -S="${WORKDIR}"/"${MY_P}" - -java_prepare() { - find "${WORKDIR}" -name '*.jar' -print -delete || die - - if ! use debug; then - antflags="-Dbuild.debug=false -Dbuild.optimize=true" - fi -} - -src_compile() { - if ! use debug; then - antflags="-Dbuild.debug=false -Dbuild.optimize=true" - fi - eant -f ant/build.xml compile $(use_doc) $antflags -} - -# No tests defined in build.xml. Let's turn them off. -# src_test() { -# java-pkg_jar-from --into lib junit-4 -# eant -f ant/build.xml compile-junit-tests -# ejunit4 -cp "./lib/${P}-junit.jar:$(java-pkg_getjars junit-4)" \ -# org.jfree.junit.JCommonTestSuite -# } - -src_install() { - java-pkg_newjar ${P}.jar ${PN}.jar - dodoc README.md - use doc && java-pkg_dojavadoc javadoc - use source && java-pkg_dosrc src/main/java/com src/main/java/org -} diff --git a/dev-java/jcommon/metadata.xml b/dev-java/jcommon/metadata.xml deleted file mode 100644 index 1cf7db5ba34e..000000000000 --- a/dev-java/jcommon/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - java@gentoo.org - Java - - - jfreechart - - diff --git a/dev-java/jdynamite/Manifest b/dev-java/jdynamite/Manifest deleted file mode 100644 index 9628e9f1490f..000000000000 --- a/dev-java/jdynamite/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jdynamite1_2.tar.gz 216501 BLAKE2B d945ad40e7b174722dc81b23f50f02c67e92f5ca274a0e6de48e80921d6f3081a4fc41b977ee457e0184d1c628e67702ef93da0440744fe392399e3f65265f14 SHA512 922dc3755fc673d228edcbb7d20084a7d2123b936b5c38514781bd0c5eeef4a6420a4ca7256fb3ca8796fb057b854c49c6bacd9ca76ac9fdb24b3d3404ea4aea diff --git a/dev-java/jdynamite/jdynamite-1.2-r1.ebuild b/dev-java/jdynamite/jdynamite-1.2-r1.ebuild deleted file mode 100644 index 484edc88acf1..000000000000 --- a/dev-java/jdynamite/jdynamite-1.2-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -MY_PV="${PV/./_}" -DESCRIPTION="Dynamic Template in Java" -HOMEPAGE="http://jdynamite.sourceforge.net/doc/jdynamite.html" -SRC_URI="mirror://sourceforge/${PN}/${PN}${MY_PV}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~x86" - -CDEPEND="dev-java/gnu-regexp:1" - -DEPEND=" - ${CDEPEND} - >=virtual/jdk-1.6" - -RDEPEND=" - ${CDEPEND} - >=virtual/jre-1.6" - -S="${WORKDIR}/${PN}${PV}" - -JAVA_GENTOO_CLASSPATH="gnu-regexp-1" -JAVA_SRC_DIR="src/cb/jdynamite" - -java_prepare() { - rm -fvr "${S}"/{lib/*,cb,src/gnu,build.xml} || die -} diff --git a/dev-java/jdynamite/metadata.xml b/dev-java/jdynamite/metadata.xml deleted file mode 100644 index be045c436226..000000000000 --- a/dev-java/jdynamite/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - java@gentoo.org - Java - - - jdynamite - - diff --git a/dev-java/jfreesvg/Manifest b/dev-java/jfreesvg/Manifest deleted file mode 100644 index e35008887dbc..000000000000 --- a/dev-java/jfreesvg/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST jfreesvg-2.1.zip 2042545 BLAKE2B 702ea55c6e51bca156a41c5e624452fdad8c1a5472c204cbf58f796134ed6027259abd0a48719bbb5f83f6891ab3aec5db58c8726b0275b894065148a07ec179 SHA512 6c1556c640e749778aeb969540db7724895fe2113a7ceea732793730301dd04a1beafef35249b27b75696271bcd67a59236a15c106f7717482561011a1a08bc4 -DIST jfreesvg-3.0.zip 1946062 BLAKE2B 58aa3c95db3a0472de1e2c184f1e8bc9aa72b86f508dd7d41f169f03c8f07380269a36d0a22a71378ab7c2d45427fb479994b907c4e25317794814da69f79d7c SHA512 7d0bdcbf56f0a7110058137d53e291c41e53040cbc19442989a0c6d28f5d6d3ed26ecedbfc947ce845b8a971729e2d784e8ce5a041f6f095ff626a3494a55715 diff --git a/dev-java/jfreesvg/jfreesvg-2.1-r1.ebuild b/dev-java/jfreesvg/jfreesvg-2.1-r1.ebuild deleted file mode 100644 index 948b007cad2d..000000000000 --- a/dev-java/jfreesvg/jfreesvg-2.1-r1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="JFreeSVG is a fast, light-weight, vector graphics library for the Java platform" -HOMEPAGE="http://www.jfree.org/jfreesvg/" -SRC_URI="mirror://sourceforge/jfreegraphics2d/${P}.zip" - -LICENSE="GPL-3" -SLOT="2.1" -KEYWORDS="amd64 x86" -IUSE="debug" - -DEPEND=" - app-arch/unzip - >=virtual/jdk-1.6" - -RDEPEND=" - >=virtual/jre-1.6" - -java_prepare() { - java-pkg_clean -} - -src_compile() { - if ! use debug; then - antflags="-Dbuild.debug=false -Dbuild.optimize=true" - fi - eant -f ant/build.xml compile $(use_doc) $antflags -} - -src_install() { - java-pkg_newjar "./lib/${P}.jar" ${PN}.jar - dodoc README.md - use doc && java-pkg_dojavadoc javadoc - use source && java-pkg_dosrc src/main/java -} diff --git a/dev-java/jfreesvg/jfreesvg-3.0.ebuild b/dev-java/jfreesvg/jfreesvg-3.0.ebuild deleted file mode 100644 index 2b3e2fef8407..000000000000 --- a/dev-java/jfreesvg/jfreesvg-3.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="JFreeSVG is a fast, light-weight, vector graphics library for the Java platform" -HOMEPAGE="http://www.jfree.org/jfreesvg/" -SRC_URI="mirror://sourceforge/jfreegraphics2d/${P}.zip" - -LICENSE="GPL-3" -SLOT="3.0" -KEYWORDS="amd64 x86" -IUSE="debug" - -DEPEND=">=virtual/jdk-1.6 - app-arch/unzip" -RDEPEND=">=virtual/jre-1.6" - -java_prepare() { - find "${WORKDIR}" -name '*.jar' -print -delete || die -} - -src_compile() { - if ! use debug; then - antflags="-Dbuild.debug=false -Dbuild.optimize=true" - fi - eant -f ant/build.xml compile $(use_doc) $antflags -} - -src_install() { - java-pkg_newjar "./lib/${P}.jar" ${PN}.jar - dodoc README.md - use doc && java-pkg_dojavadoc javadoc - use source && java-pkg_dosrc src/main/java -} diff --git a/dev-java/jfreesvg/metadata.xml b/dev-java/jfreesvg/metadata.xml deleted file mode 100644 index 143da0106709..000000000000 --- a/dev-java/jfreesvg/metadata.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - monsieurp@gentoo.org - - - java@gentoo.org - Java - - - - Enable debugging during compilation. - - - - jfreegraphics2d - - diff --git a/dev-java/jgrapht/Manifest b/dev-java/jgrapht/Manifest deleted file mode 100644 index b342056c1d04..000000000000 --- a/dev-java/jgrapht/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jgrapht-0.8.3.tar.gz 1268147 BLAKE2B 78b9c6a4787adead9c27a4cf74f9ce821bab1ff35a62828383d058d50e4b568118f54bb0270449d75268aaae4d4d47231349342d064d185b4906ceb6b19022d1 SHA512 964790dc74fea1d84f4a4cda4a253ede810725ee7173a2b376acb3f0e10baa2eefcbc38c76441600e0c282e0486243a464116cb803308eac134561181a2c28e6 diff --git a/dev-java/jgrapht/jgrapht-0.8.3.ebuild b/dev-java/jgrapht/jgrapht-0.8.3.ebuild deleted file mode 100644 index 1ea27d57362a..000000000000 --- a/dev-java/jgrapht/jgrapht-0.8.3.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 eutils - -DESCRIPTION="Graph library that is a simpler and faster alternative to JGraph" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -HOMEPAGE="http://jgrapht.sourceforge.net" - -KEYWORDS="amd64 x86" -SLOT="0" -LICENSE="LGPL-2.1" - -CDEPEND="dev-java/touchgraph-graphlayout:0 - dev-java/jgraph:0" - -DEPEND="${CDEPEND} - >=virtual/jdk-1.6 - test? ( dev-java/ant-junit:0 - dev-java/xmlunit:1 )" - -RDEPEND="${CDEPEND} - >=virtual/jre-1.6" - -JAVA_ANT_REWRITE_CLASSPATH="true" -EANT_GENTOO_CLASSPATH="touchgraph-graphlayout jgraph" -EANT_DOC_TARGET="javadoc" - -java_prepare() { - rm -rf "${S}/lib" || die - rm -v "${S}"/*.jar || die -} - -src_test() { - EANT_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH} xmlunit:1" ANT_TASKS="ant-junit" eant test -} - -src_install() { - java-pkg_newjar ${PN}*.jar || die - - dohtml README.html - use doc && java-pkg_dojavadoc javadoc - use source && java-pkg_dosrc src/org -} diff --git a/dev-java/jgrapht/metadata.xml b/dev-java/jgrapht/metadata.xml deleted file mode 100644 index e5ace7119853..000000000000 --- a/dev-java/jgrapht/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - java@gentoo.org - Java - - - jgrapht - - diff --git a/dev-java/jmdns/Manifest b/dev-java/jmdns/Manifest deleted file mode 100644 index d92a70ffe4bd..000000000000 --- a/dev-java/jmdns/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jmdns-3.4.1.tgz 665503 BLAKE2B b2ddf4216a39abf8b1fa9629005f83a5b6d3bbc6a2b85fcb716f4591d9435892977086276c1838ff4966d54bb501a589c4eff15948bae4ee7b8d0f035371fcb8 SHA512 06e01dc7ef9eabd1ba75be016d688294043a6eec53de40d20026587f2c3d82bd0b025efd9b662bbe28450940d277da0fbc30ef69293ca3e81426212d8e85d7fb diff --git a/dev-java/jmdns/jmdns-3.4.1-r1.ebuild b/dev-java/jmdns/jmdns-3.4.1-r1.ebuild deleted file mode 100644 index d33a9ab1c9b7..000000000000 --- a/dev-java/jmdns/jmdns-3.4.1-r1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -JAVA_PKG_IUSE="doc examples source test" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="JmDNS is an implementation of multi-cast DNS in Java" -SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" -HOMEPAGE="http://jmdns.sourceforge.net" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~ppc64 x86" -IUSE="" - -DEPEND=">=virtual/jdk-1.6" -RDEPEND=">=virtual/jre-1.6" - -JAVA_SRC_DIR="src" - -src_prepare() { - rm "${S}"/build.xml || die - find -name "*.jar" -delete || die - find "${JAVA_SRC_DIR}" -name "*Test.java" -delete || die -} diff --git a/dev-java/jmdns/metadata.xml b/dev-java/jmdns/metadata.xml deleted file mode 100644 index 9431d32002b5..000000000000 --- a/dev-java/jmdns/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - JmDNS is an implementation of multi-cast DNS in Java. - It supports service discovery and service registration. - It is fully interoperable with Apple's Rendezvous. - - - java@gentoo.org - Java - - - jmdns - - diff --git a/dev-java/jsr225/Manifest b/dev-java/jsr225/Manifest deleted file mode 100644 index c8500459e37d..000000000000 --- a/dev-java/jsr225/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jsr225-1.0.jar 58968 BLAKE2B 063cf9c372165a5382345e02cc4a6be9cc856533d18eca86c83c484034f97967e718f408ba701c1afccf8869f35980dba098d837b8cfb6cbe2d6b7adc9c70ef3 SHA512 c7f89904269bb09037599914cc4199b467f9d882b982eeeb7663776b61dbf6868c3aac8d576ca2d8999d0fe3378e3a3896776316c24039487d2501d6e2872712 diff --git a/dev-java/jsr225/jsr225-1.0.ebuild b/dev-java/jsr225/jsr225-1.0.ebuild deleted file mode 100644 index bef070caa856..000000000000 --- a/dev-java/jsr225/jsr225-1.0.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -JAVA_PKG_IUSE="source doc" - -inherit java-pkg-2 java-pkg-simple - -MY_PN="xqj-api" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="XQuery API for Java" -HOMEPAGE="http://jcp.org/en/jsr/detail?id=225" -SRC_URI="https://github.com/cfoster/${MY_P}.0/raw/master/javax/xml/xquery/${MY_PN}/${PV}/${MY_P}-sources.jar -> ${P}.jar" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0" -KEYWORDS="amd64 ppc64 x86" -IUSE="" - -RDEPEND=">=virtual/jre-1.6" -DEPEND=">=virtual/jdk-1.6" - -JAVA_ENCODING="ISO-8859-1" diff --git a/dev-java/jsr225/metadata.xml b/dev-java/jsr225/metadata.xml deleted file mode 100644 index 44f32b809032..000000000000 --- a/dev-java/jsr225/metadata.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - java@gentoo.org - - - cfoster/xqj-api-1.0.0 - - diff --git a/dev-java/jsr311-api/Manifest b/dev-java/jsr311-api/Manifest deleted file mode 100644 index 0c6118dea72f..000000000000 --- a/dev-java/jsr311-api/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jsr311-api-1.1.1-sources.jar 70022 BLAKE2B ca1c08bbdc256475adb89642d97ee278f0a26bd1191a29460a928a5148449207e41906eddc7a76bcfa8451cb241230ed8010e261ba8ac37ca0d260d6c4d1a3b9 SHA512 4f32eb290aa312794ae91b3b4e2baa72efbcf2036962c7223320f7f7e7cd9b5de10c4acb1c92277df946b12710e0699bc1d3ddd7459903c43107437c21cb5542 diff --git a/dev-java/jsr311-api/jsr311-api-1.1.1.ebuild b/dev-java/jsr311-api/jsr311-api-1.1.1.ebuild deleted file mode 100644 index 0a55c763d1c7..000000000000 --- a/dev-java/jsr311-api/jsr311-api-1.1.1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -JAVA_PKG_IUSE="source doc" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="JAX-RS: Java API for RESTful Web Services" -HOMEPAGE="http://jcp.org/en/jsr/detail?id=311" -SRC_URI="http://repo1.maven.org/maven2/javax/ws/rs/${PN}/${PV}/${P}-sources.jar" - -LICENSE="CDDL" -SLOT="0" -KEYWORDS="amd64 ppc64 x86" -IUSE="" - -RDEPEND=">=virtual/jre-1.6" -DEPEND=">=virtual/jdk-1.6" diff --git a/dev-java/jsr311-api/metadata.xml b/dev-java/jsr311-api/metadata.xml deleted file mode 100644 index df203e1ca173..000000000000 --- a/dev-java/jsr311-api/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - robbat2@gentoo.org - - - java@gentoo.org - Java - - diff --git a/dev-java/jsr322/Manifest b/dev-java/jsr322/Manifest deleted file mode 100644 index be702f795177..000000000000 --- a/dev-java/jsr322/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jsr322-1.5.jar 86462 BLAKE2B e39aa3573ec711c721ed1cdf6ba3a3d58eb267ff6e05222852ba0d424100dfd9048f39e3f22910e70da60c8cbfff7ecd552488122789ade09a21972d8373e589 SHA512 e96d54f8ac8279e53754a3950590382f7857abf26a0a97f7ad70dc72e0da66c11c537627a329bee943756ffbb4d96e47b0501663b51c3775fb1dd5e8bfe3a9ae diff --git a/dev-java/jsr322/jsr322-1.5.ebuild b/dev-java/jsr322/jsr322-1.5.ebuild deleted file mode 100644 index a6017011f867..000000000000 --- a/dev-java/jsr322/jsr322-1.5.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -JAVA_PKG_IUSE="source doc" - -MY_PN="connector-api" -MY_P="${MY_PN}-${PV}" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="Java EE Connector Architecture" -HOMEPAGE="http://jcp.org/en/jsr/detail?id=322" -SRC_URI="https://repo1.maven.org/maven2/javax/resource/${MY_PN}/${PV}/${MY_P}-sources.jar -> ${P}.jar" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ppc64 x86" -IUSE="" - -RDEPEND=">=virtual/jre-1.6" -DEPEND=">=virtual/jdk-1.6" diff --git a/dev-java/jsr322/metadata.xml b/dev-java/jsr322/metadata.xml deleted file mode 100644 index 6ef2d50cf07e..000000000000 --- a/dev-java/jsr322/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - java@gentoo.org - Java - - diff --git a/dev-java/jung/Manifest b/dev-java/jung/Manifest deleted file mode 100644 index 03c05931aa6d..000000000000 --- a/dev-java/jung/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jung-1.7.6.zip 8164548 BLAKE2B f7ae35557e531686ca56235a6087587dd520ab1336e1121871e1f6727d64818b078dedaf55b1cbd83c32a8c5e03af7926a75302033a7e21e07200ac8f5d729b5 SHA512 126f06e34a6db6cc55df2b1c1b52612ddece7db7a1fb45cbc91892122678b0b629eac00276fc501aeab558cf1f01a4e5e7f5d0392bfae977ca1950df2c3d063a diff --git a/dev-java/jung/jung-1.7.6-r1.ebuild b/dev-java/jung/jung-1.7.6-r1.ebuild deleted file mode 100644 index 529a37e622f1..000000000000 --- a/dev-java/jung/jung-1.7.6-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="The Java Universal Network/Graph Framework" -HOMEPAGE="http://jung.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.zip" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~ppc64 x86" -IUSE="" - -CDEPEND=" - dev-java/colt:0 - dev-java/commons-collections:0" - -RDEPEND=" - ${CDEPEND} - >=virtual/jre-1.6" - -DEPEND=" - ${CDEPEND} - app-arch/unzip - >=virtual/jdk-1.6" - -JAVA_SRC_DIR="src/edu" - -JAVA_GENTOO_CLASSPATH=" - colt - commons-collections -" - -java_prepare() { - java-pkg_clean -} diff --git a/dev-java/jung/metadata.xml b/dev-java/jung/metadata.xml deleted file mode 100644 index e0688a63f6b5..000000000000 --- a/dev-java/jung/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - java@gentoo.org - Java - - - A software library that provides a common and extendible language for - the modeling, analysis, and visualization of data that can be - represented as a graph or network. - - - jung - - diff --git a/dev-java/mojarra/Manifest b/dev-java/mojarra/Manifest deleted file mode 100644 index 01c094e85fef..000000000000 --- a/dev-java/mojarra/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST javax.faces-2.2.12-sources.jar 3105808 BLAKE2B 347daf8b44171a94e7ebf09c8ad22b1b20255355f589def6c537c49e37275605caf80f219be21dd8561597c94c15e6fe2cc0c0c713297ceaf8d6be669b6a6e78 SHA512 b2bc2ce38d72af38a4b2fdb5aec790600ca41a5d7f6340bf6be671a901c9fe664d50d9d13f021694e85e0e145a2031e2d8b61dd6d6ccebb544f2512a91ff670a diff --git a/dev-java/mojarra/files/mojarra-2.2.12-Util.java.patch b/dev-java/mojarra/files/mojarra-2.2.12-Util.java.patch deleted file mode 100644 index 23033f652969..000000000000 --- a/dev-java/mojarra/files/mojarra-2.2.12-Util.java.patch +++ /dev/null @@ -1,25 +0,0 @@ ---- src/com/sun/faces/util/Util.java.orig 2015-09-03 14:43:30.953486000 +0000 -+++ src/com/sun/faces/util/Util.java 2015-09-03 14:43:57.692486000 +0000 -@@ -354,13 +354,15 @@ - // as the same adapter in a standalone program works as one might expect. - // So, for now, if the classname starts with '[', then use Class.forName() - // to avoid CR 643419 and for all other cases, use ClassLoader.loadClass(). -- if (loader.getClass() == com.sun.faces.scripting.groovy.GroovyHelperImpl.MojarraGroovyClassLoader.class) { -- if (name.charAt(0) == '[') { -- return Class.forName(name, true, loader); -- } else { -- return loader.loadClass(name); -- } -- } -+ // -+ // Disable Groovy support. -+ // if (loader.getClass() == com.sun.faces.scripting.groovy.GroovyHelperImpl.MojarraGroovyClassLoader.class) { -+ // if (name.charAt(0) == '[') { -+ // return Class.forName(name, true, loader); -+ // } else { -+ // return loader.loadClass(name); -+ // } -+ // } - return Class.forName(name, true, loader); - } - diff --git a/dev-java/mojarra/metadata.xml b/dev-java/mojarra/metadata.xml deleted file mode 100644 index 6ef2d50cf07e..000000000000 --- a/dev-java/mojarra/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - java@gentoo.org - Java - - diff --git a/dev-java/mojarra/mojarra-2.2.12-r1.ebuild b/dev-java/mojarra/mojarra-2.2.12-r1.ebuild deleted file mode 100644 index 735e0e7b91bc..000000000000 --- a/dev-java/mojarra/mojarra-2.2.12-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="Project Mojarra - GlassFish's Implementation for JavaServer Faces API" -HOMEPAGE="https://javaserverfaces.dev.java.net/" -SRC_URI="https://maven.java.net/content/repositories/releases/org/glassfish/javax.faces/${PV}/javax.faces-${PV}-sources.jar" - -LICENSE="CDDL" -SLOT="2.2" -KEYWORDS="amd64 x86" - -IUSE="" - -CDEPEND="dev-java/glassfish-persistence:0 - dev-java/glassfish-ejb-api:0 - java-virtuals/servlet-api:3.0 - dev-java/tomcat-jstl-spec:0 - dev-java/tomcat-jstl-impl:0 - dev-java/validation-api:1.0 - dev-java/javax-inject:0 - dev-java/cdi-api:1.2" - -RDEPEND=">=virtual/jre-1.6 - ${CDEPEND}" -DEPEND=">=virtual/jdk-1.6 - app-arch/unzip - ${CDEPEND}" - -JAVA_SRC_DIR="src" - -JAVA_GENTOO_CLASSPATH=" - glassfish-persistence - glassfish-ejb-api - tomcat-jstl-spec - tomcat-jstl-impl - validation-api-1.0 - cdi-api-1.2 - servlet-api-3.0 - javax-inject -" - -java_prepare() { - mkdir src || die - mv * src - - # We *MUST* bump Groovy to 2.4 at some point - # to make this stuff work correctly. - rm -v src/com/sun/faces/scripting/groovy/GroovyHelperImpl.java || die - epatch "${FILESDIR}"/${P}-Util.java.patch -} diff --git a/dev-java/neuroph/Manifest b/dev-java/neuroph/Manifest deleted file mode 100644 index c5e02151f7a7..000000000000 --- a/dev-java/neuroph/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST neuroph_2.4_nb.zip 20050658 BLAKE2B a05e9feeb7c0dd8dd505cc9f85f33f40058b26521d9a80b00991ed84cb150240caedf6c00bcf4a7562f5559a6e5efeac7d150017a17c882e2119e6c3f4b35e10 SHA512 9c675f0d2194c5c1b822af8adffd8120f97962d22eb8e99561cfc78f2d87bb76e73d335c1c8ee5278964f3717bfde41c8ae91527e78efca63f5914529ae6d61a diff --git a/dev-java/neuroph/metadata.xml b/dev-java/neuroph/metadata.xml deleted file mode 100644 index 0d7bd436c24a..000000000000 --- a/dev-java/neuroph/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - java@gentoo.org - Java - - - neuroph - - diff --git a/dev-java/neuroph/neuroph-2.4.ebuild b/dev-java/neuroph/neuroph-2.4.ebuild deleted file mode 100644 index c2bd142ce233..000000000000 --- a/dev-java/neuroph/neuroph-2.4.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="A lightweight Java neural network framework" -HOMEPAGE="http://neuroph.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}_nb.zip" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND=">=virtual/jre-1.6" - -DEPEND=">=virtual/jdk-1.6 - app-arch/unzip" - -S="${WORKDIR}/${PN}_${PV}_nb/${PN}" - -java_prepare() { - find "${WORKDIR}" -iname '*.jar' -delete - find "${WORKDIR}" -iname '*.class' -delete -} - -EANT_BUILD_XML="nbbuild.xml" -EANT_BUILD_TARGET="jar" -EANT_DOC_TARGET="javadoc" -EANT_EXTRA_ARGS="-Djavadoc.additionalparam=\"\"" - -src_install() { - java-pkg_dojar "dist/${PN}.jar" - use doc && java-pkg_dojavadoc dist/javadoc - use source && java-pkg_dosrc src -} diff --git a/dev-java/ognl/Manifest b/dev-java/ognl/Manifest deleted file mode 100644 index 96f282ad438a..000000000000 --- a/dev-java/ognl/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST OGNL_3_0_8.tar.gz 3564389 BLAKE2B c39c5d4e51727d0a0b12b3908953ff01a9dd6458a5d6b6b6c654a860e4c0d1f4414fb3b79288c4ef0a86fdcdcbf3666c9af4c05a39ba85ff593c021319e6fb68 SHA512 79ca457077f344da16677e56f8e0ae809d2af85015e1c4bc17a3eef4dd25c01738fdbcac8a9397b83251b48164404df161d60e20d43868e1ff32e9bb388ef4b6 -DIST osbuild.xml 5939 BLAKE2B 7d34f6713a53cddc17d526af7bf30fe03c13897fad4e02b87454811a1943f7aca03abd9fd889ed3566484252d3076007595fd4c85a0c9b3fea823b5ab18acfda SHA512 6b66b7b27073fd6b707b71fb2da7017602edd85de52e767ecb8d8931fdd96811b04d9ec0ac9ec1cb32daf03d43610f760471959cf7211b1921a92d5f5a070416 diff --git a/dev-java/ognl/metadata.xml b/dev-java/ognl/metadata.xml deleted file mode 100644 index 4976911c999e..000000000000 --- a/dev-java/ognl/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - java@gentoo.org - Java - - - jkuhnert/ognl - - diff --git a/dev-java/ognl/ognl-3.0.8.ebuild b/dev-java/ognl/ognl-3.0.8.ebuild deleted file mode 100644 index c3d11389846b..000000000000 --- a/dev-java/ognl/ognl-3.0.8.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="Object-Graph Navigation Language: get/set properties of objects" -HOMEPAGE="http://www.ognl.org/" -SRC_URI="https://github.com/jkuhnert/ognl/archive/OGNL_${PV//./_}.tar.gz - https://ognl.dev.java.net/source/browse/*checkout*/ognl/osbuild.xml" - -LICENSE="Apache-1.1" -SLOT="3.0" -KEYWORDS="amd64 x86" - -CDEPEND="dev-java/javassist:3" - -RDEPEND=" - ${CDEPEND} - >=virtual/jre-1.6" - -DEPEND=" - ${CDEPEND} - app-arch/unzip - >=virtual/jdk-1.6" - -S="${WORKDIR}/${PN}-OGNL_${PV//./_}" - -java_prepare() { - java-pkg_clean - - cp "${DISTDIR}/osbuild.xml" "${S}/" || die - - sed "s/\(name=\"compile.version\" value=\"\)1.3\"/\1$(java-pkg_get-source)\"/" \ - -i osbuild.xml || die - - cd lib/build || die - - java-pkg_jar-from javassist-3 -} - -EANT_DOC_TARGET="javadocs" - -src_install() { - java-pkg_newjar build/ognl-2.7.2.jar "${PN}.jar" - - use doc && java-pkg_dohtml -r dist/docs/api - use source && java-pkg_dosrc src/java/* -} diff --git a/dev-java/piccolo/Manifest b/dev-java/piccolo/Manifest deleted file mode 100644 index 845dd5876b14..000000000000 --- a/dev-java/piccolo/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST piccolo-1.04-src.zip 252316 BLAKE2B 04e0ba00f0b79880a100a1b904d06715a793f891af9d59ffae15579c59fd5ec2ef313241cd9d28975244bb08f2ca00b586e3415d526d47444ab84e99078c0399 SHA512 fa0809e8d9eb43713144bdf193975c62344269bc1b24d12159c98c98776de4633c95234bbbb023d445e00786903fcd9b49d37053f03d8d6a1e2c84b93668f947 diff --git a/dev-java/piccolo/metadata.xml b/dev-java/piccolo/metadata.xml deleted file mode 100644 index 37a940d0a14e..000000000000 --- a/dev-java/piccolo/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - java@gentoo.org - Java - - - piccolo - - diff --git a/dev-java/piccolo/piccolo-1.04.ebuild b/dev-java/piccolo/piccolo-1.04.ebuild deleted file mode 100644 index c8224f463a1c..000000000000 --- a/dev-java/piccolo/piccolo-1.04.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="A small, extremely fast XML parser for Java" -HOMEPAGE="http://piccolo.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~x86" - -RDEPEND=">=virtual/jre-1.6" -DEPEND=">=virtual/jdk-1.6 - app-arch/unzip" - -EANT_BUILD_TARGET="build" - -src_install() { - java-pkg_dojar lib/Piccolo.jar - - dodoc README.txt - use doc && java-pkg_dojavadoc doc/javadoc - - use source && java-pkg_dosrc src/* -} diff --git a/dev-java/portletapi/Manifest b/dev-java/portletapi/Manifest deleted file mode 100644 index 78189fec6152..000000000000 --- a/dev-java/portletapi/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST portletapi-1.0.tar.gz 212229 BLAKE2B b1efcb7f78d056e6c4c9ed26bd6cbedd0ebcf0e6cc164f862bf3acd6e428feb8f373b3d313aa1cd934edbe9e5af98219bdcf4d173eafb6fc4b09bc5fdd1710bc SHA512 e47da8672be075036989774c90d7a512f7354e090eab3685af90295f07c2842d37a858665a5a2aa3b378e0172c65cbc520180f89e4f08673baeaf19105c0661b -DIST portletapi-2.0.jar 124636 BLAKE2B f885bf1d042d0eb3230ab2588aa673dfc4fb4da7a8bca577abdac0eb31e9298c76b0600c1a7266d6ec8b072e4b89cafb08c60f4f1de0f5f878bef412a168ff0f SHA512 cf02030850d746b19b85bb3aa204fa7602af47fdda70d5be4c317dea01939abce96915d08186ac876b3081cd8023687e9c4bcef6f4f9a28e8a3456eaa56c8d8f diff --git a/dev-java/portletapi/portletapi-1.0-r1.ebuild b/dev-java/portletapi/portletapi-1.0-r1.ebuild deleted file mode 100644 index 6ddc04673e50..000000000000 --- a/dev-java/portletapi/portletapi-1.0-r1.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="Portlet API implementation of JSR 168" -HOMEPAGE="http://portals.apache.org/jetspeed-2/" -SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="1" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND=" - >=virtual/jre-1.6" - -DEPEND=" - >=virtual/jdk-1.6" diff --git a/dev-java/portletapi/portletapi-2.0-r1.ebuild b/dev-java/portletapi/portletapi-2.0-r1.ebuild deleted file mode 100644 index c4c81fe914f3..000000000000 --- a/dev-java/portletapi/portletapi-2.0-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -MY_PN="portlet-api" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Portlet API 2.0 developed by the Java Community Process JSR-286" -HOMEPAGE="https://jcp.org/en/jsr/detail?id=286" -SRC_URI="https://repo1.maven.org/maven2/javax/portlet/${MY_PN}/${PV}/${MY_P}-sources.jar -> ${P}.jar" - -LICENSE="Apache-2.0" -SLOT="2.0" -KEYWORDS="amd64 x86" - -IUSE="" - -CDEPEND="dev-java/tomcat-servlet-api:3.0" - -RDEPEND=" - ${CDEPEND} - >=virtual/jre-1.6" - -DEPEND=" - ${CDEPEND} - >=virtual/jdk-1.6 - source? ( app-arch/zip )" - -JAVA_ENCODING="ISO-8859-1" -JAVA_SRC_DIR="javax" -JAVA_GENTOO_CLASSPATH="tomcat-servlet-api-3.0" diff --git a/dev-java/vldocking/Manifest b/dev-java/vldocking/Manifest deleted file mode 100644 index 08ae384e2342..000000000000 --- a/dev-java/vldocking/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST vldocking-3.0.5.zip 1734159 BLAKE2B 98ff048558b2c520192b83e56c4900072761c8e0f80d594b2166b10249cf6ba572102070914ca417879609f9b9ebb75a5fbd6d460859f131c2f4a403058d8f5d SHA512 a9943a767baa68b8cd8a75fad1e6e05e6f0083551c32c9af2b20258e2fe1fcc181a7700cc668b862e0cc2b04392a987ecfb92bf5203f273c72a8e2a2f4a72cd8 diff --git a/dev-java/vldocking/metadata.xml b/dev-java/vldocking/metadata.xml deleted file mode 100644 index 0f197b34ca79..000000000000 --- a/dev-java/vldocking/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - cmadsen/vldocking - - - monsieurp@gentoo.org - Patrice Clement - - - java@gentoo.org - Java - - diff --git a/dev-java/vldocking/vldocking-3.0.5.ebuild b/dev-java/vldocking/vldocking-3.0.5.ebuild deleted file mode 100644 index 75e885bd5de0..000000000000 --- a/dev-java/vldocking/vldocking-3.0.5.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="Docking solution for Java Swing" -HOMEPAGE="https://github.com/cmadsen/vldocking" -SRC_URI="https://github.com/cmadsen/${PN}/archive/${P}.zip" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -CDEPEND=" - dev-java/slf4j-log4j12:0 - dev-java/slf4j-api:0" - -RDEPEND=" - ${CDEPEND} - >=virtual/jre-1.6" - -DEPEND=" - ${CDEPEND} - app-arch/unzip - >=virtual/jdk-1.6" - -JAVA_GENTOO_CLASSPATH=" - slf4j-log4j12 - slf4j-api -" - -java_prepare() { - java-pkg_clean -} diff --git a/dev-java/ws-commons-util/Manifest b/dev-java/ws-commons-util/Manifest deleted file mode 100644 index 99edcef18307..000000000000 --- a/dev-java/ws-commons-util/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ws-commons-util-1.0.1-src.tar.gz 24838 BLAKE2B ca39646a40513eaf1905cd910779a045b24f0b4901c1818a10367f7326a7a50122d031a9b91ab6884baae15388e1e91903f21b3bb23cabb09e3f0dfe4738ca0d SHA512 4eefe61daf462105ca8cfb8ec42ef42ef414d1426b201da044fe9a72e9ab7d3fd34bd80d19d8f6220f1f91d9de7cab3d8d2dec4c267784ba3d3bbd69a1c62c4c diff --git a/dev-java/ws-commons-util/metadata.xml b/dev-java/ws-commons-util/metadata.xml deleted file mode 100644 index 4221e170cbc0..000000000000 --- a/dev-java/ws-commons-util/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - java@gentoo.org - Java - - diff --git a/dev-java/ws-commons-util/ws-commons-util-1.0.1-r1.ebuild b/dev-java/ws-commons-util/ws-commons-util-1.0.1-r1.ebuild deleted file mode 100644 index 3e6b2e2c676e..000000000000 --- a/dev-java/ws-commons-util/ws-commons-util-1.0.1-r1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -JAVA_PKG_IUSE="source doc" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="Utility classes that allow high performance XML processing based on SAX" -HOMEPAGE="http://ws.apache.org/commons/util/" -SRC_URI="mirror://apache/ws/commons/util/sources/${P}-src.tar.gz" -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~ppc64 x86" -IUSE="" - -DEPEND=">=virtual/jdk-1.6" -RDEPEND=">=virtual/jre-1.6" - -JAVA_SRC_DIR="src" - -java_prepare() { - mv "${S}"/"${P}"/src . || die - rm -rf "${S}"/"${P}" src/test || die -} diff --git a/dev-java/xml-security/Manifest b/dev-java/xml-security/Manifest deleted file mode 100644 index 3d13ae007c69..000000000000 --- a/dev-java/xml-security/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST xml-security-bin-1_5_7.zip 9164667 BLAKE2B ea0756f745c27767634bafaae1b3584ba6843cd9d6fe4d9c7cb080058015a576dc8a3f117d32ed3b139a42373057d7dc4ad33f0e25db4abbbaf140a0cc115e01 SHA512 ae8e538fe7c90013a89d139358efc06d8921b1b0050a686dcacd123f5a8a8f100be163e88fef59998ea0ba27ebe9855f06d1f33b1ac92fa3f31acbce9934bd36 diff --git a/dev-java/xml-security/files/1.5.7-build.xml.patch b/dev-java/xml-security/files/1.5.7-build.xml.patch deleted file mode 100644 index 294c059574d6..000000000000 --- a/dev-java/xml-security/files/1.5.7-build.xml.patch +++ /dev/null @@ -1,38 +0,0 @@ -diff --git a/xml-security-1_5_5/build.xml b/xml-security-1_5_5/build.xml -index d959d67..d91f98e 100644 ---- a/xml-security-1_5_5/build.xml -+++ b/xml-security-1_5_5/build.xml -@@ -668,7 +668,7 @@ - - - -+ depends="manifest,build.src"> - - - - - -- -- -- -- -- -- -- -- -- -- - - - - - - - java@gentoo.org - Java - - diff --git a/dev-java/xml-security/xml-security-1.5.7-r1.ebuild b/dev-java/xml-security/xml-security-1.5.7-r1.ebuild deleted file mode 100644 index 0754ce115bfb..000000000000 --- a/dev-java/xml-security/xml-security-1.5.7-r1.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 - -MY_PV=${PV//./_} -DESCRIPTION="An implementation of the primary security standards for XML" -HOMEPAGE="http://santuario.apache.org/" -SRC_URI="mirror://apache/santuario/java-library/${MY_PV}/${PN}-bin-${MY_PV}.zip" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 x86" - -IUSE="" - -CDEPEND=" - dev-java/commons-logging:0 - dev-java/xalan:0 -" - -RDEPEND="${CDEPEND} - >=virtual/jre-1.6" -DEPEND="${CDEPEND} - app-arch/unzip - test? ( - dev-java/ant-junit:0 - dev-java/junit:4 - ) - >=virtual/jdk-1.6" - -S="${WORKDIR}/${PN}-${MY_PV}" - -JAVA_ANT_REWRITE_CLASSPATH="yes" -EANT_GENTOO_CLASSPATH="commons-logging,xalan" -EANT_GENTOO_CLASSPATH_EXTRA="${S}"/build/xmlsec-${PV}.jar -EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},junit-4" -EANT_TEST_TARGET="build.test test" -WANT_ANT_TASKS="ant-junit" - -# Buggy tests. -JAVA_RM_FILES=( - src/test/java/org/apache/xml/security/test/encryption/BaltimoreEncTest.java - src/test/java/org/apache/xml/security/test/encryption/XMLCipherTest.java - src/test/java/org/apache/xml/security/test/utils/OldApiTest.java -) - -java_prepare() { - epatch "${FILESDIR}/${PV}-build.xml.patch" - find "${S}" -name "*.jar" -delete || die -} - -src_install() { - java-pkg_newjar "${S}"/build/xmlsec-${PV}.jar ${PN}.jar - - use source && java-pkg_dosrc "${S}"/src/main/java/* - use doc && java-pkg_dojavadoc "${S}"/build/docs/html/javadoc -} - -src_test() { - java-pkg-2_src_test -} diff --git a/dev-java/xmpcore/Manifest b/dev-java/xmpcore/Manifest deleted file mode 100644 index db28d6ff5619..000000000000 --- a/dev-java/xmpcore/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST xmpcore-5.1.2-sources.jar 136918 BLAKE2B 521a2ae6093a51a0845ede16e56d4f9e2525ff7c7ad2c877ecd08a6673befd76002a1c35c635966d8664a2ef601f0d10a1e8a9562dc4c0564d4eaf48ea27cac0 SHA512 ad4c78a68f1d32a358b79bfb4acacbcc56eaa294af5afbb29eb916a1a488dba547e72c4d94809222fae63fd7c66940d9ce7cb6c06598f9c7b8691d0feaabdad8 diff --git a/dev-java/xmpcore/metadata.xml b/dev-java/xmpcore/metadata.xml deleted file mode 100644 index 4221e170cbc0..000000000000 --- a/dev-java/xmpcore/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - java@gentoo.org - Java - - diff --git a/dev-java/xmpcore/xmpcore-5.1.2.ebuild b/dev-java/xmpcore/xmpcore-5.1.2.ebuild deleted file mode 100644 index bc4a6b95771f..000000000000 --- a/dev-java/xmpcore/xmpcore-5.1.2.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="Java library based on the Adobe C++ XMPCore library with a similar API" -HOMEPAGE="https://www.adobe.com/devnet/xmp.html" -SRC_URI="http://central.maven.org/maven2/com/adobe/xmp/${PN}/${PV}/${P}-sources.jar" -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" - -DEPEND=">=virtual/jdk-1.6" -RDEPEND=">=virtual/jre-1.6" diff --git a/dev-lang/Manifest.gz b/dev-lang/Manifest.gz index d6353de13645..ab2cbc8f1f96 100644 Binary files a/dev-lang/Manifest.gz and b/dev-lang/Manifest.gz differ diff --git a/dev-lang/gdl/gdl-1.0.0_rc3.ebuild b/dev-lang/gdl/gdl-1.0.0_rc3-r1.ebuild similarity index 98% rename from dev-lang/gdl/gdl-1.0.0_rc3.ebuild rename to dev-lang/gdl/gdl-1.0.0_rc3-r1.ebuild index f87b63dfef64..8ad53af5da65 100644 --- a/dev-lang/gdl/gdl-1.0.0_rc3.ebuild +++ b/dev-lang/gdl/gdl-1.0.0_rc3-r1.ebuild @@ -45,8 +45,8 @@ RDEPEND=" !graphicsmagick? ( media-gfx/imagemagick:=[cxx] ) graphicsmagick? ( media-gfx/graphicsmagick:=[cxx] ) ) - netcdf? ( sci-libs/netcdf ) - proj? ( sci-libs/proj ) + netcdf? ( sci-libs/netcdf:= ) + proj? ( sci-libs/proj:= ) postscript? ( dev-libs/pslib ) python? ( ${PYTHON_DEPS} diff --git a/dev-lang/mujs/mujs-1.2.0.ebuild b/dev-lang/mujs/mujs-1.2.0.ebuild index e25bff9dec49..53c9edbaa46a 100644 --- a/dev-lang/mujs/mujs-1.2.0.ebuild +++ b/dev-lang/mujs/mujs-1.2.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit flag-o-matic toolchain-funcs +inherit flag-o-matic multilib toolchain-funcs DESCRIPTION="An embeddable JavaScript interpreter written in C" HOMEPAGE="https://mujs.com/ https://github.com/ccxvii/mujs" @@ -55,14 +55,7 @@ src_install() { prefix=/usr \ install-shared - # TODO: Tidy up this logic, improve readability - if [[ ${CHOST} == *-darwin* ]] ; then - mv -v "${ED}"/usr/$(get_libdir)/lib${PN}.so "${ED}"/usr/$(get_libdir)/lib${PN}.${PV}.dylib || die - dosym lib${PN}.${PV}.dylib /usr/$(get_libdir)/lib${PN}.dylib - dosym lib${PN}.${PV}.dylib /usr/$(get_libdir)/lib${PN}.${PV:0:1}.dylib - else - mv -v "${ED}"/usr/$(get_libdir)/lib${PN}.so{,.${PV}} || die - dosym lib${PN}.so.${PV} /usr/$(get_libdir)/lib${PN}.so - dosym lib${PN}.so.${PV} /usr/$(get_libdir)/lib${PN}.so.${PV:0:1} - fi + mv -v "${ED}"/usr/$(get_libdir)/lib${PN}$(get_libname) "${ED}"/usr/$(get_libdir)/lib${PN}$(get_libname ${PV}) || die "Failed adding version suffix to mujs shared library" + dosym lib${PN}$(get_libname ${PV}) /usr/$(get_libdir)/lib${PN}$(get_libname) + dosym lib${PN}$(get_libname ${PV}) /usr/$(get_libdir)/lib${PN}$(get_libname ${PV:0:1}) } diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index c15114575fe0..bfe99de7e6c6 100644 Binary files a/dev-libs/Manifest.gz and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/apr/apr-1.6.3-r6.ebuild b/dev-libs/apr/apr-1.6.3-r7.ebuild similarity index 99% rename from dev-libs/apr/apr-1.6.3-r6.ebuild rename to dev-libs/apr/apr-1.6.3-r7.ebuild index 828c9a2b2e72..c75f62684321 100644 --- a/dev-libs/apr/apr-1.6.3-r6.ebuild +++ b/dev-libs/apr/apr-1.6.3-r7.ebuild @@ -112,7 +112,7 @@ src_configure() { ;; esac else - if use ppc || use sparc; then + if use ppc || use sparc || use mips; then # Avoid libapr containing undefined references (underlinked) # undefined reference to `__sync_val_compare_and_swap_8' # (May be possible to fix via libatomic linkage in future?) diff --git a/dev-libs/apr/apr-1.6.5-r3.ebuild b/dev-libs/apr/apr-1.6.5-r4.ebuild similarity index 99% rename from dev-libs/apr/apr-1.6.5-r3.ebuild rename to dev-libs/apr/apr-1.6.5-r4.ebuild index 725836e73499..23b1b8827b30 100644 --- a/dev-libs/apr/apr-1.6.5-r3.ebuild +++ b/dev-libs/apr/apr-1.6.5-r4.ebuild @@ -111,7 +111,7 @@ src_configure() { ;; esac else - if use ppc || use sparc; then + if use ppc || use sparc || use mips; then # Avoid libapr containing undefined references (underlinked) # undefined reference to `__sync_val_compare_and_swap_8' # (May be possible to fix via libatomic linkage in future?) diff --git a/dev-libs/apr/apr-1.7.0-r3.ebuild b/dev-libs/apr/apr-1.7.0-r4.ebuild similarity index 99% rename from dev-libs/apr/apr-1.7.0-r3.ebuild rename to dev-libs/apr/apr-1.7.0-r4.ebuild index 70e3bd4db4b1..f8831c4a5562 100644 --- a/dev-libs/apr/apr-1.7.0-r3.ebuild +++ b/dev-libs/apr/apr-1.7.0-r4.ebuild @@ -112,7 +112,7 @@ src_configure() { ;; esac else - if use ppc || use sparc; then + if use ppc || use sparc || use mips; then # Avoid libapr containing undefined references (underlinked) # undefined reference to `__sync_val_compare_and_swap_8' # (May be possible to fix via libatomic linkage in future?) diff --git a/dev-libs/libptytty/libptytty-2.0.ebuild b/dev-libs/libptytty/libptytty-2.0.ebuild index 69ee5277a255..91430de39a37 100644 --- a/dev-libs/libptytty/libptytty-2.0.ebuild +++ b/dev-libs/libptytty/libptytty-2.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="http://dist.schmorp.de/${PN}/${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86" IUSE="elibc_musl" PATCHES=( diff --git a/dev-php/Manifest.gz b/dev-php/Manifest.gz index ed9dd858fc68..db4bb031c041 100644 Binary files a/dev-php/Manifest.gz and b/dev-php/Manifest.gz differ diff --git a/dev-php/jpgraph/Manifest b/dev-php/jpgraph/Manifest index f234700eea72..3e079e09a2b1 100644 --- a/dev-php/jpgraph/Manifest +++ b/dev-php/jpgraph/Manifest @@ -1,2 +1,3 @@ DIST jpgraph-4.0.2.tar.gz 13298314 BLAKE2B 46506f5a3f331157329c92f61f4843faa7d0774fbdb0cafe58a5609d1c9e9c2f73d4634ffd09cad3c874a45b2ac8658271a343b5e0dfb673f810bf7af6083189 SHA512 db1877c09c13a26d24ef7df4aae50799f55c6d72ca0cdb0b8d8c05928c1bc860f8a86eb52a5fb05bdc1c07574931825baa2989f006e9a4cc57e60913e8b67a3e DIST jpgraph-4.2.0.tar.gz 13298982 BLAKE2B b5fab9754239f78fbdfebd84872b824400d27fce89a80d82028d2521f7d64ada79efe4eb9c5460f56d882e827f5930eb10a57c3b41a81865dd618b9baf628cf9 SHA512 f0f164663f2e0fca5b827d89c57aaa144765a987ca4ebb82f18102f8cb80057c7f7639b8faae5d6d6ce459257bdfa609d2df6ffe648a7334c58c87ddfe86c334 +DIST jpgraph-4.3.5.tar.gz 13293351 BLAKE2B 246d2446b02b0f01fd8e3960d645897c21604c726541177aa5573620b63ab9a1f5d5318309e1c3ffd159257f02c0d1c7a7b8b563758abeea18161327a4939668 SHA512 7e826147f8f551171463d15add17f65587e879d6e666fcec9872367b7bdea77b2b1fd6b0af03984680d23dfe7c1e21b4f5d2cfd9a45a60c52b62812a5c1ab7ac diff --git a/dev-php/jpgraph/jpgraph-4.3.5.ebuild b/dev-php/jpgraph/jpgraph-4.3.5.ebuild new file mode 100644 index 000000000000..534e39c0355d --- /dev/null +++ b/dev-php/jpgraph/jpgraph-4.3.5.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Object-oriented graphing library for PHP" +HOMEPAGE="http://jpgraph.net/" +# Upstream didn't have a stable download URL when this was packaged. +SRC_URI="https://dev.gentoo.org/~grknight/distfiles/${P}.tar.gz" +LICENSE="QPL-1.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="truetype examples" + +DEPEND="" +RDEPEND="truetype? ( media-fonts/corefonts ) + dev-lang/php[gd,truetype?]" + +src_prepare() { + default + + # The DejaVu fonts are now bundled with the library and don't need + # to be found in TTF_DIR. Since most of the fonts supported by + # JpGraph are corefonts, we point the sole TTF_DIR towards them for + # maximum impact. Why not apply the patch unconditionally? We want + # to avoid a situation where TTF fonts appear to work, but then + # break without warning when the user e.g. removes corefonts. By + # applying the patch conditionally, we ensure a dependency on + # media-fonts/corefonts before anything will work. + use truetype && eapply "${FILESDIR}/gentoo_ttf_dir.patch" + + # Some of the documentation and examples are shipped in the "src" + # directory. We want them outside of that tree so that we can simply + # call doins recursively on "src". First, rename the existing "docs" + # directory which contains the HTML manual and class reference. + mv docs html || die 'failed to rename "docs" directory' + mv src/README ./ || die 'failed to relocate the README' + mv src/Examples ./examples || die 'failed to relocate the examples' + + # These are present (duplicated) in the other Examples directory, + # and don't work anyway. + rm -r src/barcode || die 'failed to remove some barcode examples' + + # We'll also want to install the config file to /etc, since it may + # need to be edited by the user. + mv src/jpg-config.inc.php ./ || die 'failed to relocate the config file' +} + +src_install() { + dodoc README + dodoc -r html + use examples && dodoc -r examples + + insinto "/usr/share/php/${PN}" + doins -r src/* + + insinto /etc + doins jpg-config.inc.php + # Create a symlink for the config file, because the library will only + # look for it in its own source tree (not in /etc where we've put it). + dosym ../../../../etc/jpg-config.inc.php "/usr/share/php/${PN}/jpg-config.inc.php" +} diff --git a/dev-php/jpgraph/metadata.xml b/dev-php/jpgraph/metadata.xml index 222c77f3742a..666e6402df14 100644 --- a/dev-php/jpgraph/metadata.xml +++ b/dev-php/jpgraph/metadata.xml @@ -5,4 +5,5 @@ php-bugs@gentoo.org PHP + diff --git a/dev-python/Faker/Faker-9.8.1.ebuild b/dev-python/Faker/Faker-11.0.0.ebuild similarity index 100% rename from dev-python/Faker/Faker-9.8.1.ebuild rename to dev-python/Faker/Faker-11.0.0.ebuild diff --git a/dev-python/Faker/Faker-9.8.2.ebuild b/dev-python/Faker/Faker-9.8.2.ebuild deleted file mode 100644 index 12e618b6e887..000000000000 --- a/dev-python/Faker/Faker-9.8.2.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="A Python package that generates fake data for you" -HOMEPAGE="https://github.com/joke2k/faker" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - >=dev-python/python-dateutil-2.4.2[${PYTHON_USEDEP}] - >=dev-python/text-unidecode-1.3[${PYTHON_USEDEP}] - !dev-ruby/faker" -BDEPEND=" - test? ( - dev-python/freezegun[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP},tiff] - dev-python/random2[${PYTHON_USEDEP}] - dev-python/validators[${PYTHON_USEDEP}] - )" - -distutils_enable_tests pytest diff --git a/dev-python/Faker/Faker-9.8.3.ebuild b/dev-python/Faker/Faker-9.8.3.ebuild deleted file mode 100644 index 12e618b6e887..000000000000 --- a/dev-python/Faker/Faker-9.8.3.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="A Python package that generates fake data for you" -HOMEPAGE="https://github.com/joke2k/faker" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - >=dev-python/python-dateutil-2.4.2[${PYTHON_USEDEP}] - >=dev-python/text-unidecode-1.3[${PYTHON_USEDEP}] - !dev-ruby/faker" -BDEPEND=" - test? ( - dev-python/freezegun[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP},tiff] - dev-python/random2[${PYTHON_USEDEP}] - dev-python/validators[${PYTHON_USEDEP}] - )" - -distutils_enable_tests pytest diff --git a/dev-python/Faker/Faker-9.8.4.ebuild b/dev-python/Faker/Faker-9.8.4.ebuild deleted file mode 100644 index 12e618b6e887..000000000000 --- a/dev-python/Faker/Faker-9.8.4.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="A Python package that generates fake data for you" -HOMEPAGE="https://github.com/joke2k/faker" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - >=dev-python/python-dateutil-2.4.2[${PYTHON_USEDEP}] - >=dev-python/text-unidecode-1.3[${PYTHON_USEDEP}] - !dev-ruby/faker" -BDEPEND=" - test? ( - dev-python/freezegun[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP},tiff] - dev-python/random2[${PYTHON_USEDEP}] - dev-python/validators[${PYTHON_USEDEP}] - )" - -distutils_enable_tests pytest diff --git a/dev-python/Faker/Manifest b/dev-python/Faker/Manifest index 902644a98160..4cbd7db26c68 100644 --- a/dev-python/Faker/Manifest +++ b/dev-python/Faker/Manifest @@ -1,5 +1,2 @@ DIST Faker-10.0.0.tar.gz 1198872 BLAKE2B 60e4f34a597ca11b0699c330f6cdb0f7f387bb6c54d769513f8e091d00242c7ba4e62fa6b3411ad313a4713e9311b729fb6068acfc4a02b66f07c66656677f33 SHA512 0c22b18d16815ee37d2ea79b4142100479c7b9b9f169817dc9e0fe39495f0646e8d61d704ddba7d36eefb6cb3fb744d179a57216abb15c15ee357c8b12b8b5a4 -DIST Faker-9.8.1.tar.gz 1198229 BLAKE2B 8877a9da582fcd81b8b374c344343c9ba4a21d1cd0160694300030b2ace4b7b517fb8a62c1f0ffeacf3a950703b882ff5b484d54fdabc5b9c8b49658c45d421f SHA512 a93d625311358100c7a1dfe33dfda64b5890dd25e8d6e3dd095329ab2156c76abf3f00fe6b2c335316bbe3f42322adda2bcae3a9a312ddf4778d8143796667a0 -DIST Faker-9.8.2.tar.gz 1198270 BLAKE2B 1a7ea02b43afe0ff494ee39dac4259e9eb67fa3230b9b5744a96b4913ac471ed3ccf29f91b2db02124dfefc232a9fae05ce7ddc6e9fd0cbf27bd94468a7702b6 SHA512 37a35a02ea81a871e77378ceecdd65a63c97dd82ba9aec04c2a8f7a827e5bdb264a6ed0927c534a67bf4b06886dcb2a98a188798fe7c860135deb8d6aa6e36e3 -DIST Faker-9.8.3.tar.gz 1192380 BLAKE2B 90acea6d0d78307bc9e1e0d44ec2a1761f1039fdd0a3aad9ac495c139b87a055e8b43dc44bd7722aea52379506858548dbd6cd25c62697b3953f748e4ed053e5 SHA512 943adddc32ac275a030442c3ec0a529c3b97b35de9f245c027d21a90dcf7115753e1419b6b31c8d01f867c71a67fd469b75933d5475b343c47efc43be42df084 -DIST Faker-9.8.4.tar.gz 1198752 BLAKE2B d632ed8bafd61eedd304e132d7257deb3c8da1cb86071dabd476b3baa335a182a344f70a6ead583a196ce5c9077664a4f424b9a3b721966f78c1086a026f3026 SHA512 76dbd86501c0b8427d3318b24dc6e59c9f562fead0807310bda577c018b5ab558ca0f01ca17a9099a5f060e956c1f17507fc146288980ea7081761df2a5fb921 +DIST Faker-11.0.0.tar.gz 1199121 BLAKE2B e5c4e17daa969249dbf1ae69630a79c50e6e51d63db9997872bd22a7e91db1771fdef984ec5912d42815632598339062be20005e4921c846abf3013e6efc8c89 SHA512 687f47ba613bd2117c412da54e293281bf1943eccde8165cc749be5d176a025d250c831d55a509a6923b3542dba4fe5abce23bd80b980bdca742ecaa837d4334 diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz index 09a6d05dd9f9..bdac71b0f5bc 100644 Binary files a/dev-python/Manifest.gz and b/dev-python/Manifest.gz differ diff --git a/dev-python/aioredis/Manifest b/dev-python/aioredis/Manifest index 3464ef7fb086..4c3b3911a2f2 100644 --- a/dev-python/aioredis/Manifest +++ b/dev-python/aioredis/Manifest @@ -1 +1,2 @@ DIST aioredis-2.0.0.tar.gz 110808 BLAKE2B c10b7d9ba9a6878d3a28f9cada836acbceb7d62525cfc65a52fc3a15edebf5b736ad81f249477e30d1f920473067f27048530f7fd4d0a45cb5391976eb6e4c3e SHA512 edc738215bdb1459af8657f06b8194cdfbb6814f4d40b723e11a1fdec5607b73033eca0bffac758afa2cca9532de910a508c9fb27c5885952426266a14c21eee +DIST aioredis-2.0.1.tar.gz 111047 BLAKE2B 56f520110bee1a5ef2c19171b6c4c5d6cd4ac440892d36edc4ebf274e7b4ac184fd9e090ad79922f609de4b1dc403a1caa38b271cb1f938357ab9f01ea3f8bfc SHA512 9c2c3fe3e4e4a91e9ca727f8ad78c7c4e6ce1109e4a3043d9ddb929606b6879b1522f3845a3b18d8586ed557a4ab0f6288f27f2b6b0e307343e113f9b9b5fd76 diff --git a/dev-python/aioredis/aioredis-2.0.1.ebuild b/dev-python/aioredis/aioredis-2.0.1.ebuild new file mode 100644 index 000000000000..12e63e82d7d8 --- /dev/null +++ b/dev-python/aioredis/aioredis-2.0.1.ebuild @@ -0,0 +1,56 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} pypy3 ) +inherit distutils-r1 optfeature + +DESCRIPTION="asyncio Redis client library" +HOMEPAGE="https://pypi.org/project/aioredis/ https://github.com/aio-libs/aioredis-py" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=" + dev-python/async_timeout[${PYTHON_USEDEP}] + dev-python/typing-extensions[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-db/redis + dev-python/hiredis[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_test() { + local redis_pid="${T}"/redis.pid + local redis_port=6379 + local redis_test_config=" + daemonize yes + pidfile ${redis_pid} + port ${redis_port} + bind 127.0.0.1 + " + + elog "Spawning Redis" + elog "NOTE: Port ${redis_port} must be free" + "${EPREFIX}"/usr/sbin/redis-server - <<< "${redis_test_config}" || die + + # Run the tests + distutils-r1_src_test + + # Clean up afterwards + kill "$(<"${redis_pid}")" || die +} + +pkg_postinst() { + optfeature "hiredis parser" dev-python/hiredis +} diff --git a/dev-python/attrs/Manifest b/dev-python/attrs/Manifest index c365823bb8e8..34e7f1b2225f 100644 --- a/dev-python/attrs/Manifest +++ b/dev-python/attrs/Manifest @@ -1 +1,2 @@ DIST attrs-21.2.0.tar.gz 184694 BLAKE2B 5c960f7c1a4623186c7a0cec8a9096df8df8e7d3022b67b281dcdd3a512ce6f105dfdd5ec10dc85a2b9971564f44e7b4474d760667e53cd2cf0f0543153eb6e2 SHA512 35863f599076357e40f72a62968f4a2f9bc2af9f59f484fef051be4f9730ce9e28e11568915d690ade7980df8998af22e2ff8b9568a205d7745e246ba5f3a7e1 +DIST attrs-21.3.0.tar.gz 204413 BLAKE2B 1aac1198196aa3438eb1ec9dac0a4971362caea655e27a2b7811e48d500a40fe8f2daf43ce86d3b381892763fdfecf9adbda16a29dda57155ec5a588732b423d SHA512 23b2ba52af809581e9907ad7c6d18ed050d415645a249ae912af3f1398276ea5bf67f11991d7958f3eeafe759d8d62a65009555ae8f75580cfa464c5b4a37742 diff --git a/dev-python/attrs/attrs-21.3.0.ebuild b/dev-python/attrs/attrs-21.3.0.ebuild new file mode 100644 index 000000000000..cc5affede3af --- /dev/null +++ b/dev-python/attrs/attrs-21.3.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Attributes without boilerplate" +HOMEPAGE=" + https://github.com/python-attrs/attrs/ + https://attrs.readthedocs.io/ + https://pypi.org/project/attrs/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + dev-python/zope-interface[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + $(python_gen_impl_dep sqlite) + $(python_gen_cond_dep ' + dev-python/cloudpickle[${PYTHON_USEDEP}] + ' 'python*') + >=dev-python/hypothesis-3.6.0[${PYTHON_USEDEP}] + >=dev-python/pytest-4.3.0[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest + +python_test() { + local EPYTEST_IGNORE=() + [[ ${EPYTHON} != python* ]] && EPYTEST_IGNORE+=( + # requires cloudpickle which relies on CPython implementation + # details + tests/test_3rd_party.py + ) + + epytest +} diff --git a/dev-python/black/black-21.12_beta0.ebuild b/dev-python/black/black-21.12_beta0.ebuild index 2d1e07243e42..abaa9d994b38 100644 --- a/dev-python/black/black-21.12_beta0.ebuild +++ b/dev-python/black/black-21.12_beta0.ebuild @@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~sparc x86 ~x64-macos" RDEPEND=" >=dev-python/click-8.0.0[${PYTHON_USEDEP}] diff --git a/dev-python/cloudpickle/cloudpickle-2.0.0.ebuild b/dev-python/cloudpickle/cloudpickle-2.0.0.ebuild index 10667167fdb4..f2c231668f56 100644 --- a/dev-python/cloudpickle/cloudpickle-2.0.0.ebuild +++ b/dev-python/cloudpickle/cloudpickle-2.0.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux" BDEPEND=" test? ( diff --git a/dev-python/coverage/Manifest b/dev-python/coverage/Manifest index 9214bd7ed5b3..6b01ac2d16e5 100644 --- a/dev-python/coverage/Manifest +++ b/dev-python/coverage/Manifest @@ -1,2 +1 @@ -DIST coverage-6.1.2.tar.gz 677391 BLAKE2B eb9b129282446ed536765fcbd8b31f863be315c8eb27087473608b1412014e5807a26b8bcbdeea98f7a89481198bb7475dc775e68fee53ca297d16332edb7ea8 SHA512 41b5bc881eba97308ff702024dd1873fe527c941fe1b45c36a6210819e0b6b9e6dcdf0ad31659e88ea25a3ebd84e90858694f54d2d7585c61b319edb9afbf07e DIST coverage-6.2.tar.gz 678664 BLAKE2B 98fe2e5d85db042d95a791838b121a4aeb0edc09f15e5454943d6d1ca3cafdbf0127e8683ddcb5c1f6372b18205bf92e24a803533f19d1bdd5e0477b669cf99f SHA512 e8ef5f2483b2e6d12f0f9801d63a0cd0b81395ea0c88b3cdaf6f6758e1fc1b381f803b0f58345c94007de175d0c2a24559dec93f51db8786f801a2a2d48d6b8f diff --git a/dev-python/coverage/coverage-6.1.2.ebuild b/dev-python/coverage/coverage-6.1.2.ebuild deleted file mode 100644 index 4f8cb45da0dd..000000000000 --- a/dev-python/coverage/coverage-6.1.2.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} pypy3 ) -PYTHON_REQ_USE="threads(+),sqlite(+)" -inherit distutils-r1 - -DESCRIPTION="Code coverage measurement for Python" -HOMEPAGE="https://coverage.readthedocs.io/en/latest/ https://pypi.org/project/coverage/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" -#IUSE="test" -# The tests are impossible to appease. Please run them externally -# via tox. Or fix the ebuild if you have hours of time to spend -# on something utterly useless. -RESTRICT="test" - -#BDEPEND=" -# test? ( -# dev-python/PyContracts[${PYTHON_USEDEP}] -# dev-python/flaky[${PYTHON_USEDEP}] -# dev-python/hypothesis[${PYTHON_USEDEP}] -# dev-python/mock[${PYTHON_USEDEP}] -# dev-python/pytest[${PYTHON_USEDEP}] -# >=dev-python/unittest-mixins-1.4[${PYTHON_USEDEP}] -# ) -#" - -src_prepare() { - # avoid the dep on xdist, run tests verbosely - sed -i -e '/^addopts/s:-n3:-v:' setup.cfg || die - distutils-r1_src_prepare -} - -python_test() { - distutils_install_for_testing - - "${EPYTHON}" igor.py zip_mods || die - "${EPYTHON}" igor.py test_with_tracer py || die - - # No C extensions under pypy - if [[ ${EPYTHON} != pypy* ]]; then - cp -l -- "${TEST_DIR}"/lib/*/coverage/*.so coverage/ || die - "${EPYTHON}" igor.py test_with_tracer c || die - fi - - # clean up leftover "egg1" directory - rm -rf build/lib/egg1 || die -} diff --git a/dev-python/coverage/coverage-6.2.ebuild b/dev-python/coverage/coverage-6.2.ebuild index 82b21db8d6c0..efdecf358257 100644 --- a/dev-python/coverage/coverage-6.2.ebuild +++ b/dev-python/coverage/coverage-6.2.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" #IUSE="test" # The tests are impossible to appease. Please run them externally # via tox. Or fix the ebuild if you have hours of time to spend diff --git a/dev-python/eradicate/eradicate-2.0.0.ebuild b/dev-python/eradicate/eradicate-2.0.0.ebuild index e1fb74169915..89d22ec77edd 100644 --- a/dev-python/eradicate/eradicate-2.0.0.ebuild +++ b/dev-python/eradicate/eradicate-2.0.0.ebuild @@ -16,6 +16,6 @@ SRC_URI="https://github.com/myint/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 x86" distutils_enable_tests unittest diff --git a/dev-python/exdown/Manifest b/dev-python/exdown/Manifest deleted file mode 100644 index 06d6a4509152..000000000000 --- a/dev-python/exdown/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pytest-codeblocks-0.9.0.tar.gz 6590 BLAKE2B 34d1c72a891d2f2f1d98c4238322d888a48b286d628e3738043d16a59a75b3bd15b29e31c554a83508d9af31caf1b526e3c535a243bcf77c8d77f9bf5be69f5b SHA512 834002c4e9c8ad36baa9a4ed494fe28cf09460e0ee5a0a3d8d111cb0bd8ca4ed3c784a047901bc67984e7892f931b5644c1ea68112e4d9dda514a20e048b3d11 diff --git a/dev-python/flit/Manifest b/dev-python/flit/Manifest index aa13b68fcd5d..6c0aa26c52ba 100644 --- a/dev-python/flit/Manifest +++ b/dev-python/flit/Manifest @@ -1,3 +1,4 @@ DIST flit-3.4.0.tar.gz 120418 BLAKE2B e99eb67daa9a1d8e738ff9b917117edaf7372bbe267163f8af64967e43c3bed94893849e9752d36d3965e70c798dd3fb3b454131cee2d34697cc389f11aaea69 SHA512 18f1d1cb86508e76b4e37e6c1ca2c414400c86e9163bcc52fd3358220e5b4362da4001da7ce427926c62ad67ee86799ea8d08e858e5e17230941c529b9995ce5 DIST flit-3.5.0.tar.gz 122519 BLAKE2B 3c3eee652f090afd1c07e8a5cd1b154e7390ed621ab202ded3b4664d59ccfa2fd827928451f6d8928573d012cb9f6b44544c48540e03b2918d32ae3ba9169838 SHA512 e2239c209f735f11aeec8672aa14449fe4b6e1d2ed6523d661edb730f0b9f93b2794c6676bf878c09bd27966a9f8b9c19e6a7f14063c6efed4d8bc043b4cd2db DIST flit-3.5.1.tar.gz 122689 BLAKE2B 49be251df549783114c6758fa688d00fe18ed88d215f91783ce78eda722ee3d8578d83781a1a5c9ee61dd001c82df010c879dc742a1829c2ba8bcf5edb930556 SHA512 00e884774c7f59dfb54d6db09f65ac0ed47f1dd23872d6913f3a41de7242fb3829b2edacd03d08e080635c0a515521333aa74e6d26a2faa5fc02e56454b2b37a +DIST flit-3.6.0.tar.gz 133365 BLAKE2B c4170eeded3c15a93c8e89b9483459247228136bc5ff32c6edb8cd9a4b5c3171fe381d0a1b4e325ed863457c2bce476efe3276455d5b9e4279a702dd35ed4512 SHA512 6506ecc73f9e0373e84b5b90a3d567f1edad6d95561886ff1f08f37addfc39006e75ab199c376a7d18452f6b8e2cbdd9e8f59a1fc96037702c3c682dc0b5a757 diff --git a/dev-python/flit/flit-3.6.0.ebuild b/dev-python/flit/flit-3.6.0.ebuild new file mode 100644 index 000000000000..13ed55109146 --- /dev/null +++ b/dev-python/flit/flit-3.6.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 2019-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +PYTHON_COMPAT=( python3_{8..10} pypy3 ) +inherit distutils-r1 + +DESCRIPTION="Simplified packaging of Python modules" +HOMEPAGE="https://github.com/pypa/flit https://flit.readthedocs.io/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/docutils[${PYTHON_USEDEP}] + >=dev-python/flit_core-3.2.0[${PYTHON_USEDEP}] + dev-python/intreehooks[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/requests_download[${PYTHON_USEDEP}] + dev-python/tomli[${PYTHON_USEDEP}] + dev-python/tomli-w[${PYTHON_USEDEP}] +" +BDEPEND="${RDEPEND} + sys-apps/grep + sys-apps/findutils + test? ( + dev-python/pip[${PYTHON_USEDEP}] + dev-python/responses[${PYTHON_USEDEP}] + dev-python/testpath[${PYTHON_USEDEP}] + ) +" + +PATCHES=( + "${FILESDIR}/flit-3.2.0-tests.patch" +) + +distutils_enable_tests pytest +distutils_enable_sphinx doc \ + dev-python/sphinxcontrib-github-alt \ + dev-python/pygments-github-lexers \ + +src_prepare() { + # make sure system install is used + rm -r flit_core || die + distutils-r1_src_prepare +} diff --git a/dev-python/flit/metadata.xml b/dev-python/flit/metadata.xml index 4aa96770e0fb..ea7fd8341083 100644 --- a/dev-python/flit/metadata.xml +++ b/dev-python/flit/metadata.xml @@ -11,6 +11,6 @@ flit - takluyver/flit + pypa/flit diff --git a/dev-python/flit_core/Manifest b/dev-python/flit_core/Manifest index 4c5e33a1faf7..9ffb2d22f507 100644 --- a/dev-python/flit_core/Manifest +++ b/dev-python/flit_core/Manifest @@ -1 +1,2 @@ DIST flit_core-3.5.1.tar.gz 27497 BLAKE2B 0e47576a05afa306a17e0fe64bd48e4a141fa51df225365495692aeae1c693635f1ea13ba23fdd93543c9b152dcfc2424bd8101a544ad25be2c4561964a8a8bb SHA512 c83b5bd54ffdf2d7dbea340939cb5f0210ffd36aa0f61b02519837843ebbab206a2456a007f76cbae45c2133ef3d21949d1834083c8dddb505ed5bb127a5fdba +DIST flit_core-3.6.0.tar.gz 37534 BLAKE2B 7450dcddc0719e17b79b82a07fbfee3116ea9eface5cba8f7d6fa27011f6b20822f8f5c02633ac75456b30327328ef60e05e15ca78a26935dfac5a66e2538a1e SHA512 6a217a6e7d8c4f81491314987ff1510f1cede233213982d9f7b2705ab5b1a7fb4b337ad9daa5ff824ed00034ba1d53215d56def86909240d49265e628ffb83b2 diff --git a/dev-python/flit_core/flit_core-3.6.0.ebuild b/dev-python/flit_core/flit_core-3.6.0.ebuild new file mode 100644 index 000000000000..22ec64d9e025 --- /dev/null +++ b/dev-python/flit_core/flit_core-3.6.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 2019-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +PYTHON_COMPAT=( python3_{8..10} pypy3 ) +inherit distutils-r1 + +DESCRIPTION="Simplified packaging of Python modules (core module)" +HOMEPAGE=" + https://pypi.org/project/flit-core/ + https://github.com/pypa/flit/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + dev-python/intreehooks[${PYTHON_USEDEP}] + dev-python/tomli[${PYTHON_USEDEP}] +" +BDEPEND=" + >=dev-python/pyproject2setuppy-11[${PYTHON_USEDEP}] + test? ( dev-python/testpath[${PYTHON_USEDEP}] ) +" + +distutils_enable_tests pytest + +src_prepare() { + rm -r flit_core/vendor || die + sed -i -e 's:from \.vendor ::' flit_core/*.py || die + distutils-r1_src_prepare +} diff --git a/dev-python/flit_core/metadata.xml b/dev-python/flit_core/metadata.xml index 2b7767d64208..3f418d3bf441 100644 --- a/dev-python/flit_core/metadata.xml +++ b/dev-python/flit_core/metadata.xml @@ -12,6 +12,6 @@ flit-core - takluyver/flit + pypa/flit diff --git a/dev-python/fritzconnection/Manifest b/dev-python/fritzconnection/Manifest index 0e259c98a13c..611df23e43bc 100644 --- a/dev-python/fritzconnection/Manifest +++ b/dev-python/fritzconnection/Manifest @@ -1,2 +1,3 @@ DIST fritzconnection-1.7.1.tar.gz 77805 BLAKE2B 4012975205320cc1c65ace64f515e1a934da5e330e9f9090021f20989d300df38f042cc8defd794ab6d4f2935cc2973141b50b1aea74a472d42f2dd5c1b2da57 SHA512 f3ca91b41a6255a743a00d34733e4755f1f675c150414c794bce9c52da292cc267a60520d5bc4e6b0e5ba4dc1ce27b7083fa4e2c226bafa3ca39ee6d63c80ae2 DIST fritzconnection-1.7.2.tar.gz 77880 BLAKE2B bb27d1cc8ccdce17a73ddc6a1f3fcb1187976dcaca28f773a6aad9c07f3dfa80be686d065d060fbf174b60b31bc589f26e6f48ae655a69b4a7ad2864d434156b SHA512 2ab6b010750e7dc7dd010fc51c3fa41ab2eee58c5f310f187e998183950a2ed2668a13a4a4a39bdb27fb1b0a8f69cfff47256ebd3b543128710368689551dc87 +DIST fritzconnection-1.8.0.tar.gz 77615 BLAKE2B aedcc3b116b6ce7ce14feb75714ee6e5a5ea667f7cb5e3124caa61e9b638e91e95a2520184869d088ceee7a6fd242c649660e7bb9ca81920f22954fc01ae3682 SHA512 4a65e715151fcd356ece60b9966560d80e4144d53f0684774af8f669fb83aa87124870ec1dfb29cbd381c73a711797f837b09abb620dfbb94722cba007fdf80c diff --git a/dev-python/fritzconnection/fritzconnection-1.8.0.ebuild b/dev-python/fritzconnection/fritzconnection-1.8.0.ebuild new file mode 100644 index 000000000000..00eeb7787fd3 --- /dev/null +++ b/dev-python/fritzconnection/fritzconnection-1.8.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Lib/tool to communicate with AVM FRITZ! devices using TR-064 protocol over UPnP" +HOMEPAGE="https://github.com/kbr/fritzconnection" +LICENSE="MIT" +SLOT="0" + +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://github.com/kbr/fritzconnection" + inherit git-r3 +else + SRC_URI="https://github.com/kbr/fritzconnection/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +RDEPEND=">=dev-python/requests-2.22[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/pytest-mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest diff --git a/dev-python/git-review/Manifest b/dev-python/git-review/Manifest index 8ab2955f568a..d1196af7d443 100644 --- a/dev-python/git-review/Manifest +++ b/dev-python/git-review/Manifest @@ -1 +1,2 @@ DIST git-review-2.1.0.tar.gz 62873 BLAKE2B 6685e43da07d4be0ffe3202a6a9be172257a8e665091b457318c118d95f571a9b97e555d4afea85fe590f264039bd86815c5a365fbc484a24b5c4ea748a340c2 SHA512 7beda9e704076285459c29ce2b7c0f07ab180212f24f62fa484430dfb323eb4473f9be030706eeca587d5cfb5cdbba6759aeaec6d377717ebf9a0f0157e1a190 +DIST git-review-2.2.0.tar.gz 64905 BLAKE2B a08b489bb4b53a9cc6510b11238bc947334a187e0ec7dad7e1240cf3efb110a5310cfe4f3278af9311108fcb0b915a9d1eabdd2aeabab3fed0a939cba9f88ae2 SHA512 9a33f6a1e60b0679b248db818a2a4559b4ee6a6b765f2e6a16fd566fd85587be363f837da2118e75bd3e6d54ba3dcc177d3d678d927d75cca6d8ad6ed4e8d4f7 diff --git a/dev-python/git-review/git-review-2.2.0.ebuild b/dev-python/git-review/git-review-2.2.0.ebuild new file mode 100644 index 000000000000..bd9c8e269e6b --- /dev/null +++ b/dev-python/git-review/git-review-2.2.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_7 python3_8 python3_9 ) +DISTUTILS_USE_SETUPTOOLS= + +inherit distutils-r1 + +DESCRIPTION="Tool to submit code to Gerrit" +HOMEPAGE="https://git.openstack.org/cgit/openstack-infra/git-review" +if [[ ${PV} == 9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://opendev.org/opendev/${PN}.git" +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux" +fi + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="" + +DEPEND=">=dev-python/pbr-4.1.0[${PYTHON_USEDEP}]" +RDEPEND=">=dev-python/requests-1.1[${PYTHON_USEDEP}]" + +python_prepare_all() { + sed -i -e '/manpages/,+1d' setup.cfg || die + distutils-r1_python_prepare_all +} diff --git a/dev-python/git-review/git-review-9999.ebuild b/dev-python/git-review/git-review-9999.ebuild new file mode 100644 index 000000000000..bd9c8e269e6b --- /dev/null +++ b/dev-python/git-review/git-review-9999.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_7 python3_8 python3_9 ) +DISTUTILS_USE_SETUPTOOLS= + +inherit distutils-r1 + +DESCRIPTION="Tool to submit code to Gerrit" +HOMEPAGE="https://git.openstack.org/cgit/openstack-infra/git-review" +if [[ ${PV} == 9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://opendev.org/opendev/${PN}.git" +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux" +fi + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="" + +DEPEND=">=dev-python/pbr-4.1.0[${PYTHON_USEDEP}]" +RDEPEND=">=dev-python/requests-1.1[${PYTHON_USEDEP}]" + +python_prepare_all() { + sed -i -e '/manpages/,+1d' setup.cfg || die + distutils-r1_python_prepare_all +} diff --git a/dev-python/keyring/Manifest b/dev-python/keyring/Manifest index fe302b0b00cd..f7059690758f 100644 --- a/dev-python/keyring/Manifest +++ b/dev-python/keyring/Manifest @@ -1,3 +1,2 @@ -DIST keyring-23.2.1.tar.gz 44522 BLAKE2B 79ba1fb530cecad84ba94e9a27f32196367af92952946c07581d68d5e89fac93d9b7a33cad8d1a95ae9ffe1568ddc189cd17decea7113debb022dafba4472bfd SHA512 205f74d9457f65952b1cada1a829bb97318cb80689b410eedb49def3577234f715ec6420d7d12833255ef5098040d0a5186be47fa6b8c6db6036406c3ee2e246 DIST keyring-23.3.0.tar.gz 44669 BLAKE2B 3f6cd3ff558b0a792d405c1c8175bf68c8463f26662d74c1f439e28d7914ef7f26c6091c64ef372e78028eeda04d2a5bcbe253477632b2e53d92d36ade43d47a SHA512 39264abf585949da444fdacbb1195c981157e151d1d14373c5afe0f6547f8da46b2da3e14f47e363bbccd69ee90bc182c287bd963d8b99301a5e919e511426cf DIST keyring-23.4.0.tar.gz 44557 BLAKE2B 1115ecfca9f7d7cd5d28168d9d4198e329217ace82a32fe4db1b40aa96e6a352face46f4e8877407618e701713a8f1347810a24706bbe1872bff758f71ae34f5 SHA512 214041375a1bddda099042168f0f4c5ea4cf24c347a0693ab3efd7eb7a0ab2c36abff33f3d83168cfe5ae5dd971e0f3de4548fb0651e435009766aec740e64eb diff --git a/dev-python/keyring/keyring-23.2.1.ebuild b/dev-python/keyring/keyring-23.2.1.ebuild deleted file mode 100644 index f96cd174d7d8..000000000000 --- a/dev-python/keyring/keyring-23.2.1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( pypy3 python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Provides access to the system keyring service" -HOMEPAGE="https://github.com/jaraco/keyring" -SRC_URI="https://github.com/jaraco/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0" -LICENSE="PSF-2" -KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86 ~x64-macos" - -RDEPEND=" - dev-python/secretstorage[${PYTHON_USEDEP}] - dev-python/entrypoints[${PYTHON_USEDEP}] - dev-python/jeepney[${PYTHON_USEDEP}] - dev-python/importlib_metadata[${PYTHON_USEDEP}] -" -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] - dev-python/toml[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest -distutils_enable_sphinx docs \ - dev-python/jaraco-packaging \ - dev-python/rst-linker - -export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} - -EPYTEST_DESELECT=( - # this test fails if importlib-metadata returns more than one - # entry, i.e. when keyring is installed already - tests/test_packaging.py::test_entry_point -) - -EPYTEST_IGNORE=( - # apparently does not unlock the keyring properly - tests/backends/test_libsecret.py - # hangs - tests/backends/test_kwallet.py -) diff --git a/dev-python/keyring/keyring-23.3.0.ebuild b/dev-python/keyring/keyring-23.3.0.ebuild index dced4d33c0b0..f96cd174d7d8 100644 --- a/dev-python/keyring/keyring-23.3.0.ebuild +++ b/dev-python/keyring/keyring-23.3.0.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/jaraco/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" SLOT="0" LICENSE="PSF-2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86 ~x64-macos" RDEPEND=" dev-python/secretstorage[${PYTHON_USEDEP}] diff --git a/dev-python/kombu/Manifest b/dev-python/kombu/Manifest index 430e977b9136..cb2877b71ee2 100644 --- a/dev-python/kombu/Manifest +++ b/dev-python/kombu/Manifest @@ -1 +1,2 @@ DIST kombu-5.2.1.tar.gz 420402 BLAKE2B 00ddc4418f31c2ddc9d154aed2d4c0cb8555cdf143d08c969f8e79aa7aa44f60c0bfe40d92a4dfa2f6c2a60b9e4f0590468e2016bd0a84e255cb57c570597904 SHA512 12fc3480651475ce8476424665ccf692a5bf1cbf4cd31c35eaa24419c316dc380357cfab0ca5d58ea275e870fa703d3ac258cb84f04886f9342e730aaaba6bf5 +DIST kombu-5.2.3.tar.gz 421943 BLAKE2B f5b8f27e2b1e79d7dc7c92716f90f260454508769e52c0d78ebe94dd0da150cdd6121cc2db30c80cb290c15fc7d94de37973ac180635498b53f171ac8d884c1d SHA512 0e882063e89a25d324ccdf8745f11e1ea51443cc9a80b215e7f31c85053411cf1d5f26b5ffcd52165a15827ee036300a69a8a192af60d975a495a5a0b5ce3954 diff --git a/dev-python/kombu/kombu-5.2.3.ebuild b/dev-python/kombu/kombu-5.2.3.ebuild new file mode 100644 index 000000000000..22dee35e6bf5 --- /dev/null +++ b/dev-python/kombu/kombu-5.2.3.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..9} ) +inherit distutils-r1 optfeature + +DESCRIPTION="AMQP Messaging Framework for Python" +HOMEPAGE="https://pypi.org/project/kombu/ https://github.com/celery/kombu" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="examples" + +RDEPEND=" + >=dev-python/py-amqp-5.0.6[${PYTHON_USEDEP}] + = (3, 10): -+ return self.readall() - return self._buffer.read(size) - - def read1(self, size=-1): diff --git a/dev-python/lz4/lz4-3.1.10.ebuild b/dev-python/lz4/lz4-3.1.10.ebuild index fed9769186de..e9132fc819bf 100644 --- a/dev-python/lz4/lz4-3.1.10.ebuild +++ b/dev-python/lz4/lz4-3.1.10.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" LICENSE="BSD" -KEYWORDS="amd64 arm arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux" RDEPEND="app-arch/lz4:=" DEPEND=${RDEPEND} diff --git a/dev-python/lz4/lz4-3.1.3.ebuild b/dev-python/lz4/lz4-3.1.3.ebuild deleted file mode 100644 index b86d4cd56978..000000000000 --- a/dev-python/lz4/lz4-3.1.3.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..10} ) - -inherit distutils-r1 - -DESCRIPTION="LZ4 Bindings for Python" -HOMEPAGE="https://pypi.org/project/lz4/ https://github.com/python-lz4/python-lz4" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -SLOT="0" -LICENSE="BSD" -KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux" - -RDEPEND="app-arch/lz4:=" -DEPEND=${RDEPEND} -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] - dev-python/pkgconfig[${PYTHON_USEDEP}] - test? ( - dev-python/psutil[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}/${P}-310-readall.patch" -) - -distutils_enable_tests pytest diff --git a/dev-python/mando/mando-0.6.4-r1.ebuild b/dev-python/mando/mando-0.6.4-r1.ebuild index d49e88362501..09760e2f7fd9 100644 --- a/dev-python/mando/mando-0.6.4-r1.ebuild +++ b/dev-python/mando/mando-0.6.4-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/rubik/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 x86" IUSE="examples" RDEPEND="dev-python/six[${PYTHON_USEDEP}]" diff --git a/dev-python/nbval/nbval-0.9.6.ebuild b/dev-python/nbval/nbval-0.9.6.ebuild index dd3f21a47ef9..d5b82cd22c6d 100644 --- a/dev-python/nbval/nbval-0.9.6.ebuild +++ b/dev-python/nbval/nbval-0.9.6.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 DESCRIPTION="A py.test plugin to validate Jupyter notebooks" @@ -25,13 +25,14 @@ RDEPEND=" " BDEPEND="test? ( dev-python/sympy[${PYTHON_USEDEP}] )" -distutils_enable_tests pytest +distutils_enable_tests --install pytest python_test() { + distutils_install_for_testing local deselect=( --deselect tests/test_ignore.py::test_conf_ignore_stderr --deselect tests/test_timeouts.py::test_timeouts ) - pytest -vv "${deselect[@]}" || die "Tests failed with ${EPYTHON}" + epytest "${deselect[@]}" } diff --git a/dev-python/phonenumbers/Manifest b/dev-python/phonenumbers/Manifest index aac89dfc8886..7ae4e3089b2e 100644 --- a/dev-python/phonenumbers/Manifest +++ b/dev-python/phonenumbers/Manifest @@ -1,4 +1,3 @@ -DIST phonenumbers-8.12.37.tar.gz 2268402 BLAKE2B 7f227f37cf435c5aa00f860d6af9a349aba766ff0d9293d43eed96b9e0a3a27fff2d7f644b8dc8a9911baba340ba07dee4aaa33f864688678f5289c828db955e SHA512 ab71f3def97168926bb9114da8ea20eceb92177a7df22b201f0dcd5aea79e1d099f04d2075383b01137f831117433f52d9ef3e7d11df34c07b49bffd7d06682a DIST phonenumbers-8.12.38.tar.gz 2268865 BLAKE2B 491e8e881a2c938c77053a16c7af6e01bf19eb83d1abc94e08eb23dd8ed6d3e864509d98a95f0300dff66a242cae01c6b158e0e1d5085334b4cb2de1e3b6bb1e SHA512 e5ff96fa803180f0843959db7337b9a2c23fe1ba60e4de50b2d679430b160c16a47f1a666c06ae9e8b35980a42fface89a55d866d824ce6db61cef8220ac0e1b DIST phonenumbers-8.12.39.tar.gz 2268929 BLAKE2B b89250a8f2df77302bd57ead7bc2d3c1bc3dfb87d246f235e5c53f40fb6cbe6f7b525f3af3f6412bb6a44858aba4def492c3e3bbc25a0e129cf021ad27633ac1 SHA512 018c33a0d602cc4d4e4a6a154d2fcf15cd036a1d247e5bc79ff0e6932a7ca6ef452a193b2e6d090cfe43a3347d374b183d203763247c9653f9ea1af3a7d980d1 DIST phonenumbers-8.12.40.tar.gz 2269926 BLAKE2B 87163e927719441430ba9665085245a7664feed9bda66995d7d27203eda3d729e8b50409745efe2eaffb656b2998b952c6ee7a05576cd6144e7d52d23773089f SHA512 38fb914a23b0a683f0ef77da33360a594cf9c198e1b0143271d9615bd97089097bab5f4718f837bbbd89f8010ce2641a3b56b165b2c64845a8d2979af859fb7e diff --git a/dev-python/phonenumbers/phonenumbers-8.12.37.ebuild b/dev-python/phonenumbers/phonenumbers-8.12.37.ebuild deleted file mode 100644 index b1997c3749bd..000000000000 --- a/dev-python/phonenumbers/phonenumbers-8.12.37.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Python port of Google's libphonenumber" -HOMEPAGE="https://github.com/daviddrysdale/python-phonenumbers" -SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 x86" - -DOCS=(README.md) - -distutils_enable_tests setup.py diff --git a/dev-python/phonenumbers/phonenumbers-8.12.38.ebuild b/dev-python/phonenumbers/phonenumbers-8.12.38.ebuild index 4df0c54c7011..b1997c3749bd 100644 --- a/dev-python/phonenumbers/phonenumbers-8.12.38.ebuild +++ b/dev-python/phonenumbers/phonenumbers-8.12.38.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" DOCS=(README.md) diff --git a/dev-python/pip/pip-21.3.1-r1.ebuild b/dev-python/pip/pip-21.3.1-r1.ebuild index f9f4baf6b0ee..4c5307d4fe99 100644 --- a/dev-python/pip/pip-21.3.1-r1.ebuild +++ b/dev-python/pip/pip-21.3.1-r1.ebuild @@ -32,7 +32,7 @@ SRC_URI=" " LICENSE="MIT" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~sparc x86" SLOT="0" IUSE="test vanilla" RESTRICT="!test? ( test )" diff --git a/dev-python/pyFFTW/Manifest b/dev-python/pyFFTW/Manifest index 94156daae57f..7857d7f47f2b 100644 --- a/dev-python/pyFFTW/Manifest +++ b/dev-python/pyFFTW/Manifest @@ -1 +1,2 @@ DIST pyFFTW-0.12.0.tar.gz 147372 BLAKE2B 1ea1f1f8de6759c42781a535b30d7119c0cb02dffea3abfe4130a97c465e000aa9b3064a219718569552304513a77ac51aa309f1be29f9eecae25c63cce70c6c SHA512 e4d7258d5c053b5367d8c4f1892eba8e595f9d540c1c3e6caf61e0c113d598ba872b5e72a21edace66be70d9ad75c599e4b1fbc692e0015c3c1ae35e9a7ba599 +DIST pyFFTW-0.13.0.tar.gz 158660 BLAKE2B c54096f0814625d49832094a6d823c6d258801a0831b07846993da97a713238a5df5b59beddc38b7e940685403178b2f3100f5713334fc9861757420bc87303a SHA512 1d4c69cc19dd00f2433037f25ea90335544403b542c0c5ca00cb055e0fde076ec9e00990f02da2385466be171ed8c910a5ce06a7cfa5efbc6544b2383bbce599 diff --git a/dev-python/pyFFTW/pyFFTW-0.13.0.ebuild b/dev-python/pyFFTW/pyFFTW-0.13.0.ebuild new file mode 100644 index 000000000000..db7b32f540a5 --- /dev/null +++ b/dev-python/pyFFTW/pyFFTW-0.13.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="A pythonic python wrapper around FFTW" +HOMEPAGE="https://github.com/pyFFTW/pyFFTW" + +LICENSE="BSD" +SLOT="0" +if [[ "${PV}" = "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/pyFFTW/pyFFTW.git" +else + KEYWORDS="~amd64 ~x86" + SRC_URI="https://github.com/pyFFTW/pyFFTW/archive/v${PV}.tar.gz -> ${P}.tar.gz" +fi + +DEPEND=" + >=dev-python/numpy-1.16[${PYTHON_USEDEP}] + >=sci-libs/fftw-3.3:3.0=[threads] +" +RDEPEND="${DEPEND}" +BDEPEND=" + >=dev-python/cython-0.29.18[${PYTHON_USEDEP}] + test? ( + >=dev-python/dask-1.0[${PYTHON_USEDEP}] + >=dev-python/scipy-1.2.0[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests unittest + +python_test() { + cp -r -l -n tests/ "${BUILD_DIR}/lib" || die + cd "${BUILD_DIR}/lib" || die + eunittest + rm -r tests/ || die +} diff --git a/dev-python/pyFFTW/pyFFTW-9999.ebuild b/dev-python/pyFFTW/pyFFTW-9999.ebuild index 8ec87a34fe67..db7b32f540a5 100644 --- a/dev-python/pyFFTW/pyFFTW-9999.ebuild +++ b/dev-python/pyFFTW/pyFFTW-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{8..9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 DESCRIPTION="A pythonic python wrapper around FFTW" @@ -20,23 +20,23 @@ else fi DEPEND=" - dev-python/numpy[${PYTHON_USEDEP}] + >=dev-python/numpy-1.16[${PYTHON_USEDEP}] >=sci-libs/fftw-3.3:3.0=[threads] " RDEPEND="${DEPEND}" BDEPEND=" - dev-python/cython[${PYTHON_USEDEP}] + >=dev-python/cython-0.29.18[${PYTHON_USEDEP}] test? ( - dev-python/dask[${PYTHON_USEDEP}] - dev-python/scipy[${PYTHON_USEDEP}] + >=dev-python/dask-1.0[${PYTHON_USEDEP}] + >=dev-python/scipy-1.2.0[${PYTHON_USEDEP}] ) " distutils_enable_tests unittest python_test() { - cp -r -l -n test/ "${BUILD_DIR}/lib" || die + cp -r -l -n tests/ "${BUILD_DIR}/lib" || die cd "${BUILD_DIR}/lib" || die eunittest - rm -r test/ || die + rm -r tests/ || die } diff --git a/dev-python/pycparser/Manifest b/dev-python/pycparser/Manifest index c619d5054644..9a45f69b12df 100644 --- a/dev-python/pycparser/Manifest +++ b/dev-python/pycparser/Manifest @@ -1,2 +1 @@ -DIST pycparser-2.20.tar.gz 161330 BLAKE2B 9a114e4b73e6c3c495bd78c393957146ec425eb5b15d72266cbf424f15e8d2e2e6402ef36d60a9dff41b393aab80fe1356befd25549517f398e129836a76b037 SHA512 ff0853c9f981b43b4f2e879350715c07b02cf9dab223d4980d8fe0a3138c98041b5f848a9355ae4f1cb45e7f137c03a88843008e18d77af9250e0d9c55f5ca1b DIST pycparser-2.21.tar.gz 170877 BLAKE2B ae6bf42dfc552bf1e3bfb5430cdb0c15b5e011ec53cbd03e0e2507c08a1a78690cefce2de134bd984caccc5dbde90661cb4c18df5c289217967213aac4d52404 SHA512 e61fbdde484d1cf74d4b27bdde40cf2da4b7028ca8ecd37c83d77473dab707d457321aecaf97da3b114c1d58a4eb200290b76f9c958044b57e5fed949895b5f0 diff --git a/dev-python/pycparser/pycparser-2.20-r1.ebuild b/dev-python/pycparser/pycparser-2.20-r1.ebuild deleted file mode 100644 index 2f543afcaf04..000000000000 --- a/dev-python/pycparser/pycparser-2.20-r1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# please keep this ebuild at EAPI 7 -- sys-apps/portage dep -EAPI=7 - -PYTHON_COMPAT=( python3_{7..10} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="C parser and AST generator written in Python" -HOMEPAGE="https://github.com/eliben/pycparser" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - -RDEPEND="dev-python/ply:=[${PYTHON_USEDEP}]" -BDEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -python_prepare_all() { - # remove the original files to guarantee their regen - rm pycparser/{c_ast,lextab,yacctab}.py || die - - # kill sys.path manipulations to force the tests to use built files - sed -i -e '/sys\.path/d' tests/*.py || die - - distutils-r1_python_prepare_all -} - -python_compile() { - distutils-r1_python_compile - - # note: tables built by py3.5+ are incompatible with older versions - # because of 100 group limit of 're' module -- just generate them - # separately optimized for each target instead - pushd "${BUILD_DIR}"/lib/pycparser > /dev/null || die - "${PYTHON}" _build_tables.py || die - popd > /dev/null || die -} - -python_test() { - # Skip tests if cpp is not in PATH - type -P cpp >/dev/null || return 0 - # change workdir to avoid '.' import - cd tests || die - "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}" -} - -python_install() { - distutils-r1_python_install - - # setup.py generates {c_ast,lextab,yacctab}.py with bytecode disabled. - python_optimize -} diff --git a/dev-python/pycparser/pycparser-2.21.ebuild b/dev-python/pycparser/pycparser-2.21.ebuild index 5369e364964d..8ab95ab95667 100644 --- a/dev-python/pycparser/pycparser-2.21.ebuild +++ b/dev-python/pycparser/pycparser-2.21.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND="dev-python/ply:=[${PYTHON_USEDEP}]" BDEPEND="${RDEPEND} diff --git a/dev-python/pygame/Manifest b/dev-python/pygame/Manifest index bf80956d1ccf..6abf32207f2e 100644 --- a/dev-python/pygame/Manifest +++ b/dev-python/pygame/Manifest @@ -6,3 +6,4 @@ DIST pygame-2.0.2.tar.gz 6309459 BLAKE2B 0cb23b4226d8d86f938cba08b67ab3bd847c9e4 DIST pygame-2.0.3.tar.gz 5804279 BLAKE2B fb58dd57a9288bdff3c0d01389e363968ebddd4b2b0fa92335c825297026c5858da4f73a870f84e0c3c7cf302bd9f4163807c97a348d581658df7e7695fcb4fb SHA512 1d2b4cb1e577f0244c2b92511b8fa0ab7bcd689d04a4451ced41e6d97758ba380d7e681e60abed26c81b96bd49d505cf481c67a466437b3cfdb547e744f22949 DIST pygame-2.1.0.tar.gz 5790847 BLAKE2B 1d2fc9f8d86ab823008cbb4c7431f44dd17ba5b356ed755a308737eb5a0db3c4033efe3fd4245bd740a33c6f4e5d2816daefc3785c747ef046b8f98aa8f58589 SHA512 b9394bea5dad54760297c75133ca56c99f89781340029f8866b169fcef3a7e12c16d00a18dd95f4fe3c13e393915d5b29b8d547465efb94f84b4875579166f1a DIST pygame-2.1.1.tar.gz 10132023 BLAKE2B 41f6beb02ada13208d71375f15e247c785261801f82dfc47dba22a28692b5aea01072e46f2fd281451ce778d5818812c74776bd791d47d465645fdef63ffefec SHA512 eea4be27bbf29cfeb98fb095121341e1366fed1cc1f3c16bb076adbd2f1c8583e51d34b93811259a80ea3e2a3bde83c8144e91cd83a7dde3cf730805c0b99ac3 +DIST pygame-2.1.2.gh.tar.gz 6100415 BLAKE2B 4b81c2f0abc2c2c4732ddb8f8e6d4bffa5169e3d3ee2d9ea2798d294623a9c70e2ff004825030606285124ef1347177b46adc676db450785e8420de45f37db34 SHA512 531cb0371853def7a3ddb8eb0110fbd58acaf1b2351d7518402c9a960baca705bb34da879015e7a6cd5f2f8af98c57e7bc732021a8f62ed9f90cacf068c9c2d6 diff --git a/dev-python/pygame/pygame-2.1.2.ebuild b/dev-python/pygame/pygame-2.1.2.ebuild new file mode 100644 index 000000000000..24fa1072e037 --- /dev/null +++ b/dev-python/pygame/pygame-2.1.2.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Python bindings for SDL multimedia library" +HOMEPAGE="https://www.pygame.org/" +SRC_URI=" + https://github.com/pygame/pygame/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="examples midi opengl test X" +RESTRICT="!test? ( test )" + +RDEPEND="dev-python/numpy[${PYTHON_USEDEP}] + media-libs/freetype + media-libs/libpng:0= + >=media-libs/sdl2-image-1.2.2 + >=media-libs/sdl2-mixer-1.2.4 + >=media-libs/sdl2-ttf-2.0.6 + >=media-libs/smpeg2-0.4.4-r1 + virtual/jpeg + midi? ( media-libs/portmidi ) + X? ( >=media-libs/libsdl2-1.2.5[opengl?,threads,video,X] ) + !X? ( >=media-libs/libsdl2-1.2.5[threads] )" +DEPEND="${RDEPEND} + test? ( + media-libs/sdl2-image[gif,jpeg,png] + media-libs/sdl2-mixer[mp3,vorbis,wav] + )" +# fontconfig used for fc-list +RDEPEND+=" + media-libs/fontconfig" +# util-linux provides script +BDEPEND=" + test? ( + media-libs/fontconfig + sys-apps/util-linux + )" + +src_prepare() { + if ! use midi; then + rm test/midi_test.py || die + fi + distutils-r1_src_prepare +} + +python_configure() { + PORTMIDI_INC_PORTTIME=1 LOCALBASE="${EPREFIX}/usr" \ + "${EPYTHON}" "${S}"/buildconfig/config.py -auto || die + + # Disable automagic dependency on PortMidi. + if ! use midi; then + sed -e "s:^pypm :#&:" -i Setup || die "sed failed" + fi +} + +python_test() { + local -x PYTHONPATH=${BUILD_DIR}/install/lib + local -x SDL_VIDEODRIVER=dummy + local -x SDL_AUDIODRIVER=disk + distutils_install_for_testing --via-root + script -eqc "${EPYTHON} -m pygame.tests" || die +} + +python_install() { + distutils-r1_python_install + + # Bug #497720 + rm -fr "${D}"$(python_get_sitedir)/pygame/{docs,examples,tests}/ || die +} + +python_install_all() { + distutils-r1_python_install_all + use examples && dodoc -r examples +} diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest index 273a7f03f942..6fa1da4ba01c 100644 --- a/dev-python/pylama/Manifest +++ b/dev-python/pylama/Manifest @@ -1,6 +1,3 @@ DIST pylama-7.7.1.tar.gz 34740 BLAKE2B a4bd5aed40c2c4e7bdb9f9968030f0954f0309cff80567b2252ee9576fdb4598714286bda63c22676789d4919662430ef2729089faa70b5cb590784eb47ef1f0 SHA512 298fabffcdf38e3e868e3965de87a0e761bc9dfcfe33320b53057c4e05598bcc22045481ec16ccb8df27f49ea41d6fef82b69fe7327905f93ce74d9350682cf0 -DIST pylama-8.0.4.tar.gz 34064 BLAKE2B e6ec937b7716d8a64c19e71b370e557a30d04d908ed2d1859df380c381a7eea93956ec4b58ca779e6029119a017ffce268a5528424783b33e815827dacb79b5d SHA512 c2ad152cadfaed14a6035eb49361439b8f80c7c633b5e1b185dd5dad140a4148f6d4445928e08cb8e92b205739ef75df6d49c66e4ad3cd002512cc2a8aba859b DIST pylama-8.0.6.tar.gz 34223 BLAKE2B 690a0a1197f6512e9511083aa079843f2ca99c9bdb5d74756531db79f7d39e8e0f60a0955b24bc7739edce0376eb79821a796978fb2365789a97628f03f240f8 SHA512 5bc75e5b2a0b141dbe2ca993d13833914980c735b84f3df766bf750909af1eeaba0d554845d8c09f0d8186ff48c8330d9ffa5b565a577ef6506f32672a2c9209 -DIST pylama-8.3.3.tar.gz 36292 BLAKE2B e9ed2156c90af1ef33b8a3875dffbe6ee939e70b3a35e0bd9c6f29d5de6ef929e73cf7eda773f6693fdce96e763e81f336fc983a32f9cfa8d124441d5d34b060 SHA512 57db11480752a650dc2871bd8be139492cd5273c3770aefab160855d601e524a24754cf3b4e60973ce00072c1025749c7f9d9d39a5447ca27ab60979e743a72d -DIST pylama-8.3.5.tar.gz 36117 BLAKE2B 6ae876b7e1e0dbfba08c9b7460cbab129b1b43f79a274c191fb7710966fac4b100b1e1c81ac3a440c33b9ed076fb3a60eb5d732f484fc7150c096a7207c3b4d4 SHA512 8be5aa0490ad7e08e6def974c9b8c83c457679dfbdb2b7c161c71fc3f5f68b7e40c96ee41a57d1a1b8689356e22a028aa22400c747c17aa520b5be3e219569e7 DIST pylama-8.3.6.tar.gz 36190 BLAKE2B f0c9944d3aa205c9f52fdfab6b47ad5ad08f1865db22eef20add0652fcb4355f878026aad9f1babbfcb4f98c13bc5cbaa069d9d7b5c7a775d994a8952f8a8cc5 SHA512 c279f3005e354be448f42addcfeae6025e1dd4acf84e5de0c3ae707ceac4f98e43a07f43be347b26bfb8db4167945db1db547ed7bd9eb73ca78bbc92d26fdfff diff --git a/dev-python/pylama/pylama-8.0.4.ebuild b/dev-python/pylama/pylama-8.0.4.ebuild deleted file mode 100644 index 56e1af7e7500..000000000000 --- a/dev-python/pylama/pylama-8.0.4.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Code audit tool for python" -HOMEPAGE="https://github.com/klen/pylama" -SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}] - >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}] - >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}] - >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/eradicate[${PYTHON_USEDEP}] - dev-python/mypy[${PYTHON_USEDEP}] - dev-python/pylint[${PYTHON_USEDEP}] - dev-python/radon[${PYTHON_USEDEP}] - dev-vcs/git - ) -" - -distutils_enable_sphinx docs -distutils_enable_tests pytest - -EPYTEST_DESELECT=( - # not packaged - tests/test_linters.py::test_quotes - tests/test_linters.py::test_vulture -) diff --git a/dev-python/pylama/pylama-8.0.6.ebuild b/dev-python/pylama/pylama-8.0.6.ebuild index dd58b13db679..c24f6a0bf330 100644 --- a/dev-python/pylama/pylama-8.0.6.ebuild +++ b/dev-python/pylama/pylama-8.0.6.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" RDEPEND=" >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}] diff --git a/dev-python/pylama/pylama-8.3.3.ebuild b/dev-python/pylama/pylama-8.3.3.ebuild deleted file mode 100644 index fab10b0885f6..000000000000 --- a/dev-python/pylama/pylama-8.3.3.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Code audit tool for python" -HOMEPAGE="https://github.com/klen/pylama" -SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~mips ~x86" - -RDEPEND=" - >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}] - >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}] - >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}] - >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/eradicate[${PYTHON_USEDEP}] - dev-python/mypy[${PYTHON_USEDEP}] - dev-python/pylint[${PYTHON_USEDEP}] - dev-python/radon[${PYTHON_USEDEP}] - dev-vcs/git - ) -" - -distutils_enable_sphinx docs -distutils_enable_tests pytest - -EPYTEST_DESELECT=( - # not packaged - tests/test_linters.py::test_quotes - tests/test_linters.py::test_vulture -) diff --git a/dev-python/pylama/pylama-8.3.5.ebuild b/dev-python/pylama/pylama-8.3.5.ebuild deleted file mode 100644 index fab10b0885f6..000000000000 --- a/dev-python/pylama/pylama-8.3.5.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Code audit tool for python" -HOMEPAGE="https://github.com/klen/pylama" -SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~mips ~x86" - -RDEPEND=" - >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}] - >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}] - >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}] - >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/eradicate[${PYTHON_USEDEP}] - dev-python/mypy[${PYTHON_USEDEP}] - dev-python/pylint[${PYTHON_USEDEP}] - dev-python/radon[${PYTHON_USEDEP}] - dev-vcs/git - ) -" - -distutils_enable_sphinx docs -distutils_enable_tests pytest - -EPYTEST_DESELECT=( - # not packaged - tests/test_linters.py::test_quotes - tests/test_linters.py::test_vulture -) diff --git a/dev-python/pylama/pylama-8.3.6.ebuild b/dev-python/pylama/pylama-8.3.6.ebuild index fab10b0885f6..8db3e9f6169a 100644 --- a/dev-python/pylama/pylama-8.3.6.ebuild +++ b/dev-python/pylama/pylama-8.3.6.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~mips ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~x86" RDEPEND=" >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}] diff --git a/dev-python/pyphen/Manifest b/dev-python/pyphen/Manifest index 2a4124489d0b..76b09312f4a3 100644 --- a/dev-python/pyphen/Manifest +++ b/dev-python/pyphen/Manifest @@ -1 +1,2 @@ DIST Pyphen-0.11.0.tar.gz 1967507 BLAKE2B 0bea108e78894082f59693a4ffa6c7f9f6aaec5fc10d0ecf4dc9b6c12fbcfde2cdd835e813b1041797cbc30d5e6e33f5626a517e8cc0535a7a001c8ac779fa4c SHA512 cdb4ee065698e27a4662984b76ee5c494c0d8e7d6b377667399f40d0dffc2b1d730956f3fa1fe73a08c17601152c99321b6fd5dd4d48361c54e9a6b635f02f0d +DIST Pyphen-0.12.0.tar.gz 1969022 BLAKE2B 9b7f6712a2085507684ddde52401a75b05d0a13a530572f0f08b9143168a8ea61a5ee73983606b19f88ff23f3c5344aa87722c3986291c7349f82e95dd3b1f19 SHA512 abecf0773f59b7a757b47c6512f1bf8e98f4709b285f04cf235c085ab4767eb95deab8ede4b792d6f4a6156d47287f9f712cb658939ed5afc475644e282adbd3 diff --git a/dev-python/pyphen/pyphen-0.12.0.ebuild b/dev-python/pyphen/pyphen-0.12.0.ebuild new file mode 100644 index 000000000000..b70a51d50b40 --- /dev/null +++ b/dev-python/pyphen/pyphen-0.12.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Python module for hyphenation using hunspell dictionaries" +HOMEPAGE="https://github.com/Kozea/Pyphen" +SRC_URI="https://github.com/Kozea/Pyphen/archive/${PV}.tar.gz -> ${P^}.tar.gz" +S=${WORKDIR}/${P^} + +LICENSE="GPL-2+ LGPL-2+ MPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND=" + >=dev-python/pyproject2setuppy-18[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest + +src_prepare() { + # avoid dep on extra plugins + sed -i -e '/addopts/d' pyproject.toml || die + distutils-r1_src_prepare +} diff --git a/dev-python/pytables/Manifest b/dev-python/pytables/Manifest index bb12893a62e8..0ef697796364 100644 --- a/dev-python/pytables/Manifest +++ b/dev-python/pytables/Manifest @@ -1 +1,2 @@ DIST tables-3.6.1.tar.gz 4641089 BLAKE2B 4ef44b1263f40babe6719bac911ab191e9cb0c58c377705b755fa83f1fba5af1d0fab10b0b45bd6af619a9dce4842a80afad8d8fbab64c3be4f35a1b3f117ee3 SHA512 7f018b70251095049bce9075be4e19f72efba9d39121a35c4521f634b1dd5b81ab6de47df3bb44ad6b8b2dbdbff4e6d0985ad1a7b2f13b44f920c0935e5830ff +DIST tables-3.7.0.tar.gz 8227955 BLAKE2B 0d5b7b765375c4787f1210138e5fd02e3c0ce429ef209a3a8d4fd3bc094f68486ab6f4d0a960ce86efea6991ed691ef2a3e9e8f37a49fe91cb8d6372cadea80e SHA512 eaa368d063b5fad87e6d0f9ab6f02da0b2a3542740a52fe8c2bb58e41121495d07b6d2710ad402a28891294aa61a11238c6a7e2cf2933a1bb11391b79cf4fd13 diff --git a/dev-python/pytables/pytables-3.7.0.ebuild b/dev-python/pytables/pytables-3.7.0.ebuild new file mode 100644 index 000000000000..48edb62f3560 --- /dev/null +++ b/dev-python/pytables/pytables-3.7.0.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_REQ_USE="threads(+)" + +MY_PN=tables +MY_P=${MY_PN}-${PV} + +inherit distutils-r1 + +DESCRIPTION="Hierarchical datasets for Python" +HOMEPAGE="https://www.pytables.org/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="doc examples test" +RESTRICT="!test? ( test )" + +# See https://github.com/PyTables/PyTables/issues/912 for hdf5 upper bound +DEPEND=" + app-arch/bzip2:0= + app-arch/lz4:0= + >=app-arch/zstd-1.0.0:= + >=dev-libs/c-blosc-1.11.1:0= + dev-libs/lzo:2= + >=dev-python/numpy-1.8.1[${PYTHON_USEDEP}] + nschloe/pytest-codeblocks - exdown + pytest-codeblocks diff --git a/dev-python/pytest-codeblocks/pytest-codeblocks-0.12.2.ebuild b/dev-python/pytest-codeblocks/pytest-codeblocks-0.12.2.ebuild new file mode 100644 index 000000000000..f1e55b3e131e --- /dev/null +++ b/dev-python/pytest-codeblocks/pytest-codeblocks-0.12.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 2019-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Extract code blocks from markdown" +HOMEPAGE="https://github.com/nschloe/pytest-codeblocks/" +SRC_URI=" + https://github.com/nschloe/pytest-codeblocks/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=dev-python/pytest-6[${PYTHON_USEDEP}]" + +distutils_enable_tests --install pytest + +python_test() { + distutils_install_for_testing + epytest -p pytester +} diff --git a/dev-python/exdown/exdown-0.9.0.ebuild b/dev-python/pytest-codeblocks/pytest-codeblocks-0.9.0.ebuild similarity index 86% rename from dev-python/exdown/exdown-0.9.0.ebuild rename to dev-python/pytest-codeblocks/pytest-codeblocks-0.9.0.ebuild index e065c9d437e9..9b5a314061f6 100644 --- a/dev-python/exdown/exdown-0.9.0.ebuild +++ b/dev-python/pytest-codeblocks/pytest-codeblocks-0.9.0.ebuild @@ -8,13 +8,11 @@ PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 -MY_P=pytest-codeblocks-${PV} DESCRIPTION="Extract code blocks from markdown" HOMEPAGE="https://github.com/nschloe/pytest-codeblocks/" SRC_URI=" https://github.com/nschloe/pytest-codeblocks/archive/v${PV}.tar.gz - -> ${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" + -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" diff --git a/dev-python/pytest-httpbin/Manifest b/dev-python/pytest-httpbin/Manifest index 43084e956131..7e7f2a27648f 100644 --- a/dev-python/pytest-httpbin/Manifest +++ b/dev-python/pytest-httpbin/Manifest @@ -1 +1,2 @@ DIST pytest-httpbin-1.0.0.gh.tar.gz 17813 BLAKE2B b7e0ad9f131e4d236161b66b1d6d8e6087285a6d52df1accb044b30bcdac6c5f3350e9dbfe1cf33ab64b6d6aac6b463de81c31fd12dd950426b6ed8ef4eaf289 SHA512 2794134cc005cb969752e0c1119459d3f1e106f679942880a6b9ff507f2ee31c8ac4146a9c01b9a920368ea516443954b1b7044f7b1c270fe251f7d36adf7661 +DIST pytest-httpbin-1.0.1.gh.tar.gz 18036 BLAKE2B 1277118a83d059f23c06758d6a5e83b78f09ba3bd44458f18aebdad06b7266a3deb9ee00f10732c552fddb42673dfe3f5862195f44ce48a224961b5df81dcae7 SHA512 3a11073d85478e7b748cfae5a7f639b2cf6ebc396ebb9972f39ead3d869ab1abaf0afa90f113e2393652ed08621716e54c9c5dcb41c59ff67341f7b28445544d diff --git a/dev-python/pytest-httpbin/pytest-httpbin-1.0.1.ebuild b/dev-python/pytest-httpbin/pytest-httpbin-1.0.1.ebuild new file mode 100644 index 000000000000..1413b57ca6d2 --- /dev/null +++ b/dev-python/pytest-httpbin/pytest-httpbin-1.0.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} pypy3 ) +inherit distutils-r1 + +DESCRIPTION="Easily test your HTTP library against a local copy of httpbin" +HOMEPAGE="https://github.com/kevin1024/pytest-httpbin + https://pypi.org/project/pytest-httpbin/" +SRC_URI="https://github.com/kevin1024/pytest-httpbin/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" + +RDEPEND=" + dev-python/httpbin[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( dev-python/requests[${PYTHON_USEDEP}] ) +" + +PATCHES=( + "${FILESDIR}"/pytest-httpbin-1.0.0-pypy3-hang.patch +) + +distutils_enable_tests pytest diff --git a/dev-python/pytest-httpx/Manifest b/dev-python/pytest-httpx/Manifest index c2365991ac3d..ec507f012f65 100644 --- a/dev-python/pytest-httpx/Manifest +++ b/dev-python/pytest-httpx/Manifest @@ -1,3 +1,4 @@ DIST pytest-httpx-0.13.0.tar.gz 21515 BLAKE2B 691ce45dd2b27c8f47724e3356ba96e62a0d6a7ce7d3feea68295a873c12f9a3df00d5b25aad7ef8a1154e887077ae6f6c1b12f3685a0669534a0d0ee8aae68c SHA512 514d9acacdfd60d13b5ce2c5ebe46d0e4d16c1b06fd359b0b9515ae2fa9091296537f369882a78bdfad48e9a0aad0b2f8c172c2e54f4ae9e23ba03220c7c17fb DIST pytest-httpx-0.17.1.tar.gz 23310 BLAKE2B 3b26a50380916a556657a02bc4d44ceb523261f14404eaf3461dae8adb99e913e820c55942bc200b6d23f85447bf74e37c8cbfea2c934489e5d91a56f47b186a SHA512 8fa9447bf50f9bf46ad781abbf9e5d46609e2796a6ec26d39b15c1cda99fc936af6b540c27f9cbe4f40948f041ceedd074c312815fe5ea6b023da20112c83f69 DIST pytest-httpx-0.17.2.tar.gz 23385 BLAKE2B 17a00a7c733bca7faf8e05914c0744288fe8555bc9d8f94d45ce0162b86417fcf608d339d9d4a24514e2897db879a6d13c41f665a8cf5d3c1ac1769c246a582e SHA512 aaeded94d204d53bf96f802668449361c291d4b0accbe614d8c80d609482f6b10945afb255b81d4199187f3c50cb98d35d5acfd75423283907223ca924b85444 +DIST pytest-httpx-0.17.3.tar.gz 23737 BLAKE2B 1f335542c1d6940d68b023682df6a1fabe93e8e21b70e113830bc4895481fe1cbf074490b176ecd91f595df960790f7e305c3809af3ba5039b96c8748b40ee40 SHA512 b3c2dc8c5015f44a511659b51843cb9cf8ada163ebd7fe4ccb50438d6e191fdc84bb84f38fcd0c27dbfe0592314da0df8d319caecad32f37e3a30de40b496299 diff --git a/dev-python/pytest-httpx/pytest-httpx-0.17.3.ebuild b/dev-python/pytest-httpx/pytest-httpx-0.17.3.ebuild new file mode 100644 index 000000000000..d3b09a2a7442 --- /dev/null +++ b/dev-python/pytest-httpx/pytest-httpx-0.17.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +MY_PN="${PN/-/_}" +DESCRIPTION="Send responses to HTTPX using pytest" +HOMEPAGE="https://colin-b.github.io/pytest_httpx/" +SRC_URI="https://github.com/Colin-b/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + =dev-python/httpx-0.21*[${PYTHON_USEDEP}] + =dev-python/pytest-6*[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests --install pytest diff --git a/dev-python/radon/radon-5.1.0.ebuild b/dev-python/radon/radon-5.1.0.ebuild index 88f1939ada38..1e1c895ccfcf 100644 --- a/dev-python/radon/radon-5.1.0.ebuild +++ b/dev-python/radon/radon-5.1.0.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 x86" RDEPEND=" dev-python/colorama[${PYTHON_USEDEP}] diff --git a/dev-python/rpy/Manifest b/dev-python/rpy/Manifest index ccb5384eeb5c..b7a72bff3330 100644 --- a/dev-python/rpy/Manifest +++ b/dev-python/rpy/Manifest @@ -1 +1,2 @@ DIST rpy2-3.4.2.tar.gz 186064 BLAKE2B 5c800f546240cc33e6341973adae813edcdaa88e90ea0274e97075bc4516ced20828ccc6010ae23aead0b227639158240dae9b678790e0d28f974f10e9ac0e5f SHA512 e754d082bf392de582829bc078b512a071d0c0aa79ce3ed3692ad88b3816863b520a4ef9bbeaccbb2a7284685e470f345ba103e3db78a1c95187c0b554565314 +DIST rpy2-3.4.5.tar.gz 194433 BLAKE2B 588c1c270d69b0214e77e586c4c66e78ae8912b6c10a2fe082be64dc75dff574fa0ab6d5bc500b8ff6a199de8540f508467bf0210f1c66b779857dee767262ab SHA512 296056e1c64a4555a1ccef74cfb580674034155a42b8e7c83feb8bb7d7a6d80b8e2f2966df53a6ed8612718ad169755a7994c5635dda1d1c8af1b549a5863935 diff --git a/dev-python/rpy/rpy-3.4.5.ebuild b/dev-python/rpy/rpy-3.4.5.ebuild new file mode 100644 index 000000000000..425238d61ed3 --- /dev/null +++ b/dev-python/rpy/rpy-3.4.5.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_REQ_USE="sqlite" +inherit distutils-r1 virtualx + +MYSLOT=2 +MY_PN=${PN}${MYSLOT} +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Python interface to the R Programming Language" +HOMEPAGE="https://rpy.sourceforge.net/ + https://pypi.org/project/rpy2/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="AGPL-3 GPL-2 LGPL-2.1 MPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +# ggplot2 is a test dep but not in portage +RESTRICT="test" + +RDEPEND=" + >=dev-lang/R-3.2 + dev-python/cffi[${PYTHON_USEDEP}] + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + >=dev-python/pandas-0.13.1[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/tzlocal[${PYTHON_USEDEP}]" +PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]" + +python_test() { + cd "${BUILD_DIR}"/lib || die + virtx "${EPYTHON}" -m 'rpy2.tests' +} diff --git a/dev-python/scipy/scipy-1.7.3.ebuild b/dev-python/scipy/scipy-1.7.3.ebuild index 26f3be31e189..f0ab5ba94350 100644 --- a/dev-python/scipy/scipy-1.7.3.ebuild +++ b/dev-python/scipy/scipy-1.7.3.ebuild @@ -21,7 +21,7 @@ SRC_URI=" LICENSE="BSD LGPL-2" SLOT="0" -KEYWORDS="amd64 ~arm arm64 -hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86" +KEYWORDS="amd64 arm arm64 -hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86" IUSE="doc +pythran sparse" DEPEND=" diff --git a/dev-python/tappy/Manifest b/dev-python/tappy/Manifest index 74f6caad1353..79eeb27bb084 100644 --- a/dev-python/tappy/Manifest +++ b/dev-python/tappy/Manifest @@ -1 +1,2 @@ DIST tap.py-3.0.tar.gz 141764 BLAKE2B 0d65d9c0691deef31475cf6db172e41340e112cacda240d32a55338665632613f09c98d0c7dcfbf28be997079f789054d71f1059fb74228507041163df9710a1 SHA512 58b0928dd28ba525d9bb5edfab5606cb67af15e75a5f03d2648280d30377e2aa23b314ed41dba3b09b7dfa1aefead53674df43b6087e552b9aa937472838e7db +DIST tap.py-3.1.tar.gz 133208 BLAKE2B a41e4d6e06cfc4283ea8e1df1895569a35d7041721760a16a626d99e60bde0f4b45dc517408b67c893d1eafc3aebe9e7fab4eb158d1e13a0b99a85602beaf440 SHA512 4a3b5c5fb54ee1343cfee9bc154e812066d745c020a2c3391761c3e407b7b8428412c799df4963a385e4563ffe3b31e16055cb76ab5940ab6156e57dcf4a4d3a diff --git a/dev-python/tappy/tappy-3.1.ebuild b/dev-python/tappy/tappy-3.1.ebuild new file mode 100644 index 000000000000..547f64ca749c --- /dev/null +++ b/dev-python/tappy/tappy-3.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 optfeature + +MY_PN=tap.py +DESCRIPTION="Test Anything Protocol (TAP) tools" +HOMEPAGE="https://github.com/python-tap/tappy https://pypi.org/project/tap.py/" +SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" +S=${WORKDIR}/${MY_PN}-${PV} + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +BDEPEND=" + dev-python/Babel[${PYTHON_USEDEP}] + test? ( + dev-python/more-itertools[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + )" + +distutils_enable_tests unittest +distutils_enable_sphinx docs + +pkg_postinst() { + optfeature "YAML blocks associated with test results" \ + "dev-python/more-itertools dev-python/pyyaml" +} diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.16.ebuild b/dev-python/tikzplotlib/tikzplotlib-0.9.16.ebuild index 22f8a8cb1971..5083ad4fc9fb 100644 --- a/dev-python/tikzplotlib/tikzplotlib-0.9.16.ebuild +++ b/dev-python/tikzplotlib/tikzplotlib-0.9.16.ebuild @@ -25,8 +25,8 @@ RDEPEND=" BDEPEND=" test? ( - dev-python/exdown[${PYTHON_USEDEP}] dev-python/pandas[${PYTHON_USEDEP}] + dev-python/pytest-codeblocks[${PYTHON_USEDEP}] dev-python/scipy[${PYTHON_USEDEP}] )" diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.17.ebuild b/dev-python/tikzplotlib/tikzplotlib-0.9.17.ebuild index 444f03ff1e9c..32636893a831 100644 --- a/dev-python/tikzplotlib/tikzplotlib-0.9.17.ebuild +++ b/dev-python/tikzplotlib/tikzplotlib-0.9.17.ebuild @@ -25,8 +25,8 @@ RDEPEND=" BDEPEND=" test? ( - dev-python/exdown[${PYTHON_USEDEP}] dev-python/pandas[${PYTHON_USEDEP}] + dev-python/pytest-codeblocks[${PYTHON_USEDEP}] dev-python/scipy[${PYTHON_USEDEP}] )" diff --git a/dev-python/tomli-w/tomli-w-1.0.0.ebuild b/dev-python/tomli-w/tomli-w-1.0.0.ebuild index 44dbad289b54..9d57224d0c51 100644 --- a/dev-python/tomli-w/tomli-w-1.0.0.ebuild +++ b/dev-python/tomli-w/tomli-w-1.0.0.ebuild @@ -18,7 +18,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~sparc x86" BDEPEND=" test? ( dev-python/tomli[${PYTHON_USEDEP}] )" diff --git a/dev-python/tox/Manifest b/dev-python/tox/Manifest index f10eb6c02733..9c408f778335 100644 --- a/dev-python/tox/Manifest +++ b/dev-python/tox/Manifest @@ -1 +1,2 @@ DIST tox-3.24.4.tar.gz 306760 BLAKE2B 332c99d021bc3c25549fd95d051baaa1f0dc3aaf776928320826bb7e6bce6444fd5a993e1dbff3a4ebbde9dbb59e30d07eae4b04096294b3a186b130b8312587 SHA512 49e2cb74f119b5cc049d2a64479e56307cea1f36a5586840cca12cb8f4ce8a2ba991cc6142bef7f095a7d32b44f7513f89cce56d89deaff0e12194ceb3da6249 +DIST tox-3.24.5.tar.gz 306305 BLAKE2B a6d3338d21068d9123505a29da3beec4fd5a15c263bcaf5ba62f65a253d04e11d453bef159d06e88b2cbac9a895d786d0d9444cc16cd3de7a868eac6919b82ea SHA512 4e1ef81c978977e905edbdc00ff971eb4132b9009ce21456fcebf95d8ee2c583e04e464f1db5ca6e5454f4f1ad0353ffc9df7898f6389fe8084dc5b9726ca59b diff --git a/dev-python/tox/tox-3.24.5.ebuild b/dev-python/tox/tox-3.24.5.ebuild new file mode 100644 index 000000000000..091c40dee0ce --- /dev/null +++ b/dev-python/tox/tox-3.24.5.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} pypy3 ) +inherit distutils-r1 + +DESCRIPTION="virtualenv-based automation of test activities" +HOMEPAGE="https://tox.readthedocs.io https://github.com/tox-dev/tox https://pypi.org/project/tox/" +SRC_URI="https://github.com/tox-dev/tox/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +# doc disabled because of missing deps in tree +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-python/filelock[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + >=dev-python/pluggy-0.12[${PYTHON_USEDEP}] + dev-python/pip[${PYTHON_USEDEP}] + dev-python/py[${PYTHON_USEDEP}] + >=dev-python/six-1.14[${PYTHON_USEDEP}] + dev-python/toml[${PYTHON_USEDEP}] + >=dev-python/virtualenv-16.0.0[${PYTHON_USEDEP}]" +# TODO: figure out how to make tests work without the package being +# installed first. +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + >=dev-python/flaky-3.4.0[${PYTHON_USEDEP}] + >=dev-python/freezegun-0.3.11[${PYTHON_USEDEP}] + >=dev-python/pytest-4.0.0[${PYTHON_USEDEP}] + dev-python/pytest-mock[${PYTHON_USEDEP}] + )" + +src_configure() { + export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} +} + +python_test() { + local EPYTEST_DESELECT=( + # broken without Internet + tests/unit/session/test_provision.py::test_provision_non_canonical_dep + tests/integration/test_provision_int.py::test_provision_interrupt_child + + # expects python2 to exist + tests/unit/interpreters/test_interpreters.py::test_tox_get_python_executable + + # fragile and relies on checking stdout + tests/unit/util/test_spinner.py::test_spinner_progress + ) + + [[ ${EPYTHON} != pypy3 ]] && EPYTEST_DESELECT+=( + # TODO? + tests/unit/interpreters/test_interpreters.py::test_find_alias_on_path + + # broken without tox installed first + # TODO: why it can't import itself? + tests/integration/test_parallel_interrupt.py::test_parallel_interrupt + ) + + distutils_install_for_testing --via-venv + epytest --no-network +} diff --git a/dev-python/twine/Manifest b/dev-python/twine/Manifest index b09b75184438..5a6fee3e87f8 100644 --- a/dev-python/twine/Manifest +++ b/dev-python/twine/Manifest @@ -1,3 +1,2 @@ -DIST twine-3.4.2.tar.gz 212266 BLAKE2B 602bb72f4be1c0d28341fb3378a5d55737c14555495640ae3414a1c8e7ca0c06b2c2ce3c358130251c02f0a51b61eb362a1e999c3945d4d1d7afd7bcd4d17807 SHA512 3f6d8992294a35e2a26be64f56c88d31af63b05f3f477d545bc82d928ca1b9939d23fa489eca5232502a49def77d489eaf6a29663d150f78b5cdb99749ff9b50 DIST twine-3.6.0.tar.gz 211971 BLAKE2B 763f021e374c86749bca77ca67a5fe534acf333464d6cc2f978de4625abc09b7574aa31de927300983eb6feb801e77a169f11deb4edc5036df73943778f5844d SHA512 41da4d89ac69c692a98545aefffd9afd4c7b0287179807906504b4121bf9257095b227ec2966d98983939fa76fb8509f6ffa2577c0e7b4c7f43f614f44745460 DIST twine-3.7.0.tar.gz 212591 BLAKE2B 116d96a058cb53e0626747aaeae40c63fd6ece4ed8ef537c3890f99226f34827b65e5e894f5f04a24999d5ca2bcf182505e08075c4ff8b979d7be71e05f645ef SHA512 d7ddfdfcbaa7a5e3eba3657a06da090eeecbf373646e64d659f420fae4ba10c16c2c02e85bdf9c1f050b86177f19c85aa20183ad9d546cb053a11d60db0851f3 diff --git a/dev-python/twine/twine-3.4.2.ebuild b/dev-python/twine/twine-3.4.2.ebuild deleted file mode 100644 index 6ec1e40a7ffa..000000000000 --- a/dev-python/twine/twine-3.4.2.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_SETUPTOOLS=pyproject.toml -PYTHON_COMPAT=( python3_{8..10} pypy3 ) -inherit distutils-r1 - -DESCRIPTION="Collection of utilities for publishing packages on PyPI" -HOMEPAGE="https://twine.readthedocs.io/ https://github.com/pypa/twine https://pypi.org/project/twine/" -SRC_URI="https://github.com/pypa/twine/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86 ~x64-macos" - -RDEPEND=" - >=dev-python/colorama-0.4.3[${PYTHON_USEDEP}] - >=dev-python/importlib_metadata-3.6[${PYTHON_USEDEP}] - >=dev-python/keyring-15.1[${PYTHON_USEDEP}] - >=dev-python/pkginfo-1.4.2[${PYTHON_USEDEP}] - >=dev-python/readme_renderer-21.0[${PYTHON_USEDEP}] - >=dev-python/requests-2.20.0[${PYTHON_USEDEP}] - >=dev-python/requests-toolbelt-0.8.0[${PYTHON_USEDEP}] - >=dev-python/rfc3986-1.4.0[${PYTHON_USEDEP}] - >=dev-python/tqdm-4.14[${PYTHON_USEDEP}] -" -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] - test? ( - dev-python/jaraco-envs[${PYTHON_USEDEP}] - dev-python/jaraco-functools[${PYTHON_USEDEP}] - dev-python/munch[${PYTHON_USEDEP}] - dev-python/portend[${PYTHON_USEDEP}] - dev-python/pretend[${PYTHON_USEDEP}] - dev-python/pypiserver[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests --install pytest - -python_prepare_all() { - # requires internet - rm -f tests/test_integration.py || die - # pytest-socket dep relevant only to test_integration, and upstream - # disables it anyway - sed -i -e '/--disable-socket/d' pytest.ini || die - sed -i -e '/--cov/d' pytest.ini || die - - distutils-r1_python_prepare_all - export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} -} diff --git a/dev-python/twine/twine-3.6.0.ebuild b/dev-python/twine/twine-3.6.0.ebuild index 9b2c0e01151e..6ec1e40a7ffa 100644 --- a/dev-python/twine/twine-3.6.0.ebuild +++ b/dev-python/twine/twine-3.6.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/pypa/twine/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86 ~x64-macos" RDEPEND=" >=dev-python/colorama-0.4.3[${PYTHON_USEDEP}] diff --git a/dev-python/virtualenv/Manifest b/dev-python/virtualenv/Manifest index 952885585766..c571b96f5701 100644 --- a/dev-python/virtualenv/Manifest +++ b/dev-python/virtualenv/Manifest @@ -1 +1,2 @@ DIST virtualenv-20.10.0.tar.gz 9007218 BLAKE2B 1fd37b38679b7375c1eb6e9644418b1653cb6a8dab194c8553fa113cf4a801a7c1d5e6490067767cfb198a0ef2b5ab9cf166783b9c6fac0b2c8b538949c11804 SHA512 df940aa29801a39d39be46d3518a99e93efb2113650abf81d00b4545183ec6806823ce8b754c5a3c951cb64e941944421046c709ed3de6a925489e5ac1988d48 +DIST virtualenv-20.11.1.tar.gz 9952979 BLAKE2B d8e44f5a8fedfca4eed79798be74ccfca86af2cacc076d797832028363c2d5269194e711d4511a415420285bc408373a641248a5a96cfaea326f60e023129d65 SHA512 c378bd088d9f2f6a07128d6d04b71554ad7c4de6227baea68ea486c8e10c99c40818eb9bf98cb4c950e64d0aeed4d2be40c101fbd6005d48d2eccaea0382d581 diff --git a/dev-python/virtualenv/virtualenv-20.11.1.ebuild b/dev-python/virtualenv/virtualenv-20.11.1.ebuild new file mode 100644 index 000000000000..dc6456e35f41 --- /dev/null +++ b/dev-python/virtualenv/virtualenv-20.11.1.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} pypy3 ) +DISTUTILS_USE_SETUPTOOLS=manual + +inherit distutils-r1 + +DESCRIPTION="Virtual Python Environment builder" +HOMEPAGE=" + https://virtualenv.pypa.io/en/stable/ + https://pypi.org/project/virtualenv/ + https://github.com/pypa/virtualenv/ +" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +SLOT="0" + +RDEPEND=" + >=dev-python/backports-entry_points_selectable-1.0.4[${PYTHON_USEDEP}] + >=dev-python/distlib-0.3.1[${PYTHON_USEDEP}] + >=dev-python/filelock-3[${PYTHON_USEDEP}] + >=dev-python/platformdirs-2[${PYTHON_USEDEP}] + >=dev-python/setuptools-41[${PYTHON_USEDEP}] + >=dev-python/six-1.9.0[${PYTHON_USEDEP}]" +# coverage is used somehow magically in virtualenv, maybe it actually +# tests something useful +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] + test? ( + dev-python/coverage[${PYTHON_USEDEP}] + dev-python/flaky[${PYTHON_USEDEP}] + >=dev-python/pip-20.0.2[${PYTHON_USEDEP}] + >=dev-python/pytest-freezegun-0.4.1[${PYTHON_USEDEP}] + >=dev-python/pytest-mock-2.0.0[${PYTHON_USEDEP}] + >=dev-python/pytest-timeout-1.3.4[${PYTHON_USEDEP}] + dev-python/wheel[${PYTHON_USEDEP}] + >=dev-python/packaging-20.0[${PYTHON_USEDEP}] + )" + +# (unpackaged deps) +#distutils_enable_sphinx docs \ +# dev-python/sphinx-argparse \ +# dev-python/sphinx_rtd_theme \ +# dev-python/towncrier +distutils_enable_tests pytest + +src_configure() { + export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} +} + +python_test() { + local EPYTEST_DESELECT=( + tests/unit/activation/test_xonsh.py + tests/unit/seed/embed/test_bootstrap_link_via_app_data.py::test_seed_link_via_app_data + tests/unit/create/test_creator.py::test_cross_major + ) + [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=( + 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-isolated]' + 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-global]' + 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-isolated]' + 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-global]' + 'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-isolated]' + 'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-global]' + 'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-isolated]' + 'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-global]' + 'tests/unit/create/test_creator.py::test_zip_importer_can_import_setuptools' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9-64-bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9--bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.10-64-bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.10--bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7-64-bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7--bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3-64-bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3--bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9-64-bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9--bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.10-64-bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.10--bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7-64-bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7--bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3-64-bin-]' + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3--bin-]' + ) + + distutils_install_for_testing + epytest +} + +pkg_postinst() { + elog "Please note that while virtualenv package no longer supports" + elog "Python 2.7, you can still create py2.7 virtualenvs via:" + elog " $ virtualenv -p 2.7 ..." +} diff --git a/dev-python/yapf/Manifest b/dev-python/yapf/Manifest index ca4e15ddca9b..ef9dc5172a8c 100644 --- a/dev-python/yapf/Manifest +++ b/dev-python/yapf/Manifest @@ -1 +1,2 @@ DIST yapf-0.31.0.tar.gz 176856 BLAKE2B 080867363df59615d1df77ef51645cd68d931251807da83c5b9d8737a89b01e8dee7457a2b524a76ad2eb21b859ad78168a30f706ef70c3b07bcb94a98990752 SHA512 5f376e985e182aab289c41e4071fd98c0784e5292974e2efcc4beaaca68cb83068b297e228a46f51f0d9370634dbd32948bdbd03e6b65c76b43efba0fe0d3454 +DIST yapf-0.32.0.tar.gz 178621 BLAKE2B b2132e3fffb96113700e322bba3f49ded0fe417de901522793564d5830951e9f2017c576fb89c5e423f4f547c95659040c2a4fc923887d9fb941e219b21f0cf6 SHA512 c1a05a04f7558a5b51899c29010bedc105c4a4bad4b5358a903a22a39f451e03369d2b4e670ecb44a857a8fef2bf438d9da0afcbdd3a336cf037bbf480d19878 diff --git a/dev-python/yapf/yapf-0.32.0.ebuild b/dev-python/yapf/yapf-0.32.0.ebuild new file mode 100644 index 000000000000..93675f93d2f4 --- /dev/null +++ b/dev-python/yapf/yapf-0.32.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 2018-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="A formatter for Python files" +HOMEPAGE="https://github.com/google/yapf" +SRC_URI="https://github.com/google/yapf/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + test? ( dev-python/toml[${PYTHON_USEDEP}] )" + +python_test() { + "${EPYTHON}" -m unittest discover -v -p '*_test.py' || + die "Tests failed with ${EPYTHON}" +} diff --git a/dev-qt/Manifest.gz b/dev-qt/Manifest.gz index a33f769cdf7f..61c7cb988ded 100644 Binary files a/dev-qt/Manifest.gz and b/dev-qt/Manifest.gz differ diff --git a/dev-qt/qtwebengine/Manifest b/dev-qt/qtwebengine/Manifest index 9ee52fe9cdbc..7a80969c4c8e 100644 --- a/dev-qt/qtwebengine/Manifest +++ b/dev-qt/qtwebengine/Manifest @@ -1,4 +1,3 @@ DIST qtwebengine-5.15.2-r1-chromium87-ppc64le.tar.xz 28784 BLAKE2B aa101d14446f3282fda8932cc75a249d88b79319f0886d95777292776d94ac5f4fc114c3893b2801fbba6abb14f381172bb14b15b5ffef12413db3a16e4d1ca6 SHA512 3324e0076eb18e2ae2248428d2730cfb3413761514b2bb57e25b8db79248aaaa8098d9f7cebfa08f1a3b39b1d0a382aafed75c5ae8273918909335957921305e DIST qtwebengine-5.15.2_p20211019-jumbo-build.patch.bz2 2930 BLAKE2B fca1d1406874d04eafb64bb4d8730512a6307ba44fb99d76f428ca1bd4a303758e0c3bd8f92a59f7bcf62e5b767c5a8ed239028bdb74ad7a8b62abf88d38c101 SHA512 61cbfbe4ff340b75ea8d356e031e932ac03fe65dd009999ff897ca4b0185d1d989490daf75ffeaaabb3e92c870c11c7ff8ad2cd6372f5363b3d774b8ecca6d89 -DIST qtwebengine-5.15.2_p20211019.tar.xz 320325744 BLAKE2B fac2f2a44e0f443a2642c0a0b3888ff15d047ce5b2de6673213db308e60f3e26b12adf98ad1dcf305630f0bc55abff078942711fbd10d05dc5a4095faadead25 SHA512 4abd2ca416228bbafa31aad9deae1466748930c02bcc08b559bbbb21fda598f720137e2af0cfa176dd534c8da97934d76e59b72c124b73564378fda0deaddaee DIST qtwebengine-5.15.2_p20211216.tar.xz 318953468 BLAKE2B 65b1bc5be8d08d10b75fee20f78a9a783f878874907335818cddde500e80633e91a999e92fd3de69d004c3621a8337c9bef2c949e03e552cab1d89d901e0dae2 SHA512 f72db4b6dcbdaa171bf2997ab3a77325f9845ef1d72cd994e6152f0f92d350de348ff15b1cde1140ab98b7eb10d6e2d2a3ac6b7d773ab43de37144faad37c3f3 diff --git a/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210824-abseil-cpp-glibc-2.34.patch b/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210824-abseil-cpp-glibc-2.34.patch deleted file mode 100644 index dfaa634bdb1f..000000000000 --- a/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210824-abseil-cpp-glibc-2.34.patch +++ /dev/null @@ -1,72 +0,0 @@ -From 78b1bcff4d9b977313e9ea15068168e1b11f5ba1 Mon Sep 17 00:00:00 2001 -From: Martin Jansa -Date: Wed, 4 Aug 2021 19:08:03 +0200 -Subject: [PATCH] chromium: abseil-cpp: fix build with glibc-2.34 - -* backport a fix from upstream abseil-cpp: - https://github.com/abseil/abseil-cpp/commit/a9831f1cbf93fb18dd951453635f488037454ce9 - - to fix: - -[97/24505] CXX obj/third_party/abseil-cpp/absl/debugging/failure_signal_handler/failure_signal_handler.o -FAILED: obj/third_party/abseil-cpp/absl/debugging/failure_signal_handler/failure_signal_handler.o -/OE/build/luneos-honister/webos-ports/tmp-glibc/work/core2-64-webos-linux/qtwebengine/5.15.4+gitAUTOINC+dd7f7a9166_555f348ae8-r0/recipe-sysroot-native/usr/bin/x86_64-webos-linux/x86_64-webos-linux-g++ -m64 -march=core2 -mtune=core2 -msse3 -mfpmath=sse -Wdate-time --sysroot=/OE/build/luneos-honister/webos-ports/tmp-glibc/work/core2-64-webos-linux/qtwebengine/5.15.4+gitAUTOINC+dd7f7a9166_555f348ae8-r0/recipe-sysroot -MMD -MF obj/third_party/abseil-cpp/absl/debugging/failure_signal_handler/failure_signal_handler.o.d -DUSE_UDEV -DUSE_AURA=1 -DUSE_NSS_CERTS=1 -DUSE_OZONE=1 -DOFFICIAL_BUILD -DTOOLKIT_QT -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -DNO_UNWIND_TABLES -DCR_SYSROOT_HASH=5f64b417e1018dcf8fcc81dc2714e0f264b9b911 -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -DABSL_ALLOCATOR_NOTHROW=1 -Igen -I../../../../git/src/3rdparty/chromium -I../../../../git/src/3rdparty/chromium/third_party/abseil-cpp -fno-strict-aliasing --param=ssp-buffer-size=4 -fstack-protector -fno-unwind-tables -fno-asynchronous-unwind-tables -fPIC -pipe -pthread -m64 -O2 -fno-ident -fdata-sections -ffunction-sections -fno-omit-frame-pointer -g1 -fvisibility=hidden -Wno-unused-local-typedefs -Wno-maybe-uninitialized -Wno-deprecated-declarations -fno-delete-null-pointer-checks -Wno-comments -Wno-packed-not-aligned -Wno-dangling-else -Wno-missing-field-initializers -Wno-unused-parameter -std=gnu++14 -fno-exceptions -fno-rtti --sysroot=../../../../recipe-sysroot -fvisibility-inlines-hidden -Wno-narrowing -Wno-class-memaccess -Wno-attributes -Wno-class-memaccess -Wno-subobject-linkage -Wno-invalid-offsetof -Wno-return-type -Wno-deprecated-copy -c ../../../../git/src/3rdparty/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc -o obj/third_party/abseil-cpp/absl/debugging/failure_signal_handler/failure_signal_handler.o -../../../../git/src/3rdparty/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc: In function 'bool absl::SetupAlternateStackOnce()': -../../../../git/src/3rdparty/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc:138:32: error: no matching function for call to 'max(long int, int)' - 138 | size_t stack_size = (std::max(SIGSTKSZ, 65536) + page_mask) & ~page_mask; - | ~~~~~~~~^~~~~~~~~~~~~~~~~ -In file included from ../../../../recipe-sysroot/usr/include/c++/11.2.0/algorithm:61, - from ../../../../git/src/3rdparty/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc:35: -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algobase.h:254:5: note: candidate: 'template constexpr const _Tp& std::max(const _Tp&, const _Tp&)' - 254 | max(const _Tp& __a, const _Tp& __b) - | ^~~ -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algobase.h:254:5: note: template argument deduction/substitution failed: -../../../../git/src/3rdparty/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc:138:32: note: deduced conflicting types for parameter 'const _Tp' ('long int' and 'int') - 138 | size_t stack_size = (std::max(SIGSTKSZ, 65536) + page_mask) & ~page_mask; - | ~~~~~~~~^~~~~~~~~~~~~~~~~ -In file included from ../../../../recipe-sysroot/usr/include/c++/11.2.0/algorithm:61, - from ../../../../git/src/3rdparty/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc:35: -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algobase.h:300:5: note: candidate: 'template constexpr const _Tp& std::max(const _Tp&, const _Tp&, _Compare)' - 300 | max(const _Tp& __a, const _Tp& __b, _Compare __comp) - | ^~~ -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algobase.h:300:5: note: template argument deduction/substitution failed: -../../../../git/src/3rdparty/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc:138:32: note: deduced conflicting types for parameter 'const _Tp' ('long int' and 'int') - 138 | size_t stack_size = (std::max(SIGSTKSZ, 65536) + page_mask) & ~page_mask; - | ~~~~~~~~^~~~~~~~~~~~~~~~~ -In file included from ../../../../recipe-sysroot/usr/include/c++/11.2.0/algorithm:62, - from ../../../../git/src/3rdparty/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc:35: -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algo.h:3461:5: note: candidate: 'template constexpr _Tp std::max(std::initializer_list<_Tp>)' - 3461 | max(initializer_list<_Tp> __l) - | ^~~ -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algo.h:3461:5: note: template argument deduction/substitution failed: -../../../../git/src/3rdparty/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc:138:32: note: mismatched types 'std::initializer_list<_Tp>' and 'long int' - 138 | size_t stack_size = (std::max(SIGSTKSZ, 65536) + page_mask) & ~page_mask; - | ~~~~~~~~^~~~~~~~~~~~~~~~~ -In file included from ../../../../recipe-sysroot/usr/include/c++/11.2.0/algorithm:62, - from ../../../../git/src/3rdparty/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc:35: -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algo.h:3467:5: note: candidate: 'template constexpr _Tp std::max(std::initializer_list<_Tp>, _Compare)' - 3467 | max(initializer_list<_Tp> __l, _Compare __comp) - | ^~~ -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algo.h:3467:5: note: template argument deduction/substitution failed: -../../../../git/src/3rdparty/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc:138:32: note: mismatched types 'std::initializer_list<_Tp>' and 'long int' - 138 | size_t stack_size = (std::max(SIGSTKSZ, 65536) + page_mask) & ~page_mask; - | ~~~~~~~~^~~~~~~~~~~~~~~~~ - -Signed-off-by: Martin Jansa ---- - .../abseil-cpp/absl/debugging/failure_signal_handler.cc | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc b/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc -index 5d13bdbbbd1..150a43f2660 100644 ---- a/src/3rdparty/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc -+++ b/src/3rdparty/chromium/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc -@@ -135,7 +135,7 @@ static bool SetupAlternateStackOnce() { - #else - const size_t page_mask = sysconf(_SC_PAGESIZE) - 1; - #endif -- size_t stack_size = (std::max(SIGSTKSZ, 65536) + page_mask) & ~page_mask; -+ size_t stack_size = (std::max(SIGSTKSZ, 65536) + page_mask) & ~page_mask; - #if defined(ABSL_HAVE_ADDRESS_SANITIZER) || \ - defined(ABSL_HAVE_MEMORY_SANITIZER) || defined(ABSL_HAVE_THREAD_SANITIZER) - // Account for sanitizer instrumentation requiring additional stack space. diff --git a/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210824-breakpad-glibc-2.34.patch b/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210824-breakpad-glibc-2.34.patch deleted file mode 100644 index b91c239ac2b3..000000000000 --- a/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210824-breakpad-glibc-2.34.patch +++ /dev/null @@ -1,72 +0,0 @@ -From a3bc792bdc116806a50e022d9102914c8daf6210 Mon Sep 17 00:00:00 2001 -From: Martin Jansa -Date: Wed, 4 Aug 2021 19:11:06 +0200 -Subject: [PATCH] chromium: breakpad: fix build with glibc-2.34 - -* fixes: -[218/24061] CXX obj/third_party/breakpad/client/exception_handler.o -FAILED: obj/third_party/breakpad/client/exception_handler.o -/OE/build/luneos-honister/webos-ports/tmp-glibc/work/core2-64-webos-linux/qtwebengine/5.15.4+gitAUTOINC+dd7f7a9166_555f348ae8-r0/recipe-sysroot-native/usr/bin/x86_64-webos-linux/x86_64-webos-linux-g++ -m64 -march=core2 -mtune=core2 -msse3 -mfpmath=sse -Wdate-time --sysroot=/OE/build/luneos-honister/webos-ports/tmp-glibc/work/core2-64-webos-linux/qtwebengine/5.15.4+gitAUTOINC+dd7f7a9166_555f348ae8-r0/recipe-sysroot -MMD -MF obj/third_party/breakpad/client/exception_handler.o.d -DUSE_UDEV -DUSE_AURA=1 -DUSE_NSS_CERTS=1 -DUSE_OZONE=1 -DOFFICIAL_BUILD -DTOOLKIT_QT -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -DNO_UNWIND_TABLES -DCR_SYSROOT_HASH=5f64b417e1018dcf8fcc81dc2714e0f264b9b911 -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -I../../../../git/src/3rdparty/chromium/third_party/breakpad -I../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src -I../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client -I../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/third_party/linux/include -Igen -I../../../../git/src/3rdparty/chromium -I../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src -fno-strict-aliasing --param=ssp-buffer-size=4 -fstack-protector -fno-unwind-tables -fno-asynchronous-unwind-tables -fPIC -pipe -pthread -m64 -O2 -fno-ident -fdata-sections -ffunction-sections -fno-omit-frame-pointer -g1 -fvisibility=hidden -Wno-unused-local-typedefs -Wno-maybe-uninitialized -Wno-deprecated-declarations -fno-delete-null-pointer-checks -Wno-comments -Wno-packed-not-aligned -Wno-dangling-else -Wno-missing-field-initializers -Wno-unused-parameter -std=gnu++14 -fno-exceptions -fno-rtti --sysroot=../../../../recipe-sysroot -fvisibility-inlines-hidden -Wno-narrowing -Wno-class-memaccess -Wno-attributes -Wno-class-memaccess -Wno-subobject-linkage -Wno-invalid-offsetof -Wno-return-type -Wno-deprecated-copy -c ../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc -o obj/third_party/breakpad/client/exception_handler.o -../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc: In function 'void google_breakpad::{anonymous}::InstallAlternateStackLocked()': -../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc:141:49: error: no matching function for call to 'max(int, long int)' - 141 | static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ); - | ~~~~~~~~^~~~~~~~~~~~~~~~~ -In file included from ../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/char_traits.h:39, - from ../../../../recipe-sysroot/usr/include/c++/11.2.0/string:40, - from ../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.h:38, - from ../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc:66: -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algobase.h:254:5: note: candidate: 'template constexpr const _Tp& std::max(const _Tp&, const _Tp&)' - 254 | max(const _Tp& __a, const _Tp& __b) - | ^~~ -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algobase.h:254:5: note: template argument deduction/substitution failed: -../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc:141:49: note: deduced conflicting types for parameter 'const _Tp' ('int' and 'long int') - 141 | static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ); - | ~~~~~~~~^~~~~~~~~~~~~~~~~ -In file included from ../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/char_traits.h:39, - from ../../../../recipe-sysroot/usr/include/c++/11.2.0/string:40, - from ../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.h:38, - from ../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc:66: -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algobase.h:300:5: note: candidate: 'template constexpr const _Tp& std::max(const _Tp&, const _Tp&, _Compare)' - 300 | max(const _Tp& __a, const _Tp& __b, _Compare __comp) - | ^~~ -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algobase.h:300:5: note: template argument deduction/substitution failed: -../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc:141:49: note: deduced conflicting types for parameter 'const _Tp' ('int' and 'long int') - 141 | static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ); - | ~~~~~~~~^~~~~~~~~~~~~~~~~ -In file included from ../../../../recipe-sysroot/usr/include/c++/11.2.0/algorithm:62, - from ../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc:85: -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algo.h:3461:5: note: candidate: 'template constexpr _Tp std::max(std::initializer_list<_Tp>)' - 3461 | max(initializer_list<_Tp> __l) - | ^~~ -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algo.h:3461:5: note: template argument deduction/substitution failed: -../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc:141:49: note: mismatched types 'std::initializer_list<_Tp>' and 'int' - 141 | static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ); - | ~~~~~~~~^~~~~~~~~~~~~~~~~ -In file included from ../../../../recipe-sysroot/usr/include/c++/11.2.0/algorithm:62, - from ../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc:85: -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algo.h:3467:5: note: candidate: 'template constexpr _Tp std::max(std::initializer_list<_Tp>, _Compare)' - 3467 | max(initializer_list<_Tp> __l, _Compare __comp) - | ^~~ -../../../../recipe-sysroot/usr/include/c++/11.2.0/bits/stl_algo.h:3467:5: note: template argument deduction/substitution failed: -../../../../git/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc:141:49: note: mismatched types 'std::initializer_list<_Tp>' and 'int' - 141 | static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ); - | ~~~~~~~~^~~~~~~~~~~~~~~~~ - -Signed-off-by: Martin Jansa ---- - .../breakpad/src/client/linux/handler/exception_handler.cc | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc b/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc -index ca353c40997..2e43ba6fc04 100644 ---- a/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc -+++ b/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc -@@ -138,7 +138,7 @@ void InstallAlternateStackLocked() { - // SIGSTKSZ may be too small to prevent the signal handlers from overrunning - // the alternative stack. Ensure that the size of the alternative stack is - // large enough. -- static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ); -+ static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ); - - // Only set an alternative stack if there isn't already one, or if the current - // one is too small. diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.2_p20211019.ebuild b/dev-qt/qtwebengine/qtwebengine-5.15.2_p20211019.ebuild deleted file mode 100644 index 1f1725cb3e32..000000000000 --- a/dev-qt/qtwebengine/qtwebengine-5.15.2_p20211019.ebuild +++ /dev/null @@ -1,229 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE="xml(+)" -inherit estack flag-o-matic multiprocessing python-any-r1 qt5-build - -DESCRIPTION="Library for rendering dynamic web content in Qt5 C++ and QML applications" -HOMEPAGE="https://www.qt.io/" - -if [[ ${QT5_BUILD_TYPE} == release ]]; then - KEYWORDS="amd64 ~arm arm64 ~ppc64 x86" - if [[ ${PV} == ${QT5_PV}_p* ]]; then - SRC_URI="https://dev.gentoo.org/~asturm/distfiles/${P}.tar.xz" - SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-5.15.2_p20211019-jumbo-build.patch.bz2" - S="${WORKDIR}/${P}" - QT5_BUILD_DIR="${S}_build" - fi -else - EGIT_BRANCH="5.15" - EGIT_REPO_URI=( - "https://code.qt.io/qt/${QT5_MODULE}.git" - "https://github.com/qt/${QT5_MODULE}.git" - ) - inherit git-r3 -fi - -# patchset based on https://github.com/chromium-ppc64le releases -SRC_URI+=" ppc64? ( https://dev.gentoo.org/~gyakovlev/distfiles/${PN}-5.15.2-r1-chromium87-ppc64le.tar.xz )" - -IUSE="alsa bindist designer geolocation +jumbo-build kerberos pulseaudio +system-ffmpeg +system-icu widgets" -REQUIRED_USE="designer? ( widgets )" - -RDEPEND=" - app-arch/snappy:= - dev-libs/glib:2 - dev-libs/nspr - dev-libs/nss - dev-libs/expat - dev-libs/libevent:= - dev-libs/libxml2[icu] - dev-libs/libxslt - dev-libs/re2:= - =dev-qt/qtcore-${QT5_PV}* - =dev-qt/qtdeclarative-${QT5_PV}* - =dev-qt/qtgui-${QT5_PV}* - =dev-qt/qtnetwork-${QT5_PV}* - =dev-qt/qtprintsupport-${QT5_PV}* - =dev-qt/qtwebchannel-${QT5_PV}*[qml] - media-libs/fontconfig - media-libs/freetype - media-libs/harfbuzz:= - media-libs/lcms:2 - media-libs/libjpeg-turbo:= - media-libs/libpng:0= - >=media-libs/libvpx-1.5:=[svc(+)] - media-libs/libwebp:= - media-libs/opus - sys-apps/dbus - sys-apps/pciutils - sys-libs/zlib[minizip] - virtual/libudev - x11-libs/libdrm - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXcursor - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXi - x11-libs/libxkbfile - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libXScrnSaver - x11-libs/libXtst - alsa? ( media-libs/alsa-lib ) - designer? ( =dev-qt/designer-${QT5_PV}* ) - geolocation? ( =dev-qt/qtpositioning-${QT5_PV}* ) - kerberos? ( virtual/krb5 ) - pulseaudio? ( media-sound/pulseaudio:= ) - system-ffmpeg? ( media-video/ffmpeg:0= ) - system-icu? ( >=dev-libs/icu-69.1:= ) - widgets? ( - =dev-qt/qtdeclarative-${QT5_PV}*[widgets] - =dev-qt/qtwidgets-${QT5_PV}* - ) -" -DEPEND="${RDEPEND} - media-libs/libglvnd -" -BDEPEND="${PYTHON_DEPS} - dev-util/gperf - dev-util/ninja - dev-util/re2c - net-libs/nodejs[ssl] - sys-devel/bison - sys-devel/flex - ppc64? ( >=dev-util/gn-0.1807 ) -" - -PATCHES=( - "${FILESDIR}/${PN}-5.15.2-disable-fatal-warnings.patch" # downstream, bug 695446 - "${FILESDIR}/${PN}-5.15.2-extra_gn.patch" # downstream, bug 774186 - "${FILESDIR}/${PN}-5.15.2_p20210224-chromium-87-v8-icu68.patch" # downstream, bug 757606 - "${FILESDIR}/${PN}-5.15.2_p20210224-disable-git.patch" # downstream snapshot fix - "${FILESDIR}/${PN}-5.15.2_p20211015-pdfium-system-lcms2.patch" # by Debian, QTBUG-61746 - "${FILESDIR}/${PN}-5.15.2_p20210824-abseil-cpp-glibc-2.34.patch" # bug 811312 - "${FILESDIR}/${PN}-5.15.2_p20210824-breakpad-glibc-2.34.patch" # bug 811312 - "${WORKDIR}/${PN}-5.15.2_p20211019-jumbo-build.patch" # bug 813957 -) - -pkg_preinst() { - elog "This version of Qt WebEngine is based on Chromium version 87.0.4280, with" - elog "additional security fixes from newer versions. Extensive as it is, the" - elog "list of backports is impossible to evaluate, but always bound to be behind" - elog "Chromium's release schedule." - elog "In addition, various online services may deny service based on an outdated" - elog "user agent version (and/or other checks). Google is already known to do so." - elog - elog "tldr: Your web browsing experience will be compromised." -} - -src_unpack() { - # bug 307861 - eshopts_push -s extglob - if is-flagq '-g?(gdb)?([1-9])'; then - ewarn - ewarn "You have enabled debug info (probably have -g or -ggdb in your CFLAGS/CXXFLAGS)." - ewarn "You may experience really long compilation times and/or increased memory usage." - ewarn "If compilation fails, please try removing -g/-ggdb before reporting a bug." - ewarn - fi - eshopts_pop - - case ${QT5_BUILD_TYPE} in - live) git-r3_src_unpack ;& - release) default ;; - esac -} - -src_prepare() { - if [[ ${PV} == ${QT5_PV}_p* ]]; then - # This is made from git, and for some reason will fail w/o .git directories. - mkdir -p .git src/3rdparty/chromium/.git || die - fi - # We need to make sure this integrates well into Qt 5.15.2 installation. - # Otherwise revdeps fail w/o heavy changes. This is the simplest way to do it. - # See also: https://www.qt.io/blog/building-qt-webengine-against-other-qt-versions - sed -e "/^MODULE_VERSION/s/5\.15\.[3456789]/${QT5_PV}/" -i .qmake.conf || die - - # QTBUG-88657 - jumbo-build could still make trouble - if ! use jumbo-build; then - sed -i -e 's|use_jumbo_build=true|use_jumbo_build=false|' \ - src/buildtools/config/common.pri || die - fi - - # bug 620444 - ensure local headers are used - find "${S}" -type f -name "*.pr[fio]" | \ - xargs sed -i -e 's|INCLUDEPATH += |&$${QTWEBENGINE_ROOT}_build/include $${QTWEBENGINE_ROOT}/include |' || die - - if use system-icu; then - # Sanity check to ensure that bundled copy of ICU is not used. - # Whole src/3rdparty/chromium/third_party/icu directory cannot be deleted because - # src/3rdparty/chromium/third_party/icu/BUILD.gn is used by build system. - # If usage of headers of bundled copy of ICU occurs, then lists of shim headers in - # shim_headers("icui18n_shim") and shim_headers("icuuc_shim") in - # src/3rdparty/chromium/third_party/icu/BUILD.gn should be updated. - local file - while read file; do - echo "#error This file should not be used!" > "${file}" || die - done < <(find src/3rdparty/chromium/third_party/icu -type f "(" -name "*.c" -o -name "*.cpp" -o -name "*.h" ")" 2>/dev/null) - fi - - qt_use_disable_config alsa webengine-alsa src/buildtools/config/linux.pri - qt_use_disable_config pulseaudio webengine-pulseaudio src/buildtools/config/linux.pri - - qt_use_disable_mod designer webenginewidgets src/plugins/plugins.pro - - qt_use_disable_mod widgets widgets src/src.pro - - qt5-build_src_prepare - - # we need to generate ppc64 stuff because upstream does not ship it yet - if use ppc64; then - einfo "Patching for ppc64le and generating build files" - eapply "${FILESDIR}/qtwebengine-5.15.2-enable-ppc64.patch" - pushd src/3rdparty/chromium > /dev/null || die - eapply -p0 "${WORKDIR}/${PN}-ppc64le" - popd > /dev/null || die - pushd src/3rdparty/chromium/third_party/libvpx > /dev/null || die - mkdir -vp source/config/linux/ppc64 || die - mkdir -p source/libvpx/test || die - touch source/libvpx/test/test.mk || die - ./generate_gni.sh || die - popd >/dev/null || die - fi -} - -src_configure() { - export NINJA_PATH=/usr/bin/ninja - export NINJAFLAGS="${NINJAFLAGS:--j$(makeopts_jobs) -l$(makeopts_loadavg "${MAKEOPTS}" 0) -v}" - - local myqmakeargs=( - -- - -no-build-qtpdf - -printing-and-pdf - -system-opus - -system-webp - $(qt_use alsa) - $(qt_use !bindist proprietary-codecs) - $(qt_use geolocation webengine-geolocation) - $(qt_use kerberos webengine-kerberos) - $(qt_use pulseaudio) - $(usex system-ffmpeg -system-ffmpeg -qt-ffmpeg) - $(qt_use system-icu webengine-icu) - ) - qt5-build_src_configure -} - -src_install() { - qt5-build_src_install - - # bug 601472 - if [[ ! -f ${D}${QT5_LIBDIR}/libQt5WebEngine.so ]]; then - die "${CATEGORY}/${PF} failed to build anything. Please report to https://bugs.gentoo.org/" - fi -} diff --git a/dev-ruby/Manifest.gz b/dev-ruby/Manifest.gz index ca116e4414ac..12f08af0f049 100644 Binary files a/dev-ruby/Manifest.gz and b/dev-ruby/Manifest.gz differ diff --git a/dev-ruby/spring/Manifest b/dev-ruby/spring/Manifest index 253409399286..2af858215e58 100644 --- a/dev-ruby/spring/Manifest +++ b/dev-ruby/spring/Manifest @@ -1 +1,2 @@ DIST spring-2.1.1.tar.gz 44000 BLAKE2B b7a5855b4a53852ccf82c14e82c134e61bc17a26e20bbf3597259763bbe81a545d3299d5490302681ca616ed1b7f4d42d522134b87d8a40588aa4904f8b650b2 SHA512 44c8619253567d2f506c9652ac28da5933517113dc38e8eb5a8b58fcc7d28ff0192cc98a655579767972649f5cead63cff0c7aa909046b41cfc1d37780e0ee77 +DIST spring-3.1.1.tar.gz 46013 BLAKE2B 54297c4a24e3e65fbcfce75b5339e140ff79f075741a0ee1f1df6b32a62426e25734e0a0a5b4103700e712a0dad401863630511789696ca5761fe6828942200f SHA512 3fe985894d22f94ecdc46c735dd144c24552ade39b801aa24b829512d7586892d1db1359b2658799b7fa67b887fb63ecf5ef7160a6f3116a697b2a4c7076d602 diff --git a/dev-ruby/spring/spring-3.1.1.ebuild b/dev-ruby/spring/spring-3.1.1.ebuild new file mode 100644 index 000000000000..830d32686e8c --- /dev/null +++ b/dev-ruby/spring/spring-3.1.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" + +RUBY_FAKEGEM_TASK_TEST="test:unit" + +RUBY_FAKEGEM_GEMSPEC="spring.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Rails application preloader" +HOMEPAGE="https://github.com/rails/spring" +SRC_URI="https://github.com/rails/spring/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="1.1" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +IUSE="" + +ruby_add_rdepend ">=dev-ruby/activesupport-4.2:*" + +ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/activesupport )" + +all_ruby_prepare() { + sed -i -e '/files/d' \ + -e '/bump/d' ${PN}.gemspec || die + sed -i -e '/bump/d' Rakefile || die +} diff --git a/dev-tcltk/Manifest.gz b/dev-tcltk/Manifest.gz index 6b51e6f87aa3..953635f9038b 100644 Binary files a/dev-tcltk/Manifest.gz and b/dev-tcltk/Manifest.gz differ diff --git a/dev-tcltk/tix/tix-8.4.3-r2.ebuild b/dev-tcltk/tix/tix-8.4.3-r2.ebuild index 778b62246342..aab6c62bb30b 100644 --- a/dev-tcltk/tix/tix-8.4.3-r2.ebuild +++ b/dev-tcltk/tix/tix-8.4.3-r2.ebuild @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/tix/${MY_P}-src.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" RESTRICT="test" diff --git a/dev-tex/Manifest.gz b/dev-tex/Manifest.gz index 900b2d8a11cc..ff77cce2e985 100644 Binary files a/dev-tex/Manifest.gz and b/dev-tex/Manifest.gz differ diff --git a/dev-tex/pythontex/Manifest b/dev-tex/pythontex/Manifest index df4fd95cc1ce..16f191082be1 100644 --- a/dev-tex/pythontex/Manifest +++ b/dev-tex/pythontex/Manifest @@ -1 +1,2 @@ DIST pythontex-0.17.tar.gz 1800631 BLAKE2B 5c4ab31ccd890ca708142e83d047a46d704d2eaead611521a9f272f7a63cfb4016b991741c0338b1874d8cd2949c83b9c5ab59c3004e26540c171666a4f05e63 SHA512 ac248579f8645c225839ca9698b6193d2a7d8360a50e9a8406fae5616f54418a173635d1c2e8c47b18e85cdd1fa1e81c9435169c44f06fb19505c280f9bbaee5 +DIST pythontex-0.18.tar.gz 1807531 BLAKE2B 0f3293043780e93290fb9b3988513f919983a1a19c18344c6d5b1223dea40310581c0b5938da695485516648db3b23dbbef3eb40091f2ccd8f5a7576179043a7 SHA512 ad7dcb91d7df3eb37cdfaab870001f70976a55ca300c029ae931ade53103cbd71f7c3a4fa5d1360fdd1d9fc092f39c0427f13d2328033197057dcbc490d4ca7b diff --git a/dev-tex/pythontex/pythontex-0.18.ebuild b/dev-tex/pythontex/pythontex-0.18.ebuild new file mode 100644 index 000000000000..9c876cfd094a --- /dev/null +++ b/dev-tex/pythontex/pythontex-0.18.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit latex-package python-r1 + +DESCRIPTION="Fast Access to Python from within LaTeX" +HOMEPAGE="https://github.com/gpoore/pythontex" +SRC_URI="https://github.com/gpoore/pythontex/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="LPPL-1.3 BSD" +KEYWORDS="~amd64 ~ppc ~riscv ~x86" +IUSE="doc highlighting" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS} + >=dev-texlive/texlive-latexextra-2016 + dev-tex/pgf +" +RDEPEND="${DEPEND} + dev-python/pygments[${PYTHON_USEDEP}] +" + +TEXMF=/usr/share/texmf-site + +src_compile() { + cd ${PN} || die + rm ${PN}.sty || die + VARTEXFONTS="${T}/fonts" latex ${PN}.ins extra || die +} + +src_install() { + dodoc *rst + use doc && dodoc ${PN}_quickstart/*pdf ${PN}/*pdf + + cd ${PN} || die + + installation() { + python_domodule {de,}${PN}3.py + python_domodule ${PN}_{engines,utils}.py + python_doscript {de,}${PN}.py syncpdb.py + python_optimize + } + python_foreach_impl installation + + latex-package_src_doinstall sty +} diff --git a/dev-util/Manifest.gz b/dev-util/Manifest.gz index 663f9437bd24..96508f6c838d 100644 Binary files a/dev-util/Manifest.gz and b/dev-util/Manifest.gz differ diff --git a/dev-util/cbindgen/cbindgen-0.20.0.ebuild b/dev-util/cbindgen/cbindgen-0.20.0.ebuild index 64f487c6f5f4..478951eff35c 100644 --- a/dev-util/cbindgen/cbindgen-0.20.0.ebuild +++ b/dev-util/cbindgen/cbindgen-0.20.0.ebuild @@ -63,6 +63,6 @@ HOMEPAGE="https://github.com/eqrion/cbindgen/" SRC_URI="$(cargo_crate_uris ${CRATES})" LICENSE="MIT MPL-2.0" SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~ppc64 x86" +KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86" RESTRICT="test" QA_FLAGS_IGNORED="usr/bin/cbindgen" diff --git a/dev-util/maturin/Manifest b/dev-util/maturin/Manifest index 22a7cd7f3dcd..8a23f985146f 100644 --- a/dev-util/maturin/Manifest +++ b/dev-util/maturin/Manifest @@ -29,7 +29,6 @@ DIST bytes-1.1.0.crate 49640 BLAKE2B b3140dd49dc222cd0405e405da9629038eb7d71dd4c DIST bytesize-1.1.0.crate 9370 BLAKE2B 38fcddbdb862e82a076b7ae1339b48c776f704d25be78935d08637351ade725e86e00e07e62868e76a1a2db894f223e1f8309f8b362a46405ec6c06f6e421a96 SHA512 36f35cf53c468cf011b231d3fc5d00c5224fa3d917854e347daeaaae53ae7ee36c4d8ba26788460d56c922c9ffb0eeebc60655fef7366ae42e221950d03f6715 DIST bzip2-0.4.3.crate 34195 BLAKE2B 946ff5824531de8b82241fa042638cd33e708c4b517fa40c99e49f77ac7fd7aabe614e4b560ed8f5484ef8fd06bf19041cb20b7a622f4f1dea9ba26c5b821c5e SHA512 2d4622c336f204ab28970ccb369ba55829bfea426bfe96f15da376f2375c441a9bfb03c46f5da210990f23115740250cc15e9036309034b39a1c960dca542da2 DIST bzip2-sys-0.1.11+1.0.8.crate 633444 BLAKE2B 01578c512443134fc786669bea4f2ec4b9c457b9936c907315299d8b67ed78045d458c83ccc119f0fad511529fb5af5feff5fa2d983fdae832d2fcc1b343e102 SHA512 d0a86b9f03acb1e4e309d5739dc2e88cab582757d467a433afe0017017f0e5d2c0282529e3a117160958ed170d8d695ecae739805888305df0e35e4dc440582b -DIST cache-padded-1.1.1.crate 8798 BLAKE2B 3f2b16f0fefcc5acf692684329e38ff59492d4c299413d25e1634ab27a59512b7453cad28b26f34f2b66db3d3c0b4b26f41df042305b7db2b8ca79d36704e8a4 SHA512 72c36ef2f66a097cf2fcbc06b82fa3d5451ecf2de1ee1513fbeb34c6752436109f9e453bec3aab7e1f89723c24f7c230cf4bff6caa09855402c8f92c1ccf49b5 DIST cache-padded-1.2.0.crate 9125 BLAKE2B d50b506aca9cfad3117be593c33bba4a5240034a838610925f9eac969155f22e0064c91f8d3588333880d1f5b6b936df87c0728530f80cd1062c73d570bfd1e4 SHA512 5b67d06908981d0e1ba01912a973cc5c90ce6612f227b306d12b13500594f5d2376d437a046e10b9cf959b609cb67fa6e24193fc651cb2d84e1f77338c6823fc DIST camino-1.0.5.crate 29642 BLAKE2B c345be490622b50f3a744f9c42392d12e02e286d75e09f4eaa8a1c6f86cc849c5a752aa7cb5fb1f697ed8beb741c7d9cea951f4f5ce7049dcaf6de5ec69a60d7 SHA512 1131997ca090426a25daf3be2fcd6e559d980078dd71fbf3f16b4d593531a24c0f030aa6c9652080fdc02b5420da98991b9c93115ce1c0cad8c0fad4437b1d59 DIST cargo-platform-0.1.2.crate 11645 BLAKE2B 7770acb90e299f71c60bbadceaf894a3100916b7f7458f9c949b683b39157d3e1ec17d850f16dfb04017b01d7734d41872d48cf9f4e1ea7414439cd7031c2330 SHA512 c716bf3a4e0942160dbf7be114d1621e1fccc23511e7b0a2b99852b99a851910bfcf8640c2d0d0a03d5a324e1a59fb5d4264ca81bca24e3f1a1ca653bdf2956f @@ -68,12 +67,10 @@ DIST dirs-4.0.0.crate 12503 BLAKE2B 02c0b9b68d09ca713e365410c72d761de5adb87a0fc5 DIST dirs-sys-0.3.6.crate 10626 BLAKE2B 6da8e4a1e51a4e06ab742ce5eb75155ff9b7cbe83f06947a0bfcda711ae1e0dbe51f9a1e1733ba771f2daddb2b8b14e343b9615608c1d9a8fb927b033c161b15 SHA512 79b6bfda14aafa3839365496e1b1926f763d3569e4e138a59f4acae15c38ec9a3bdcaa64293b03b536141c897c2bf68a67d7ae5670d86215080aa313e53d39e5 DIST encode_unicode-0.3.6.crate 45741 BLAKE2B e1e3792bc2bf9db7df33a516d0d755eef5eff1249aa9b2fd7f0dfcb155786c566fb619c9b2d73425a8625c8593988b117e9676c341f65e8795ddc838bf9881c4 SHA512 64193d6ac75f66d58ed864169b5d6228ede36dcf100614395e086bc8e847a3ddd287734d88e8ed50f38c679a99c80ec68449175a67d8ee03b02ec1cfa9d55e77 DIST encoding_rs-0.8.28.crate 1368577 BLAKE2B bc10eff55063286b48590c3100841c7319268cf17e10176aec7adb39f3d2106e80e25d8ca68e5b4e568083be75d596eaff53807385c4e8d1b59d4aed7ed08ca0 SHA512 8b3f7450789e33f1ad9306d152f1bd230e66c7e799de52046acd5b11f903e8c86cbe2f0aa2cfb0f0e60bd64b194250defe05ef2a171b707e129a2324de47a9b0 -DIST encoding_rs-0.8.29.crate 1368211 BLAKE2B 025e1c5e8b8804fa0b977357cd5a8b6a3ce4a63c11f8892ffbc862907a69c8f3c475f8d87901e878e242a2e704976ad5ded199bb777d3a545ca5f5939d0a840c SHA512 d5d2d476d4093c16514a8a0d9f363c24c766d565d45d1b2b21e97bdb6caac6050552815c9d96fb652c9516a41368f99e3a893e42c1884cd989c1e00de0ded587 DIST encoding_rs-0.8.30.crate 1370089 BLAKE2B dae26cea51a7814536d1fba835f36cf7b0d536be0f26390fc4c1785720521a37651bc33acd9f7692f4967a3658d056da11a870aea071f53e803a71036d42448c SHA512 0addba12c6021a1211639cf80a956b50a5fc8bda90f127f73920941980d11a265e43de83e91f9ab423ec520ab11f6111c0d982da2d73e640128bb12aab1083f3 DIST enumflags2-0.6.4.crate 10713 BLAKE2B 86219df31b9c8a60470f676a365f0f0890892baa7c9e3101a385d9475f9398ff8b62ce3295ca318a266f551c85048e02f26fa67ea9ac689e94a5ccafcb8f5ea3 SHA512 5814f58a8d22f093b94eb71611b9a5c8bf2145db9544397255d93126fdae220c261010d1dd2a278475e7e3c76bb9e67bd671c44f1edddc620924fd6fdc7dc03b DIST enumflags2_derive-0.6.4.crate 3659 BLAKE2B b49a73fe2977e8f62af37c367f1452979cdc0575b532d086e612b84495113041221bd508cbf2b72e3179d929a2eabad59b9913db98b21491186a1f1bcf571a9a SHA512 a8a166ed48c77a3d23c1b1afe4dec1812c2a440736cb6c6059e46b90a0a216c81cb45ae6e439ed5b3dcd656faf1bb6dace4e46b908dd02321b4a59351240911b DIST env_logger-0.7.1.crate 32281 BLAKE2B 6f1894c64f301ca4b687270c911dbe230f674662aa0561b97c4d2537886e404664b5773d4e223e2018047c222a951232c3cb52ec5bddbfb6665e34c3e7ea52f5 SHA512 604060d2ee83ab337a2d20d6784d1b7541534d2fd9e1662fc5c709fa681672a9db5e34d00face864b56ae321962e644ebe29fbb6d68a0d556419cf5d71c6149f -DIST fastrand-1.5.0.crate 11100 BLAKE2B 3dc6bcea36656fe801d2c577d34bc3564be13eb7a3b50efd6c3fdcefa8a308fb9e9289ec8def656abe83d40299a2853f9365a32201130388714927db69005b18 SHA512 22b8cd9f143f208d1fbe24ba8be342c465da6ce7d96429ef64f18f57c5443ad242858f859c5444103315e2ac3710fc5ab72da78fe1c6c67dd75a829c6356caf1 DIST fastrand-1.6.0.crate 11338 BLAKE2B 2862c5d40364b3412c7a6fbceab0f883a012412f22a24b960008b7951f3d6f0d5410fb28f75913d0bf3ac6254fde72b591343425e4e1016d77b9e53c8f5a934f SHA512 85f0c5e01b9e549b6a170561600138caea9604f18eccafcc4c37c2bd70f992e77e852bec20302028ffeee40d85fe8e8dcb812c0d996010a0427fb68a0ed7b029 DIST fat-macho-0.4.4.crate 19004 BLAKE2B b367700a9fca6f0772cced25691a63d7f8be1cd89dcf7aa41e3f1567365a3469eec50898cd89b8006c448c9c1ebe19190f34613d4c7a2cea37ffc198066946a2 SHA512 7f0438439b09455832cc3d2a00399cd1c4e7abb4330a712b4d8e1fb44b4fa41e08cac59e7539ab987eb608af1a2fcaaf2d818c82ebf997634c0c0dfe7e8cb942 DIST filetime-0.2.15.crate 14511 BLAKE2B 6659bfbe4c15c639deae9734ead88b31c118e7335dccead7deef103a795521e42de2903a7fa08cf802049e9df9cecee8d619c3db3d507a7f8f9f5bd706584090 SHA512 34d320a9aa71059d0303c62936aa94b30a873ba4b0b3b78851fe636d132422a662f79596d79edc33e778e07b0a1259693b59d7035ea390aefa4849f1af459f64 @@ -81,31 +78,22 @@ DIST flate2-1.0.22.crate 76026 BLAKE2B a6b7630a31a4d3768540662380f6eb1ae16217494 DIST fnv-1.0.7.crate 11266 BLAKE2B 81da85889c91b6567e0f555e37dd915f1bd919719d1ca10c31a6861d7aec29a49ae9c1e8bc500791bf9d6b8dbb318c096d04872c5872a4b1f7d45fbd8e12842d SHA512 2195a4b34a78e2dd9838caf0ee556bf87cbb4a8ef5505aac663b614eb59dcfc0c40f432463ede41ecca57bfe7711f72673d39a85fe03d426f1324097d5628334 DIST form_urlencoded-1.0.1.crate 8773 BLAKE2B e2d2224dbd85d053343aea29ef1bd540fb8be12fd600289e9c048e3b74bfb009d0770f8296556309ef756086f22feec4713dfed1006e1101075c8897be5471cc SHA512 3ab371c223561a27ffbd35cf648ef4a9145d47bba9d71900a7c54cfc2f089175e9361f6352331a9a7fa018923b15e7a3553c8f9ff9fae80e1626e641a5faff68 DIST fs-err-2.6.0.crate 14311 BLAKE2B a637cab75430655a1bec0145a0a8ca30413daec111ab7f11a78424dd147f098060c510ea6b9dc82fe4c72969c1635291f1de18f7d6de54194af6cad388f96042 SHA512 ce8234b9b12990bf5d322c537f1bc1dfe2927dc9cd6797eb009a42ffde1379e8194a0320e75ef032deefcbafbea79510982c5ae4c668ad8f8d5a87caba5d16e0 -DIST futures-0.3.18.crate 47643 BLAKE2B 4bebf75ea530fda4d40b9ffe5c01b8592d5c4cbc9d498754dfa81221914a37c325ef64eae439cb73bffe8cd13c88cdc86aa3cf4cb60cd871caea32ce33b413dc SHA512 2e5bdc685fe1b7976f9f60d99a6b1c27a3c300744de9d7d14e26510f8f591d282a7c11ef99bafb4971f5a550cc6668c493c8c29a9f94e47fabe59aeb45a41f10 DIST futures-0.3.19.crate 47605 BLAKE2B 8a8925c17319fc84b85877f269584075dabf9703202eefb5de121c28174623465a1b38b7c2f0325df6036a4a3e8afd9413f2de96c34d583544c7694c7ce25c1a SHA512 2383a0ee128e9945da2b0ba50795d6efef0bec832dff3bc7d9f6f592bd120538c62b5068156f330c72779f8ce3b3a339cdc04634fef3f985eb1ce4033a7c9518 DIST futures-channel-0.3.17.crate 31765 BLAKE2B a1055de0a6b8812546442acd8acf8251168015b5f6be7bb7e223b7c61841a1a15ec1fbca3e4d40e0a552d5c3fc89ed2306a29c9ef33b1665f828ab9c8c0aa142 SHA512 884fed34839c9f73551a90fdbcdc542f88623c0d74d506febd6fb0308429e0d7df879f378b6d0bc818ce8c948da495a9dc210ca55331f4760273d51f627cc416 -DIST futures-channel-0.3.18.crate 31941 BLAKE2B 518b55b1d943a80f89fcab52142ed710c2e46b0c31275b1f919a6803fe5a9dd3eba4d4db4743471dff5dcf1871881aa758242768a70124f985f8735cbae6b5a2 SHA512 d9dbe1bd543c46acd6d51a43e3ef45df3fe79bb0eef24e0179423dbda582d68936948b5bb2ca48b6d169fd4906ec7922cded10f1e987095514ba28c4fdb5d6d7 DIST futures-channel-0.3.19.crate 31940 BLAKE2B 1837616f7b00b98bf5d7e11032a535ab945697e8564091b43d0ef2657cfc9e3a6bb4c82c442b39325082fe4791a6418a733310e850055936fa1db2ea319fa94c SHA512 06acb15c125f20f305173cc5ac77e1502a857ea8e80e4fa33bf4e51982b1af71c8d31e800cc3151d7d52c3db69d9be5d7500690664d073e329626c2d4b2763a4 DIST futures-core-0.3.17.crate 14478 BLAKE2B bad5d1fccef7e823d52eff0db7522545c6dcc6ba94bc0cad33c013b6abe624ebc6c8ddc6a6f5a4ede5982e175eeac48113ef929cc6633a22a18bbbd4cb1cb114 SHA512 6f290620b5051a3f3a317acade5a077f502fa3ab7fdb230b6ecd4d007c63685bf343ddcb8b8d1170b5ebeb94fbf1c495dab36918490b14885361d6e53c45bf22 -DIST futures-core-0.3.18.crate 14665 BLAKE2B 848f8038511085bb205d1fe6b7e21790a109f0a77cf17c31323b83aab0eb8e5f58a35c3ebcd5f0fa1228c1979f2c76c55380223bd08a3f64e0e72098fee945b7 SHA512 3182345cb62a21079be53a77171b54e9822d2efbd01cba1e7a30b948b5a60446eb90b55c2ef76a760e68ff1fdafb86ebe51767f44e47033a3bfb53d4cc382604 DIST futures-core-0.3.19.crate 14666 BLAKE2B cc0d1993f3fd4c4b18dce68c0f152602f8411e290f839d7107d5bca1339c73f969adcf192608bb58423ef98d42e8af060bb49a4a8e29078b45f34e7b49907ead SHA512 2bfc54b1116cfb96b70ad48c25e339ede9690543cb9b0a656518171835b931545a67a13f14df42b6a4db968a88187daf3fc4fa8a6607d8c545b776b85201cf72 -DIST futures-executor-0.3.18.crate 17290 BLAKE2B 3539dbf94d38dc3171242222c43b3ddcb343e1acf63820ecddbb839f83889f90f7226c3f41c35b47e5ad5f1217e4b47bb0b5f847379444c8ddc1a54c07a2f9fd SHA512 2033bbea0cf328feb5c50e40b28fdd8b8f1d01077c1a74be47f463f13cbd0fe2ece7c90f4ac5c54300d0a305d795ca91ebf7bfaaf990fdda260f311e2781f58c DIST futures-executor-0.3.19.crate 17286 BLAKE2B 70bea30ede2258bee815b08528951befa11a8c821f8de2681f4d86ea0406b96cacb122889d96d7947d89523941fe5cde8eaeba5e3c3e1f60f6524a7a11659db2 SHA512 c6c3d392a1e096b864716696bd76169745ab7c673bb109c197d38c1116cedafe1fd72e37fc56f6fb8250772dc3daf710d8e17d34a00e2f7a070d5ecb3b0bc9b2 DIST futures-io-0.3.17.crate 9050 BLAKE2B 729fd0c2bbf5a665640fe9e8dbb9d803474cbbf4385188d1cd906f526a2b75cecfe55f75aeb0a491057af319a19fb0117420af75425375af41622c8c68567cc4 SHA512 a2b65e07bfea15b78e988c5a9d330ef51a396cd22475f171b342cc8a6520749335af851ae11d44c91f54ab06f425b0dbfb716a959c625d3c52db5765d0407e0d -DIST futures-io-0.3.18.crate 9222 BLAKE2B f710ae8ed982b42a37d0ab797829b5366526fbf4e830ea26a5e9ae89a7a8c57584c467251185195571dda5a92abe072a881a33829a2558e593cdc68e7009f823 SHA512 f941da4a9c606a25a021fb55648fe0e864fa716b7ee01020b361aae99c33bc59035e16f5d60d84d3b9d015ea2be7c169da52501d238e5c71818bd0984ba0b3ac DIST futures-io-0.3.19.crate 8901 BLAKE2B acd285ade243d09a8f49d5ebdfd78d58e47a7c069d94beae5b16ae08d69687a28f5899a4b6cbb9476a6cc286149413e4771319f260c59684442a6205da69d00f SHA512 8bddbfabe1e6e09f067058db9117782703626e989e14c7e13d2d0f828fbd8de141b11d8b209d4e5dc5f8ff956ccce2cab958a438d5466ed20e41a3e1d50a7c30 DIST futures-lite-1.12.0.crate 36032 BLAKE2B 16cd92362ddb217fd3c316f1104635b086abbf3b482b3381d62e3b5ddbd20122d1dadb48c83d3022db080d05352ee5a40f33978529bac3eb182b875f45cd132d SHA512 3d26148ed1c87926de51412a8d08e0619c64b85b610a74d6f61fcc1972dc0cbedb04c5824fcb4ef0a920c557ac81a0b2b4403ddb1c01e11648694ae56c28d72a DIST futures-macro-0.3.17.crate 11830 BLAKE2B bca68c3c1ddca764ff86d36667c3da3805b8aa730b300f97d5e77dfc695d33484b4b8ee7d3b415479852e02a126c14f092ee9724d3d91a8793bc91a165dd5381 SHA512 518969498808bcb63cc797934ed7d699f776588dd7fc9f9c41c63874a05d03781b5c0241ce20cfffc8db569f01fc82da433b7ea7772f24dfc2df5eca35b5146a -DIST futures-macro-0.3.18.crate 11256 BLAKE2B 82b9407a5be5f0cb6e586e838288ce05d96a51fe6fcad86aff776bf5fa0090ccce56f1379b530db341555eb9b64cd98565829024a87ae0c4071c22004562c70f SHA512 5163237aa4b2ee342c0a67fbbd7db3ce45a50a6289ca0740864cd5edc9adb3de7fcc50b5b0a75dcac6052ba5b9871e01df8f94aa956b2dbbbba232dc83dda477 DIST futures-macro-0.3.19.crate 11253 BLAKE2B d79fad7bdea954ffc8cfb8a58216c7d36c848d625755467b0031e2f6b8b21c8c629fb28afd7e0e9b20e18bf6513c4814e91afa8f2338c5654d2bbbd199a000e9 SHA512 926782d27be383e6af887452929453cc805a44a59c47e0a0b486a22e15e89b5ff553f3c5477d667a655f3f6d8bd7f74ce4d72596cdae242520e5c7437e30179c DIST futures-sink-0.3.17.crate 7663 BLAKE2B 598e864fb6f2f34cd72c67e5ced93d0e54d2e508319ba191a2779377d9565799226783b2009190cd6eea63c75562e209a526c724ea8616d22a1c7b4ae543ddd7 SHA512 39996fd6bf1fb5ebb0dbd5c0d18f9a34f21e65dfe998237c2e047d836a380ebfb9a2fea05a2c11e447e9a27dff0bffe4a9762e83df2f17aa90a717fc98ba5803 -DIST futures-sink-0.3.18.crate 7851 BLAKE2B 66bf043a8f3abc02960bc0968e68e7e3e649dab488e631f505c26105fdec3b98a29a2902dd13c484a5f627230976f6634dd8f25687af1bb53a4b29048da224e8 SHA512 4d6f937dcb8091caedef743fa38e32a730f665e7b07df5662850df79b0a460fd906def3d8fb7c4284b96dae4fca1bc67d9d21292c490bca8029a790591d48a0c DIST futures-sink-0.3.19.crate 7849 BLAKE2B e0cca5ac119e47be89f229296b992c8adfc959336cd353ea98275fde323199c6b474a6c6df47dc4ef24a0f7a8d22918fe8660787b873ee6fb3d1f04d23ab541c SHA512 50c015e39c5f2580f48af42aedbbdae048363d5ca3d8e7aa3f8752219fe54862de6134c44c1355369018b7ab5ff169bee27b177f2656d4ce65fd9a42b02355d2 DIST futures-task-0.3.17.crate 11712 BLAKE2B ca42fc54c3a3795e59b423fbd1235b10b4ae1903256fa61e80dc9318f35fb59fbc15ca8a3be3fed67e17809ed2d5f594f939d3f51d0d718b0dff5be069200361 SHA512 2f12d8d9d404f147b601ddc6fb9b6869e2e68a4bc55cd3851cb9f7aa8ebe6519c5cd0fa14da92e564d2003ded2ac2202f5e09e1a83e81129d1600d01ecf86844 -DIST futures-task-0.3.18.crate 11901 BLAKE2B 5fc9ac94ab83d340ce490999ffee60c7fee9c7d0bcef01932438e105b4830aa0e92a04f6c49d7ad55cca43bad7d15dd17b59a3dc16a46434e1330dc85f5deac0 SHA512 fffb16ea3d8be7658204ebca6baef17fceb5131c5c879ebb4721235acd36fcfb8571f619d4ad0ca7595cae55ad2bc945adcdf948c5736849bcd8a7b065faa502 DIST futures-task-0.3.19.crate 11894 BLAKE2B 16f39551920931f7535d65d0c787318d13da0f18bb39bb5939b06829cb4f49da45a478f105fd4ce74323d198fe18b8695683d1861ae171b412789c758a564673 SHA512 befb75408a3ca3b034e26c835bf7351727f8e3548674024a44e994875470b34f6d9f1dcb954905062192a96b97ec28499aaa745b652c81b3be59e1222b3d5037 DIST futures-util-0.3.17.crate 147679 BLAKE2B e29d07117a7285fc52a390821299f55da901573a5d3df6a1845b852488f98b359ef35de0aa3fe05e613dc662247318cf3df5aebcb00149012c6a3ff24c171a57 SHA512 6a87b0510c3f8214ce14b7f333d212558647c523b5eb7da36dfe4f694e0ca4be3cbf97fdd7bfff5e0c7015644742d74d6184221482d644653a106d5564722fba -DIST futures-util-0.3.18.crate 148706 BLAKE2B fdca59d8972871d26e4116d70bd83b4d73e869f43725b50751bcaf5db6ee8528981be476a74b26e85c182e8648733d16956e80c1f10d975b677866d4826fdb9e SHA512 5e6488aa11493aa1fbd688796c6f9af92d288ff38f4460b1923ee196a6513185fc63805abec7f5fa7ddbce186937bbb2aaab41da8216d088c631f8984b66d63b DIST futures-util-0.3.19.crate 149240 BLAKE2B e831c92e184b976494836b393824834c378f8eba4f32f7883a355fc7745e224984954fb9705f04e064b3aa33aa7c5c8e1a8e12688cbea9020e9aa8f444e130d5 SHA512 cdadde2949a496806fc432efcdb9f4555ca0482320017ea45c29d8dbde69bf9d4af7a6660d351bef3989c5ef905b1f011788506fa2e87d8b53b83cf54256a3ef DIST generic-array-0.14.4.crate 28916 BLAKE2B 41adcb738bb316d17967e029a829dcf7377427977309b010c2f2e365f16306b44991eb5f65698782497f614b129b14cad11bfeba2ae19b45efd117114492517e SHA512 34ac71fee2cd50ff786d39b4abacd9e090a8598baf4dc36ba5fecfb7171cd8e4f58e5360cbb0baf02a87eea26b7dca85b35555b82bbefe06635d2fd38f7b8b40 DIST getrandom-0.1.16.crate 25077 BLAKE2B 0cbe96c27e78100c181a064e5fe524efa9a7a267fe60f8336d2ae0125883acd5d575ff17d1d56607255d9b2c30cb9d962026fdea1a5c3c29a5e0760d27c3136a SHA512 c5450c522c07c7a38b326f9a9062bac7d089630219d577ea4b55abad4e0c31d17b7cde385fc43912dfa100b42334e7a52422c55fda8b738caae428c6f9addb53 @@ -116,7 +104,6 @@ DIST glob-0.3.0.crate 18724 BLAKE2B 1f1dd380e7d668a0c2cff9134279ebda958b4bccdd4a DIST globset-0.4.8.crate 22886 BLAKE2B 726fceb279ef00589ebd6f77bbbe0642a22a9852a12ac9d14139af679ef2af0a68bb90f51f9cbb08d44190eafc35145df72ea3ff2f346d23cf22e428c887bb42 SHA512 1a1fb9731d310ced63742b2c6f7ef7f414c89780751d9881859a6e6fbc512e91bc23c91e3743bb36114dcef6dc1962fd376d67bc536752ba6a8a2fda7aa80bec DIST goblin-0.4.3.crate 153973 BLAKE2B 4c7670d2b4153a203d01be79db7f3748396eed815bc55245e30af4774f2fe1bb842b101748ddd1a33dbb5f8b7065eb5db8340b8d086ae003f46744e215a9fffb SHA512 bcd0088ef4cf4c9f89f6335d4eefa9643585b0c421c3401ed7e4f3bb7dc16c2f6e3eb31625851c32fd9d34133b2870d50b36d4f668ee71bbff54c5a6dbbc44ef DIST h2-0.3.6.crate 158838 BLAKE2B 1632be354612c3de7206ef9abb379a63648fb2e8bdfec31bd7a013b27f4310f66834cd0b57f17405344a54e0bfda7b986353f9725c651390364aa0a1e81bf7be SHA512 8994b43c6fd93240b62d4dcc824dd004a0a2788b51c448c2350a067c23dc98272002f61c138c86c9637d8be9111079ecc499a5d86ab29ab103d7426bfe613eac -DIST h2-0.3.7.crate 159246 BLAKE2B c75389ae07de135510d7761b8b3c7d3560cd017a59d4b286496e5049ab6846eb7ad3d27945591070ea0e329ba4b72255627206f1b420e705c8a2c28cc9edba1b SHA512 673d3690f29dae2275fb9e93a47835a00195845915a2a037f666dfaeeae70bc626db1fcefd5bc18478ad49282b5e137e0e6be3df1bb16e22067c901288e68813 DIST h2-0.3.9.crate 161585 BLAKE2B 44859958ff779d0420e2966d61b289b6874b857bf892a56d8e4156f05330ac33c563ece2807b13e8d6f75cc0468bb344800e5d0fc5a91bf6ddd1898e6e449874 SHA512 fd817b430ef7ce25dbade4be845dd20fc920c2634fc6c2dcb2a52989f022f7c107f354755d65dc390ea50709cc2209f00dc36f1a613b003789d40bb5bc1c49c6 DIST hashbrown-0.11.2.crate 85713 BLAKE2B 402f9f1bdcb92631206f9b72923ee35e28db8623e87469c0f1496664bc7185077013ab3c8aea68268241e5b2504f10cddc613a350abd4291050deda6c112e559 SHA512 c21ca68fd49bbb741901f59fed04cc124b8da99e2a4dfc26e2e5e1140637872b344612a01691bd30cc771575c571be15f756c84dde225441699cd2322af2ad6c DIST heck-0.3.3.crate 10260 BLAKE2B dc756738081d855583f239908f671e9b5dde72ebfb577f6387b1a169817a03332464cf67071708a4c4f06b1ecb222118e8c719073ccdec1c0f938e5ef378b13f SHA512 b3498e033f44e03206421e565efec5b21d13107b60d35e4476331c44e6effd75c81f7678f2452c822eefd581209a2ffefd2034779cca2d8b4fac4583bbbf777f @@ -132,7 +119,6 @@ DIST httpdate-1.0.2.crate 10673 BLAKE2B fbe2230262cd041e1ea8d6f9782376c25b0e841d DIST human-panic-1.0.3.crate 18064 BLAKE2B 5dbf7c696da12f912a86ff886dbbd6801320520450a8c735da9f99166a4e534aa79e51f6a498626d40ec4309c1676b20b1e7881f341070522c3dc37cb7ead030 SHA512 3de653521aa3ba9180768e04dee8be4f0f52849f1051e8bfd21c80361836603bcf7a5292fe325e2f556446cb176a5bf0eaed1e7bb218cc1fe6c7258cb3f92497 DIST humantime-1.3.0.crate 17020 BLAKE2B 37efaacedac293197ff7acc8b0446a73243a2d90ed8dbdcecd9cb0af6e901f135e1d92aa1a642460f531a6811a5f08075f8aabaa9941e96eddef301e205fdbe1 SHA512 2589bfdac96108951882b7ee497528b9084ddd344a67914810ea9961a1e319167d5cab959c66cbb26e398e75ca50d488a251694fff35f3c2f69a88b6f22844da DIST hyper-0.14.13.crate 171435 BLAKE2B d37893df6abbf06a9b91ed845368742b0e33499b6626ddf09bf9d2ea0dd4e8e689e1a395068a8243f9a4fd3474b47ee3ff3516982a4bedbca74e535388414e91 SHA512 a0db865c26a95ecb0921f9941359d26bd41daa026836796b8576d89e4ce76bf23177d6f61d0c7d9e9cac51d02559bfffa11eae84d36d7afbc0c03a448a8b85bd -DIST hyper-0.14.15.crate 175489 BLAKE2B 2509f448ce9c101ec1fccfd8946d3800b76591a97252fe393b81f0b7960f4cd1f1fec543045aa431e50b2c1f20a7be06c5464c8f40be6ce6837915750637729a SHA512 0d60aacc2146107de291c53c3cc275066140e54b478db81b6f77e4ac44cfb634dbb4858689d0f0a43c12b9f38c723ceb30f6d8a8912b7eb22ee6af04a6e00283 DIST hyper-0.14.16.crate 177577 BLAKE2B 60f1e0345a21d2646b3c0d6e1e25b08fcbf8fba9909f7738674828631da569e78bf952fca78bc22cec1564ae1639ad4a00bae4bff82a1b2ce239a915e5f415be SHA512 0691fe083cd322ef7cb7cc761767083943dfe3b03fc53a7658be7cfc75ab45db1193a88cbcea33bb6a345b2ac78e485e09a180c248baed602a927a7ecdf2eb16 DIST hyper-rustls-0.22.1.crate 26718 BLAKE2B 69bdc6de6ee9058a3d782be27147f4856421f7e0ac6509d9e94bc955f4f392e0c9e904d2745868a6cddea060dec7b33f230d0eff17432ea513e1c8049d1f2cb6 SHA512 90c9b430276b553bfb771fd67f81eb5b782b7c5ab009eaf862c26ca330befa75e61f8d890078a9e5510ee6e1774d7f8def146d0a9ae92141951a59e1d94ebf41 DIST hyper-rustls-0.23.0.crate 29432 BLAKE2B 8cedc669daf9a08752a185096a413c93d1fc1b423757c4c458757c1553b65af57b1f78436201ca0e3bf90641f4f21cbb0a1ed45e3d200d696ead841eb5e162db SHA512 b8679b5d5f03a8a3b3b3adc8f5cd0ba7355dcca0aeeef25ae65fe2de7b879435e88e920efcf7fcdccfc7cd6f1789aab767f60a3bef4ccc0161fa5a84b54237ed @@ -155,7 +141,6 @@ DIST lddtree-0.1.4.crate 10607 BLAKE2B 53e17406af76c116bb23efa6a169f116d6fd55d3a DIST libc-0.2.103.crate 540563 BLAKE2B cc99ae88783e6f3044ecec5154e0de81a7f792b89415cc2736eb4a436edd316277d690971c4aa0eff7935b5a355c8966805c4ee72c5fec8caecf65a29c13caf9 SHA512 79e1c99bfeb30283f85742cf17867000301bbe022c6b2ace415b4a767068dd64b09581bcc802d42150e45849f5adf8ee2720a0c695324d87d3d96a5c554a216d DIST libc-0.2.107.crate 554639 BLAKE2B 583cc24943707bbd53823f15fddfececd7acadb5a4d7dc5d0eb07d7b4d851b93500f1e4081b70c6ce3cc76700bdd6c4173ba710fdd52af7776ec7f31aefa3714 SHA512 df1586889c97d45c95f47495f8285c273c143f1861e632b326345ee66da63c227c064d9e12a6a1b48cfb866c70010a4ad407fed120a1a808da7a345777a8f909 DIST libc-0.2.108.crate 559475 BLAKE2B eb8b0250136aa57e89d256d8401fb590d74a1447039324ab4572786185a2f4b7a955c356c8cab63b019619617313fafd5b7c44dd09cfa3cc92dbb9b7fb714580 SHA512 a29f0c5cc7e4b653c2bc33c92dc90b5d3a7132d4409d6b92b94fa9fe1391d8cf57a63d339ca0602f2efac28d3dc3beb854cf9a6d03bf027fef5e5276fc5b1487 -DIST libc-0.2.109.crate 570506 BLAKE2B 629146033110c42a380a8e87f09af04773bfe9609b8430fa5ec8d85b3d8431e430b60b072e436c479aa8f0037410f1a642bfdb92e4a932ed2c875241bfd63eff SHA512 ecc5cff60ef7ef4febae95cb3ea4fc130b1844ee20d046332ea0738c85ce1c0afe9239d9ad5b1a50236918aa1166eed04b5a91ece76e49099e4a5415bde881a4 DIST libc-0.2.110.crate 571270 BLAKE2B 6a86aead03a741a712e4113accb092d3ff2a5ffcb140001c9b5bf8888d39ee2ba7041ad2bdaa02a69aa4bb70ab4a3c7116f43c58ef36b611f279f2d5f01e2365 SHA512 60d1805ad23a7884bc9ec7b35f9035d01411ddf6d610880d94a218198512e298aed2f835c61b480909f4f7544b7521bb792f95eb96bb23d9fce9c6cfc6c95c28 DIST libc-0.2.112.crate 571445 BLAKE2B 3936f4fd08cda0ad5be7b1ff417b6dfc9abad14ea5cf647425d8a2e7306275e958fb5cab4de9eeaab95065176bc295065bafec3846ebadb6e15cba20de495280 SHA512 6c1a027eff21d3ef8078ad19b90b06d90790919a848e95a4c878e8c8b850d2e9be3fca36d8db39b24e472f15e5352ead1182d5491a0b382e06f8c3ead379c45f DIST lock_api-0.4.5.crate 25199 BLAKE2B c91adefaa0dc3efa786957794b67cf219f5159909179282c13c7e3b68d73a0acebac29438cfcb39b75cbe87bc181e981ab4ff2776134621d8ea92e7a6aaf966a SHA512 d6cd948a4183a73e8b91b9167d551e72dd75820c76123fb0839f8389c7872d2c46dbcf5785d7600ecc4e27f3d214f476585b9c39e85f70500eb8d012e5ff9535 @@ -164,7 +149,6 @@ DIST mailparse-0.13.6.crate 34804 BLAKE2B d3e88b5ef7d97e06f0b75cf14f2134c5dbc951 DIST mailparse-0.13.7.crate 34737 BLAKE2B 33ce9844ac364c80c57973e6afe09953f3e73385d5fefc390e42d6018c91a55a25b92bed1df9ec7e3f08fa822368dee8f88c35cafa3a8c5d2936477040c00599 SHA512 00c7e418c3625b7220a677e76589ce7d00d0873d28461716a30d34e2e92f67dee75a64c2fd53b916993240c82c5741fc27ec1d074f80f8d044e6626ecca39f12 DIST matches-0.1.9.crate 2246 BLAKE2B de155202636c6a03ed68cdb21e8ef96e19b45be040a82943d2d7e5192c0ab5c253ab6d65f0b30b2689e21da79cba684af5be6e63c48266681aceba356f6eea41 SHA512 6a2809687d30ff04ea97bf9d1610d746e097699a4c3625ffd1b7b1e4a9673ece9d559058c9f760b99d6ab509024f7b338e7cfa6fe767499c983efa98bfb98305 DIST maturin-0.11.5.tar.gz 584266 BLAKE2B be92b8b3f94e7b5e5225a57118219cb854ea072a03b92b5811a135f54c634b89dd52c3c6bb50be539b7578e3748a34fdf4552bb46544500b061743c7dbd92ba0 SHA512 31c32849fe424393351c6f895eaf76852647fcd6b5bf77d1244147315c4e730762c03d49d898bc76805dcd0a6ed8004e8eaf26a2f78af2228f8cfd3cb2201c7b -DIST maturin-0.12.4.tar.gz 269863 BLAKE2B 422eec4148114dbcca7f8a9a8c60c872ba67df330ffa96972abc5481f593e17770e01c08adae2f763424b09f7172701d94d598a57ef068a599b4a6df38288a50 SHA512 fff317651501f142586826692adf1152dd82bd3d8a5aade337edf1f688a1c12ecb13a5ac1978c23f1c798ea140d5dc87ae3cc68ed73974a52dac3ff30ee1d031 DIST maturin-0.12.5.tar.gz 276468 BLAKE2B d04c65a017ad42659d7321143a11630b65a9064a3a11119ccef21c57f56a46fe2db6846b500a2004b8878b788df9e43b010502563fe3d21a6dde5c81a5225dff SHA512 1db5cdeae9e8e7bf1ef5aa7b6ce9ad1030e86ecd21e0e5b7b263e0f0a850bc559f26dbb58fee902c3f297d0e445c67cbf35a2a390ad2c27a271491083a4a8114 DIST memchr-2.4.1.crate 64977 BLAKE2B 31479718c118093b684bed946eae0706d77d9d275bd49f5aeff4de490f479abd60c7dc462150eafffc6d6fc1da0853123b78be038826b775d2a41a4c39d93ab5 SHA512 d8912e3902a2126f86159bdc998532a2890b882cbb7d59b5a470fffcad4c32281e045f2fff48a235aa4189f1928866bf3d33b699d50866ad6b6c272bba7adb11 DIST mime-0.3.16.crate 15206 BLAKE2B 9a599ca82fd0dd6d3d2dea68a47b8441b1024d016ee1fb23cc6431b39ead20c9b3fe1ff3397af79c2c1b2cd277c440d4fff69f6b28c550ddbe15f680923c834b SHA512 cb1d691610cb82720e553247336fc5eab63407ad37febf2eb50aaa4e329cca70959ecd8bb8c7af5753acec2c8e86fc9a0f8ad9ad2de93fe9295ce84033d6054c @@ -201,7 +185,6 @@ DIST percent-encoding-2.1.0.crate 9748 BLAKE2B f3ff35ac683724b15e40c85e0fb8ececb DIST pin-project-lite-0.2.7.crate 27212 BLAKE2B 71997c66fe24bbded0030acf9d460c8ecdd07f7a047007413ad5daee06ade30ce487e7f921d610f9e0bc7aa036391f6c595493d9b7d95c17e9195f5a2b23441a SHA512 c948201981269f6f54da069470c56c5b9c4c6f52e349dc7970ad828d412facfbb66a09745c0565b4320fbfd1aa7983f3664604f7ade37a30cf25ce253afe8749 DIST pin-utils-0.1.0.crate 7580 BLAKE2B 457e1287202f16d1873b24bf4f1de1828300128c4ba3131758e64f9784d36d47365f22d85493c3a85d854f0d8dbb4c6cef3a0f5b064014dc03943e58b7ba9178 SHA512 828422b8440cc82ac6b0743e0112fa7540d437aed457564999092b1462cd7672cd6b1f0201b67075431aeedd3d9c5127468a3dd028744109944f7f023c82fd70 DIST pkg-config-0.3.20.crate 15395 BLAKE2B d2727edcd04135783de0c1f27fe1cb052bd9255be88c935bdc2ca04f09694b7986cf66325761f2742a34c4b851ae3c48d3e01030c8ea1c19642de064d78ad574 SHA512 6c69010f122d0f7dcbeb6301aee9175617294fe7eea384201ef0dfcf83124b00d0727fc0460da797882e91153b677cc5b16eba98d19484c3a3ce4dbb06c7dd6d -DIST pkg-config-0.3.22.crate 16145 BLAKE2B 346b67a2000eb91ea8867e5a861c87a7728909d6b20dd00c9b4571d89e5308a108906fc80fe3a2d014fff0411d9bb30fcde224abf8f4aaf37164107861083bdc SHA512 435b9d99a1975692db3efb3bd0e92899c43ba4003aecc4859dc71cd2175521973d5cbe1be06fc3b40af2a7bbe1b0a845be73586c0cd96dc218bc4fc7dce11107 DIST pkg-config-0.3.24.crate 16489 BLAKE2B d0bd099bcc39928b6758c22b14291f2dc4f4452c0837aeed8c3ff6086cdcf29518806e4f3f379804c998d752b717a26d5c0054c071c5f4c224a3e03cc6a3ee51 SHA512 be22c609b3d5a9a38bab1d30792cff397cc908f1c53fb2da68a9a7d1258e53ef64c1c5b26d840b0ed1d35b307c98ffb499c82e5796e88be0a6ecc0c6f3b5dbfb DIST plain-0.2.3.crate 10664 BLAKE2B b0ea38fcf6d4f4e3ff91d572b5639f01eac4f19b2c451d27bca49d994a07c6f46118cd58a1b86b3d2a61b7ac9e17e8236f1cc98414738d8c86086d37e0fe4d35 SHA512 6909e4b4b4a0a49e6a226d7393b121ec04beb8a13b1652c23337eb09b3c2e5f202b53a7663dfe7828dcb32c3d18135b514e9a982967c188e127a63b6cbeda252 DIST platform-info-0.1.0.crate 11170 BLAKE2B 5cd76a9170efa332d17fa4b1a58bdafa533216d6d178054b932814bcdfc4056471231bfeb0e1cd68c63d47e4de5cdc98695b3e36a9b0fa3d794e38e70110b2ad SHA512 d40e8d1ceae829f9d61f393b5fa73ff10cd97333ef471f16a898d34b21bd5367fe88efa05b725299062c1029e1ca13fcbe24e8789bfdfc87fb3e56e66489d690 @@ -219,7 +202,6 @@ DIST proc-macro-nested-0.1.7.crate 6495 BLAKE2B c27ad92b57837ab1ce220958846253ed DIST proc-macro2-1.0.29.crate 38772 BLAKE2B 742c2602afc4beddc96b688d105fd93b1dbdb3cfced724aaf542e97120d374d334e90cfbf02ab62741dd052a272dc583b7d2e1992da3d1b8ff260414c65ac89e SHA512 b3b3b7c6988afeb92209c7e0362f45f9c207611a74bb63bc7746b86fb9ab0d74fea9e7a2d9bc8ac943225ea439540726ffc13711dc5bcb056c1821fc99e8dc63 DIST proc-macro2-1.0.30.crate 39155 BLAKE2B dd0ec47a3a54fed6cb3b03e5edb5c3e065e5644f631560595eaca028926f283ae20b3e9fe699b0b968e00d3bec6ec95437be2693ccdf22f1524dd5e4ba3f7886 SHA512 d07ddc18dcfcc163bd243c22ffa4735bc300f304c7e70bfa7caba91047b1313bfe1f18aa4707a65a40fa18115c4b32c57b23699f9a4d9b4a09fec3c8aafb1d34 DIST proc-macro2-1.0.32.crate 41003 BLAKE2B e8da70dae2ee75aa2c344602e55cbbf9ee5316ff6182c870b64f9fe4b33e60b9fb1a22137acf357615331f2e4079ab1e8964a2cb0234fa439d1b3d8d514c2eff SHA512 8631714c226c8a6fb330a529f42214216057eca85cfa63afd3de8600d2638e2be45efa54155ce73625883bcbabc2c56cb865ad9dda04e2c7092d955caed48abf -DIST proc-macro2-1.0.33.crate 41040 BLAKE2B b4c68569d54460a4441ff64ad1cad1c9d8109dc3a9fedf037e61ab61d204c424b69daa85199bf4e47e6e74aded91ef4676253acc9a7dfc0a5c73c84544d825b0 SHA512 a4e0aaa92eae63c6e8dbafd2fbb7105e58b10f576863eee66e764c133ce5e3360da8486581b9df4379b7b3a101976a5962d4f648c416eb4c5979480232eed40e DIST proc-macro2-1.0.34.crate 41072 BLAKE2B 6b507e95802fd8dfca422deace25e328b1e4c5a9515c83ae55f8a34b1c1d34ce427afea7d7a748f582abf903245ed8c2b3f4175d78c8c9dc9f467c9805329d47 SHA512 960036a077c3869386ecb5c2019816adc70e9a9b32ceeacd4b14b39a91dbffe0b21764ead7237ab3aa553b26cb6732bbeccacbaf83c8dca9069b11b9a85dd1f8 DIST pyo3-0.14.5.crate 330805 BLAKE2B 6ab0b487da4986a91c4360b2f5783fe77514d99ab79aa4fac18c4889e1f0077cf3d58ada0762d96c1cb7c93a6f2f0ebbe852ea881a23b1b5b39f6b974cc965b7 SHA512 050cf757cf3d07dad46af1bfb0a0fc4b4b7ef677af15d2119ef3eb83cf0bcaa02540c7e5c04a0c0653813e6041221754d3af6b6ac6041e9287fb9d50121c5b35 DIST pyo3-0.15.1.crate 370722 BLAKE2B b755c93d8dca8e778b886ed1d16e83ddca483d0f6c932b3241edb2e1211306cb0257d2a6bc31ba4298335f277898e59aad67e9f675ed4ad9a2bb9d596400bda3 SHA512 9168911db76f2c9629615c997accfc4234bf91cc72293dcdb3db14b4e93f93af9df3b3aa7900384121719aeda4a0b6dd68c0cb380bfe5424724b0be5303c02e6 @@ -259,7 +241,6 @@ DIST rustls-0.19.1.crate 208143 BLAKE2B 2ec02f40bac911d85db013cd99fc859fc4815f98 DIST rustls-0.20.2.crate 238289 BLAKE2B 9e707a3ab7bbe07b4bc200cac805e7a723e03b461adaf4ced74a1d3b432c9647850189f69112a382d3063cee51aab377df50ca7835aaf1039bae8ed4b8c25ee0 SHA512 18e245c0cf96fb9caa6b09be69fc8be0e580a2d0521055a4d4011a506c022be62e3c8103708b2aea8f3dc77274c97cbedd71e8affda9a3b260335d24d062ca4e DIST rustls-pemfile-0.2.1.crate 14278 BLAKE2B 2cd27153a5db80581e43009c0ac21209f57341e584c8f11789bc9e9ac71d6cc456c60554bd97176c7567ad67896b74acc6372c62973a3ff1e965bd1d0dd52bfa SHA512 1c03cd74314bc0bffda4803f6e7692e53e3cf67a6bd30e6c96a861d8c118363b0e871a9e28c4e1a4d4f1fcdf98f3a5af3be5f0250f3653836429a27645a10c80 DIST ryu-1.0.5.crate 49570 BLAKE2B 3bfba4a5f290a429de7ac3b86823b2a973f40eb6f48c15329173d95964d31ada36f2618be4b36774a03f97f2ce61364900c6a3ad5465a294e2df311a1f4104ed SHA512 d1708ffa3112a684edf2956b6730ead040401d38f1457cde074eaaa59c249007dc8b925629e7f6df89f7ea757e9d0826649d685cc8ede0a04d50296048bf476c -DIST ryu-1.0.6.crate 50032 BLAKE2B 13e805124f80de0d8175fe8b315b20b06f0ef188049e835843b91ffb90322bbfa54ddd0fe1617af851e8f5b59c1f076252b705394ed3408b5fb577059a46273f SHA512 175da99ee31a942800eb33ab5addcdf89b2bba95b6289be1560746d030acda547a5bc3e8cba714c252230a93bcd991b9593a7c94421222833bf089694ccf1655 DIST ryu-1.0.9.crate 48391 BLAKE2B d5c1035ffd6340d846009953cb4303fb8c250a3a6ac60b51a2fec77a6cb3648524420064b7380fe31af33c57011f950f6f739a1f0114196675b3b5de4b54efc6 SHA512 4e7c2c7ec73da1ddb32e18d36b8159cb4047b9f4feeb975361e7ba68135e671e11419bb7786df789f5d08e5895231d2c98e36035b515f2c64ac40474d08905cb DIST same-file-1.0.6.crate 10183 BLAKE2B a320c8343e0b38078ba81c4f0159d886bf47764c74efe0d7cd2b3218426e8341b51e523c00a9e5fbc2ee1057618296bd70b576c68751bd55d6ddb352defaca15 SHA512 3ba35309742c8db63210d9ea78bff4ecd80471d69e6238eb96c7bf0673814f221e2d838fe6311bfc5a0e71b4a7ccba33e07859c0b9cff2171969ff08a4214a7c DIST scoped-tls-1.0.0.crate 9146 BLAKE2B e6cecc543760a293b9ba4e71bf0d12f3360782795bc9d0f0bb054614a1c393f081b6178e98708b896037f5b8edcf371b727e7eb80f62bca24fe09a1903456729 SHA512 f09dd404bb45349ef444e7274a2aabfeaeda7c3c9f964bf5c52c39984c137f63bdf9fb3e33df8e312e52872f7721de25951a7f3b8333a670626c51afd36d314c @@ -280,7 +261,6 @@ DIST serde-1.0.132.crate 75364 BLAKE2B 7485bcf0ae578f02f7c7dcdb284fcd6d8ccb4022b DIST serde_derive-1.0.130.crate 54703 BLAKE2B 35db74464913a93da88b80cf29e4983bcc4377e397618064b1cb397ecbc9e6620c863e4d365153d03ab77ec6dbe9b1d03f8f86aba1adb76fc6d697f39ea7316f SHA512 d3ca974bf8856ed8a73af4eaff69941b35eef187d7e348d6d2ef9ee79eccad893e66270c7d814ac3871e09e21e603d34d7d1f24b182d9b39e9219acd42a7baa8 DIST serde_derive-1.0.132.crate 54725 BLAKE2B 10ba0e55a498cfb469f1a36368f66515ab3e331f337b9441b08aba857dd6c824ccb718fdc33ab467413bd755db31370d4eb52039bb28e4a6c0775e2be87db896 SHA512 04f1a738b133de752fd1f4d70ffa35bbc144208bc3495ead56cda8ce65a72c501ea9c8e5e6d088cee94a878bf62509fc9f75dfadb320eb942042ee5ea80dc76a DIST serde_json-1.0.68.crate 114986 BLAKE2B a588a87ac9fe2b3635d7bf72c185801e3866101020a0afb8f714d37939c2dc7b5b32e2177910df7221df197e4e8a92d92187968efdb5e9f1f1616647c10d81d3 SHA512 54a0345029016873883dbdcd2094615f509759f61b04d9a496dfdbc1e27ee5361dfb3d129f209a9ad66984cc1f4c82751adfe1a564198649ecc939e8c3dd1ac5 -DIST serde_json-1.0.72.crate 115888 BLAKE2B 0770707160014ef19f54ab6acb6bf8cad8ae65ab47c184912aa534b927c0743e66273e93c7e3190102428bc71914ab4648bfe0c2cae9416afe6ea1d7da217996 SHA512 e48129cb5c36b4999751302fcee811b80f2113780c12e122b13d9fc7a31af7452183ff89de1793994edfdcae61a80db37aa492250a0d69e9180659418a10063b DIST serde_json-1.0.73.crate 115922 BLAKE2B 5f304d127c3cee17d06cf30ace0fa8c75374293b64751e45938a283a9451e3809ccc0a1cc1b64b33f526585744073b4b35a366a404772fd37856e4fdc128d786 SHA512 0d7bcf06eb2d78f768c4bf54429439a1f6e8b7097fda6e7547b4edee1933a69307ba9b758fabb6ac918cda216c7744a0b906d7a38fd13c51e16e6e25881df748 DIST serde_repr-0.1.7.crate 10173 BLAKE2B 30bca6a616e55f44def56ab1f85cbb141727a872466f161f562798db005473d520e6a4dba89b631cfe11f1a38cbc1db2fb0ef921f0245e0990a6744f9987e95a SHA512 4e3e87b1c97ee587e88be56d67f287e43252de474a3becdefb4b768eda661db5d78f665d7d93720a40d9f5bd27fd9ab6213d66713ec89bcc2063092b16625a18 DIST serde_urlencoded-0.7.0.crate 12489 BLAKE2B ef64d92d79b80521ffe90f18534d0a0f20834e692c708e3126d3486b1585aa228e3140be81984256f0adc71c764d5c2bb66b755b9475eebefcff67c952d42372 SHA512 2e49d1113a863a45235e4c5df3de1221398091c33b9eb5a806ea496902090f82d6dcf4f478f897ea54eea44f553fc20aeb2c1c124b81806b0704dd33d5650a13 @@ -319,10 +299,8 @@ DIST tinyvec-1.5.0.crate 42745 BLAKE2B 24d6f60d08b53e067ef783db4f6e51a9edd9f73fa DIST tinyvec-1.5.1.crate 44942 BLAKE2B d02f610dfb599ae4957d81140bb8945f4cae49c1b7ec5de4bd4a7d07a1334cd00557993dfae2516d506f362305025bd1a6617d55efdad8ebb549fe573e9e6f21 SHA512 80b68058e3264b3fbc537debf01b6b60d438bf5cba6ad366083cb440ed6b45587f367d3a134ec6fab769495b94413d0eca47544b26959a2c35b1a997423eb849 DIST tinyvec_macros-0.1.0.crate 1817 BLAKE2B a3d1966bf57c11afcd026269135a6189f149f905bb70b47537c0a7bcaef0bfc6c89bdcbdb0f6cb8e5255632855134631c683fc90606a254ec8ba818fd5ef0794 SHA512 d6afc83a3c70cde916a6ff599e2772588e4bbfa7a5b1c7e5c8aa0f4a8a5c9426182497a644e4a88194ece986d38fa64b6c8eda9eb1630441c8e65a8741a45873 DIST tokio-1.12.0.crate 522732 BLAKE2B 5506c495c4a35c14144bf677ba4626cdcc0ddaf0a0e902beeff50dbf05161392d0a5c0d7f4c49478b8180d104dce60f43ddc3c2f1ab0f3b908520bda59a5caa2 SHA512 c6bc29623bc41816578a2e74c2793830b5fbce701ac5fa98033d5e5ba96ea081c744c690686c39db6837893a200d7d55cc5bb2270e66e1d7ac5cb7103fa44384 -DIST tokio-1.14.0.crate 534070 BLAKE2B 5e15babc9a2ff9c74e71174bcaee4f34fc88038983a870aba7cb4beffa79eb5ac1a4bd54718971cf193bd85f2664c274395090105b4ae74f86e81c23aceee9fa SHA512 b9961d0be60b0ff6d5b11dc74b69ae8406e748201de74d3789d1c8b2c996d8db6359a7089123ef24c5b1a1e86f3e282b6e031a5b99a73b6ee9e8b24a6fa1c7fc DIST tokio-1.15.0.crate 540198 BLAKE2B 1da03444dc29cc899679d06a31f395f433bf07014883814d86f495506eb8f6d66ea52caa52b47e09a65f7f2c8b2be6047eaa51ca9bf555d3cf73aef11c14c656 SHA512 a6c263beb37b22b19b7bff10891a53bbf56a49085eb1d6d12f35f52ac9aa6619d2c9a3f6d3ead2043d116013c0b5dc70164331e931b68bdd5a36273115ae06d3 DIST tokio-rustls-0.22.0.crate 22706 BLAKE2B 9ef76b96aaa10f49692581f7b4f04063729baaf3998b7e0a3d5700cd7613822efdc7fec334ec9d3718c700fbcbf572ee974e96bc3f79eabc774a801501b08ef8 SHA512 cac6c5ebbdb751721f881f6e4c21e1b34ff8aea84256e25f92cecbeb30b6db3a6b2d78b7eeca253179b78a94c9226aff23492b0311d81ce27470ce939e675d0a -DIST tokio-rustls-0.23.1.crate 26624 BLAKE2B 3ad77a52494b681428adca1ef160881c64cb40f46e3fbae8ba4caba8e756832019c0d8a9cb340addcebe3b4c110bbdfaff6798cbc2011628bef3b6e680cbe118 SHA512 04406172d084fd507fae969df42d24e5bc794eb99bf028c77bc148ed03f9be658bb7d6064fb5ed223a19e432a6c6821060747f5aaa0b5931c6256104b9146edf DIST tokio-rustls-0.23.2.crate 26792 BLAKE2B 3e510e78e8dca3cb352546c0f5e46e9977f284a49926ad66e3558c3ecf5051b0aa9b8aec491f1473f1a3e18e69ce65639bb3352b22a45ba2ea8dc8c052a80101 SHA512 ad404d5d1ce216191cf3e70dada7157b39e4459fd9a567f27049dffe337402aa562da3318619d53891b778cb44d134a96ef252b4670afee200fe9afea9b06f7c DIST tokio-util-0.6.8.crate 74116 BLAKE2B f47f61a1566b721ef5294526f6b0fc08a5662eee2b12def6b699de38e6888e3cb61623a76a52a71843449a5657ce3829bd5fdf2826428e370b6d912320c5863c SHA512 b81ee8086a069de580bb2769145a77d12d3ae2c4d8a689d979c58988c64b221ffeeeb0f159181f92f402011931eda8549ff173b227433d6597492dc7f024b7bd DIST tokio-util-0.6.9.crate 76480 BLAKE2B a16fec47a50cef0ada375715c391cfe8239a92a89dbe174ec0afa20281ae28dbbe6fb62029a678765d885aa8dd7613138666be5fb00c660756237bede980b82a SHA512 95b1bf648106c73bc9a3e63cf438a5fca2969cd9425dcb54aa31f5471a6d68cfd9fd99da0b8c86a3b268e618be77f3957d7c88fa072c970dababa4d8965f916a diff --git a/dev-util/maturin/maturin-0.12.4.ebuild b/dev-util/maturin/maturin-0.12.4.ebuild deleted file mode 100644 index 236323cf33ec..000000000000 --- a/dev-util/maturin/maturin-0.12.4.ebuild +++ /dev/null @@ -1,352 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -CRATES=" - addr2line-0.17.0 - adler-1.0.2 - aes-0.6.0 - aes-soft-0.6.4 - aesni-0.10.0 - aho-corasick-0.7.18 - ansi_term-0.12.1 - anyhow-1.0.51 - async-io-1.6.0 - atty-0.2.14 - autocfg-1.0.1 - backtrace-0.3.63 - base64-0.13.0 - bitflags-1.3.2 - block-buffer-0.9.0 - block-modes-0.7.0 - block-padding-0.2.1 - bstr-0.2.17 - bumpalo-3.8.0 - byteorder-1.4.3 - bytes-1.1.0 - bytesize-1.1.0 - bzip2-0.4.3 - bzip2-sys-0.1.11+1.0.8 - cache-padded-1.1.1 - camino-1.0.5 - cargo-platform-0.1.2 - cargo_metadata-0.14.1 - cbindgen-0.20.0 - cc-1.0.72 - cfg-if-0.1.10 - cfg-if-1.0.0 - charset-0.1.3 - cipher-0.2.5 - clap-2.34.0 - concurrent-queue-1.2.2 - configparser-3.0.0 - console-0.15.0 - core-foundation-0.9.2 - core-foundation-sys-0.8.3 - cpufeatures-0.2.1 - crc32fast-1.3.0 - crossbeam-utils-0.8.5 - crypto-mac-0.10.1 - derivative-2.2.0 - dialoguer-0.9.0 - digest-0.9.0 - dirs-4.0.0 - dirs-sys-0.3.6 - encode_unicode-0.3.6 - encoding_rs-0.8.29 - enumflags2-0.6.4 - enumflags2_derive-0.6.4 - env_logger-0.7.1 - fastrand-1.5.0 - fat-macho-0.4.4 - filetime-0.2.15 - flate2-1.0.22 - fnv-1.0.7 - form_urlencoded-1.0.1 - fs-err-2.6.0 - futures-0.3.18 - futures-channel-0.3.18 - futures-core-0.3.18 - futures-executor-0.3.18 - futures-io-0.3.18 - futures-lite-1.12.0 - futures-macro-0.3.18 - futures-sink-0.3.18 - futures-task-0.3.18 - futures-util-0.3.18 - generic-array-0.14.4 - getrandom-0.2.3 - gimli-0.26.1 - glob-0.3.0 - globset-0.4.8 - goblin-0.4.3 - h2-0.3.7 - hashbrown-0.11.2 - heck-0.3.3 - hermit-abi-0.1.19 - hkdf-0.10.0 - hmac-0.10.1 - http-0.2.5 - http-body-0.4.4 - httparse-1.5.1 - httpdate-1.0.2 - human-panic-1.0.3 - humantime-1.3.0 - hyper-0.14.15 - hyper-rustls-0.23.0 - idna-0.2.3 - ignore-0.4.18 - indexmap-1.7.0 - indoc-1.0.3 - instant-0.1.12 - ipnet-2.3.1 - itoa-0.4.8 - js-sys-0.3.55 - keyring-1.0.0 - lazy_static-1.4.0 - libc-0.2.109 - log-0.4.14 - mailparse-0.13.7 - matches-0.1.9 - memchr-2.4.1 - mime-0.3.16 - mime_guess-2.0.3 - minijinja-0.8.2 - miniz_oxide-0.4.4 - mio-0.7.14 - miow-0.3.7 - nb-connect-1.2.0 - nix-0.17.0 - ntapi-0.3.6 - num-0.3.1 - num-bigint-0.3.3 - num-complex-0.3.1 - num-integer-0.1.44 - num-iter-0.1.42 - num-rational-0.3.2 - num-traits-0.2.14 - num_cpus-1.13.0 - object-0.27.1 - once_cell-1.8.0 - opaque-debug-0.3.0 - os_type-2.3.0 - parking-2.0.0 - percent-encoding-2.1.0 - pin-project-lite-0.2.7 - pin-utils-0.1.0 - pkg-config-0.3.22 - plain-0.2.3 - platform-info-0.2.0 - polling-2.2.0 - ppv-lite86-0.2.15 - pretty_env_logger-0.4.0 - proc-macro-crate-0.1.5 - proc-macro-crate-1.1.0 - proc-macro-error-1.0.4 - proc-macro-error-attr-1.0.4 - proc-macro2-1.0.33 - pyproject-toml-0.3.1 - python-pkginfo-0.5.0 - quick-error-1.2.3 - quote-1.0.10 - quoted_printable-0.4.5 - rand-0.8.4 - rand_chacha-0.3.1 - rand_core-0.6.3 - rand_hc-0.3.1 - redox_syscall-0.2.10 - redox_users-0.4.0 - regex-1.5.4 - regex-syntax-0.6.25 - remove_dir_all-0.5.3 - reqwest-0.11.7 - rfc2047-decoder-0.1.2 - ring-0.16.20 - rpassword-5.0.1 - rustc-demangle-0.1.21 - rustls-0.20.2 - rustls-pemfile-0.2.1 - ryu-1.0.6 - same-file-1.0.6 - scoped-tls-1.0.0 - scroll-0.10.2 - scroll_derive-0.10.5 - sct-0.7.0 - secret-service-2.0.1 - security-framework-2.4.2 - security-framework-sys-2.4.2 - semver-1.0.4 - serde-1.0.130 - serde_derive-1.0.130 - serde_json-1.0.72 - serde_repr-0.1.7 - serde_urlencoded-0.7.0 - sha2-0.9.8 - shlex-1.1.0 - slab-0.4.5 - smawk-0.3.1 - socket2-0.4.2 - spin-0.5.2 - static_assertions-1.1.0 - strsim-0.8.0 - structopt-0.3.25 - structopt-derive-0.4.18 - subtle-2.4.1 - syn-1.0.82 - tar-0.4.37 - target-lexicon-0.12.2 - tempfile-3.2.0 - termcolor-1.1.2 - terminal_size-0.1.17 - textwrap-0.11.0 - textwrap-0.14.2 - thiserror-1.0.30 - thiserror-impl-1.0.30 - thread_local-1.1.3 - time-0.1.43 - tinyvec-1.5.1 - tinyvec_macros-0.1.0 - tokio-1.14.0 - tokio-rustls-0.23.1 - tokio-util-0.6.9 - toml-0.5.8 - tower-service-0.3.1 - tracing-0.1.29 - tracing-core-0.1.21 - try-lock-0.2.3 - typenum-1.14.0 - unicase-2.6.0 - unicode-bidi-0.3.7 - unicode-linebreak-0.1.2 - unicode-normalization-0.1.19 - unicode-segmentation-1.8.0 - unicode-width-0.1.9 - unicode-xid-0.2.2 - unindent-0.1.7 - untrusted-0.7.1 - url-2.2.2 - uuid-0.8.2 - vec_map-0.8.2 - version_check-0.9.3 - void-1.0.2 - waker-fn-1.1.0 - walkdir-2.3.2 - want-0.3.0 - wasi-0.10.2+wasi-snapshot-preview1 - wasm-bindgen-0.2.78 - wasm-bindgen-backend-0.2.78 - wasm-bindgen-futures-0.4.28 - wasm-bindgen-macro-0.2.78 - wasm-bindgen-macro-support-0.2.78 - wasm-bindgen-shared-0.2.78 - web-sys-0.3.55 - webpki-0.21.4 - webpki-0.22.0 - webpki-roots-0.21.1 - wepoll-ffi-0.1.2 - winapi-0.3.9 - winapi-i686-pc-windows-gnu-0.4.0 - winapi-util-0.1.5 - winapi-x86_64-pc-windows-gnu-0.4.0 - winreg-0.7.0 - xattr-0.2.2 - zbus-1.9.1 - zbus_macros-1.9.1 - zeroize-1.4.3 - zip-0.5.13 - zvariant-2.10.0 - zvariant_derive-2.10.0" -CRATES_TEST=" - indoc-0.3.6 - indoc-impl-0.3.6 - libc-0.2.107 - libc-0.2.108 - lock_api-0.4.5 - parking_lot-0.11.2 - parking_lot_core-0.8.5 - paste-0.1.18 - paste-impl-0.1.18 - proc-macro-hack-0.5.19 - proc-macro2-1.0.32 - pyo3-0.15.1 - pyo3-build-config-0.15.1 - pyo3-macros-0.15.1 - pyo3-macros-backend-0.15.1 - scopeguard-1.1.0 - smallvec-1.7.0 - syn-1.0.81" -PYTHON_COMPAT=( python3_{8..10} ) -inherit cargo distutils-r1 flag-o-matic - -DESCRIPTION="Build and publish crates with pyo3, rust-cpython and cffi bindings" -HOMEPAGE="https://maturin.rs/" -SRC_URI=" - https://github.com/PyO3/maturin/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz - $(cargo_crate_uris) - test? ( $(cargo_crate_uris ${CRATES_TEST}) )" - -LICENSE=" - 0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD ISC MIT MPL-2.0 openssl - doc? ( CC-BY-4.0 OFL-1.1 )" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="doc test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/toml[${PYTHON_USEDEP}]" -BDEPEND=" - doc? ( app-text/mdbook ) - test? ( - dev-python/cffi[${PYTHON_USEDEP}] - dev-python/boltons[${PYTHON_USEDEP}] - dev-python/virtualenv[${PYTHON_USEDEP}] - )" - -QA_FLAGS_IGNORED="usr/bin/${PN}" - -python_prepare_all() { - distutils-r1_python_prepare_all - - # use setup.py only for pure python and handle cargo manually - sed -i 's/cmdclass.*/packages=["'${PN}'"],/' setup.py || die - - if use test; then - # used to prevent use of network during tests - cat > "${T}"/pip.conf <<-EOF || die - [install] - no-index = yes - no-dependencies = yes - EOF - - # run plain 'python' from eclass rather than auto-detect 'python3.x' - sed -i 's/"build",/&"-i","python",/' tests/common/integration.rs || die - fi -} - -python_configure_all() { - filter-flags '-flto*' # undefined references with ring crate - - cargo_src_configure -} - -python_compile_all() { - cargo_src_compile - - use !doc || mdbook build -d html guide || die -} - -python_test() { - local -x PIP_CONFIG_FILE=${T}/pip.conf - local -x VIRTUALENV_SYSTEM_SITE_PACKAGES=1 - - cargo_src_test -- --skip locked_doesnt_build_without_cargo_lock \ - --test-threads 1 #825242 -} - -python_install_all() { - cargo_src_install - - dodoc Changelog.md Readme.md - use doc && dodoc -r guide/html -} diff --git a/dev-util/shunit2/shunit2-2.1.8.ebuild b/dev-util/shunit2/shunit2-2.1.8.ebuild index 34e9c4ad0714..1433c42d350f 100644 --- a/dev-util/shunit2/shunit2-2.1.8.ebuild +++ b/dev-util/shunit2/shunit2-2.1.8.ebuild @@ -9,7 +9,7 @@ SRC_URI="https://github.com/kward/shunit2/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-vcs/Manifest.gz b/dev-vcs/Manifest.gz index 5baffee265ff..9e27db5479b1 100644 Binary files a/dev-vcs/Manifest.gz and b/dev-vcs/Manifest.gz differ diff --git a/dev-vcs/git/git-2.34.1.ebuild b/dev-vcs/git/git-2.34.1.ebuild index a29a0d7783d9..d9c0e5d49fab 100644 --- a/dev-vcs/git/git-2.34.1.ebuild +++ b/dev-vcs/git/git-2.34.1.ebuild @@ -46,7 +46,7 @@ if [[ ${PV} != *9999 ]]; then ${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} )" [[ "${PV}" == *_rc* ]] || \ - KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi LICENSE="GPL-2" diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz index 0881606d3494..8adf65ac5a64 100644 Binary files a/eclass/Manifest.gz and b/eclass/Manifest.gz differ diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index fd03ba176276..dfca9ecee0d0 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -373,7 +373,7 @@ get_gcc_src_uri() { # pull gcc tarball from another location. Frequently used by gnat-gpl. GCC_SRC_URI="${GCC_TARBALL_SRC_URI}" elif [[ -n ${SNAPSHOT} ]] ; then - GCC_SRC_URI="ftp://gcc.gnu.org/pub/gcc/snapshots/${SNAPSHOT}/gcc-${SNAPSHOT}.tar.xz" + GCC_SRC_URI="https://gcc.gnu.org/pub/gcc/snapshots/${SNAPSHOT}/gcc-${SNAPSHOT}.tar.xz" else if tc_version_is_between 5.5 6 || tc_version_is_between 6.4 7 || tc_version_is_at_least 7.2 ; then GCC_SRC_URI="mirror://gnu/gcc/gcc-${GCC_PV}/gcc-${GCC_RELEASE_VER}.tar.xz" diff --git a/games-action/Manifest.gz b/games-action/Manifest.gz index ce0a98505e7b..91f6cd898cd4 100644 Binary files a/games-action/Manifest.gz and b/games-action/Manifest.gz differ diff --git a/games-action/abuse/Manifest b/games-action/abuse/Manifest index c3c0391654e5..497dcec74e23 100644 --- a/games-action/abuse/Manifest +++ b/games-action/abuse/Manifest @@ -1,3 +1,2 @@ DIST abuse-0.8.tar.gz 6053500 BLAKE2B 4f52256b7bf13e0efa77ef50147a976fdf1fceec4ce20fb4b855a9961a7c816cf08bf51286b424da42072956a137bc3385357cfdb61bf37ff9f907284d99e09c SHA512 5c60dcf6910f9f751da26e919cd289c12349bb82eb925f9a41dc921263ece0d0f5f24c2ab2d1c718c0a5d0315453f92dfcba665fe5082eb4135ed737d2859d18 DIST abuse-0.9.0.tar.gz 4666196 BLAKE2B 3896f5b986120e0d0385daf194e7ac158a77bea07aa5b508b9beb8ee8f9423b375a0daebd8e66124719b80a57cabb101d0258176d16d63cab030c8332ca2dfcc SHA512 6c8b85920412234986f11b5333a18c85e227ba421843373b5e1d5086e596f1b63adc8c320c657b3cddafd43af9de9b163f4617a9e78a5ea3f2d0281d0408ca1c -DIST abuse-0.9_p20181213.tar.gz 4668746 BLAKE2B 5834d9a3a3172ec6364adf4ffc4196e76b2f104a77d7c5eb94f72cb00e326a66b56bf66083ab8fd566d1bc97b7f8ac6ac1edb4ad60605526761487a45a4136ac SHA512 4a7bdd67880a86a686f896d42b9a7f0c3a6e8a9e8891e514ebb68634b6b31641f5ade91da0f0bd4e6da7081b67c3bf944246ec3538a547e5ee68b4d8f4cebbeb diff --git a/games-action/abuse/abuse-0.9_p20181213-r1.ebuild b/games-action/abuse/abuse-0.9_p20181213-r1.ebuild deleted file mode 100644 index 6e10fe76945a..000000000000 --- a/games-action/abuse/abuse-0.9_p20181213-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake desktop xdg-utils - -COMMIT="42b6acd19af00689e8f34355e3b13323d8ea3f79" -DATA_PV="0.8" - -DESCRIPTION="Port of Abuse by Crack Dot Com" -HOMEPAGE="https://github.com/Xenoveritas/abuse" -SRC_URI="https://github.com/Xenoveritas/abuse/archive/${COMMIT}.tar.gz -> ${P}.tar.gz - http://abuse.zoy.org/raw-attachment/wiki/download/${PN}-${DATA_PV}.tar.gz" - -LICENSE="GPL-2 public-domain WTFPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND=">=media-libs/libsdl2-2.0.3[sound,video] - media-libs/sdl2-mixer[midi,wav]" - -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}-${COMMIT}" - -src_prepare() { - ln -snf ../../${PN}-${DATA_PV}/data/{music,sfx} data/ || die - cmake_src_prepare -} - -src_configure() { - # https://github.com/Xenoveritas/abuse/pull/6 - local mycmakeargs=( - -DBUILD_SHARED_LIBS=OFF - ) - - cmake_src_configure -} - -src_install() { - cmake_src_install - doicon -s 32 doc/${PN}.png - make_desktop_entry abuse Abuse -} - -pkg_postinst() { xdg_icon_cache_update; } -pkg_postrm() { xdg_icon_cache_update; } diff --git a/games-action/abuse/metadata.xml b/games-action/abuse/metadata.xml index 83bc35b06620..7b9daae49764 100644 --- a/games-action/abuse/metadata.xml +++ b/games-action/abuse/metadata.xml @@ -1,8 +1,11 @@ - - games@gentoo.org - Gentoo Games Project - + + games@gentoo.org + Gentoo Games Project + + + Xenoveritas/abuse + diff --git a/games-board/Manifest.gz b/games-board/Manifest.gz index dcbdbb347297..9c92675ebefa 100644 Binary files a/games-board/Manifest.gz and b/games-board/Manifest.gz differ diff --git a/games-board/gnuchess/Manifest b/games-board/gnuchess/Manifest index 86efcc4555b5..55fa4724363a 100644 --- a/games-board/gnuchess/Manifest +++ b/games-board/gnuchess/Manifest @@ -1,2 +1 @@ -DIST gnuchess-6.2.8.tar.gz 804080 BLAKE2B 7079c07ae7cd2f225c428a7bf14d53eec394382508544994918b87db35d5cbdeb9cf42a11f5bc2f9c0c7b778384d6cdb9aad4490bc9cfd40a513fc2e36cbdd67 SHA512 9146ee727c1eb8002eb3b1e762d71876b512eff0799eafec7019d5312766fe2bd6655c622e66f86e92f80d2f3666e48158a1245b42c30bd3221a8b379689ecdd DIST gnuchess-6.2.9.tar.gz 802697 BLAKE2B e450e1d77f3158f2a063a7fc80985ad6d59f26a17a86aa9d18d86f32ee1c01fba100e59b02ea65276a1ee480ed050fbafd68635d40bae75205763fd34bfd608a SHA512 7e2ec9e14ab331ffaab2dd60da81b64b5c5a07cf14f9139d67c77886038512d15511939b8e683675ea6611e24ff2c38212a7f288540448c9225c263435f71963 diff --git a/games-board/gnuchess/files/gnuchess-6.2.8-cve-2021-30184.patch b/games-board/gnuchess/files/gnuchess-6.2.8-cve-2021-30184.patch deleted file mode 100644 index dfa89a0e17c3..000000000000 --- a/games-board/gnuchess/files/gnuchess-6.2.8-cve-2021-30184.patch +++ /dev/null @@ -1,72 +0,0 @@ -From 7059e40c7a487b17886e1d345b52fc0cfca8df72 Mon Sep 17 00:00:00 2001 -From: Sebastian Pipping -Date: Wed, 2 Jun 2021 13:15:29 +0200 -Subject: [PATCH] frontend/cmd.cc: Fix buffer overflow CVE-2021-30184 - -Based on prior work by Michael Vaughan, -with "break;" replaced by "return;" and -magic number 9 resolved by strlen("setboard "). - -Mimics close-to-identical existing code from -elsewhere in the the same file. ---- - src/frontend/cmd.cc | 30 ++++++++++++++++++++++-------- - 1 file changed, 22 insertions(+), 8 deletions(-) - -diff --git a/src/frontend/cmd.cc b/src/frontend/cmd.cc -index a321fc2..394d03f 100644 ---- a/src/frontend/cmd.cc -+++ b/src/frontend/cmd.cc -@@ -477,13 +477,20 @@ void cmd_pgnload(void) - return; - } - -- strcpy( data, "setboard " ); -+ const char setboardCmd[] = "setboard "; -+ unsigned int setboardLen = strlen(setboardCmd); -+ strcpy( data, setboardCmd ); - int i=0; - while ( epdline[i] != '\n' ) { -- data[i+9] = epdline[i]; -- ++i; -+ if (i + setboardLen < MAXSTR - 1) { -+ data[i+setboardLen] = epdline[i]; -+ ++i; -+ } else { -+ printf( _("Error reading contents of file '%s'.\n"), token[1] ); -+ return; -+ } - } -- data[i+9] = '\0'; -+ data[i+setboardLen] = '\0'; - SetDataToEngine( data ); - SetAutoGo( true ); - pgnloaded = 0; -@@ -501,13 +508,20 @@ void cmd_pgnreplay(void) - return; - } - -- strcpy( data, "setboard " ); -+ const char setboardCmd[] = "setboard "; -+ unsigned int setboardLen = strlen(setboardCmd); -+ strcpy( data, setboardCmd ); - int i=0; - while ( epdline[i] != '\n' ) { -- data[i+9] = epdline[i]; -- ++i; -+ if (i + setboardLen < MAXSTR - 1) { -+ data[i+setboardLen] = epdline[i]; -+ ++i; -+ } else { -+ printf( _("Error reading contents of file '%s'.\n"), token[1] ); -+ return; -+ } - } -- data[i+9] = '\0'; -+ data[i+setboardLen] = '\0'; - - SetDataToEngine( data ); - SetAutoGo( true ); --- -2.31.1 - diff --git a/games-board/gnuchess/gnuchess-6.2.8-r1.ebuild b/games-board/gnuchess/gnuchess-6.2.8-r1.ebuild deleted file mode 100644 index 8e08730283af..000000000000 --- a/games-board/gnuchess/gnuchess-6.2.8-r1.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Console based chess interface" -HOMEPAGE="https://www.gnu.org/software/chess/chess.html" -SRC_URI="mirror://gnu/chess/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ppc64 x86" - -PATCHES=( - "${FILESDIR}"/${P}-cve-2021-30184.patch # bug 780855 -) - -src_configure() { - # bug #491088 - econf --without-readline -} diff --git a/games-board/xskat/xskat-4.0-r1.ebuild b/games-board/xskat/xskat-4.0-r1.ebuild deleted file mode 100644 index 99f4b01f2de0..000000000000 --- a/games-board/xskat/xskat-4.0-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit desktop toolchain-funcs - -DESCRIPTION="Famous german card game" -HOMEPAGE="http://www.xskat.de/xskat.html" -SRC_URI="http://www.xskat.de/${P}.tar.gz" - -LICENSE="freedist" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~x86" - -RDEPEND=" - media-fonts/font-misc-misc - x11-libs/libX11" -DEPEND="${RDEPEND}" -BDEPEND=" - x11-base/xorg-proto - x11-misc/gccmakedep - >=x11-misc/imake-1.0.8-r1" - -src_configure() { - CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \ - IMAKECPP="${IMAKECPP:-$(tc-getCPP)}" xmkmf -a || die -} - -src_compile() { - local myemakeargs=( - CC="$(tc-getCC)" - CDEBUGFLAGS="${CFLAGS}" - EXTRA_LDOPTIONS="${LDFLAGS}" - ) - emake "${myemakeargs[@]}" -} - -src_install() { - dobin xskat - newman xskat.man xskat.6 - newicon icon.xbm ${PN}.xbm - make_desktop_entry ${PN} XSkat /usr/share/pixmaps/${PN}.xbm - einstalldocs -} diff --git a/games-emulation/Manifest.gz b/games-emulation/Manifest.gz index c072587279fd..efb4e655a64e 100644 Binary files a/games-emulation/Manifest.gz and b/games-emulation/Manifest.gz differ diff --git a/games-emulation/openmsx/Manifest b/games-emulation/openmsx/Manifest index b6e630605161..61bc81a9d708 100644 --- a/games-emulation/openmsx/Manifest +++ b/games-emulation/openmsx/Manifest @@ -1,2 +1 @@ -DIST openmsx-16.0.tar.gz 3997584 BLAKE2B 040bb3f6ff0338740b5212aae21db2c97fcee0e8c8ada1bc84a59d94b1b72180c4b2d5eff8cc4ae84dd95bc77f121e15c2f818f1f2e05ba7dc4781b63770db38 SHA512 a06ec56a8a768356b628e59e587ec85898643b04379da5c72bbbd8e48a0533da34a451b7e4d2a2f540f14e6bbcf833534a1bdac9014ce0c35dfd4ca179618f48 DIST openmsx-17.0.tar.gz 4045461 BLAKE2B 46c70ce3f853aecebf8bdeddc5786903634d88d013497383490d79b0dbf455f48a70b3658b9913db197cf7e66cbc6f4da37da58b1b24d77c75b731e842c663df SHA512 4fc87efd2bfbcd12bebb4e005b18b1cb2048f5d8f3188ef9b55f1e003c8d021fb47bd67d647137daa6a8640b5656b0db363f3b62158d690ddb5f7bf1af3459e1 diff --git a/games-emulation/openmsx/files/openmsx-16.0-libsdl-joystick-fix.patch b/games-emulation/openmsx/files/openmsx-16.0-libsdl-joystick-fix.patch deleted file mode 100644 index ff4e4c31e0cd..000000000000 --- a/games-emulation/openmsx/files/openmsx-16.0-libsdl-joystick-fix.patch +++ /dev/null @@ -1,66 +0,0 @@ -From eb5ddae80bdc6793de42ee67dd72e2da9d632ba8 Mon Sep 17 00:00:00 2001 -From: Maarten ter Huurne -Date: Sat, 23 Jan 2021 03:25:38 +0100 -Subject: [PATCH] Fix compile errors and warnings when SDL_JOYSTICK_DISABLED is - defined - -If there is no base class, it's impossible to override the destructor. - -There were warning suppressors for 3 out of 5 arguments that are unused -when SDL_JOYSTICK_DISABLED is defined; I added the othe two. ---- - src/input/JoyMega.hh | 6 +++++- - src/input/Joystick.cc | 2 ++ - src/input/Joystick.hh | 8 ++++++-- - 3 files changed, 13 insertions(+), 3 deletions(-) - -diff --git a/src/input/JoyMega.hh b/src/input/JoyMega.hh -index 8422bcd2a..05371e27d 100644 ---- a/src/input/JoyMega.hh -+++ b/src/input/JoyMega.hh -@@ -25,7 +25,11 @@ public: - JoyMega(MSXEventDistributor& eventDistributor, - StateChangeDistributor& stateChangeDistributor, - SDL_Joystick* joystick); -- ~JoyMega() override; -+ ~JoyMega() -+#ifndef SDL_JOYSTICK_DISABLED -+ override -+#endif -+ ; - - #ifndef SDL_JOYSTICK_DISABLED - // Pluggable -diff --git a/src/input/Joystick.cc b/src/input/Joystick.cc -index 04b4826cd..90b344c42 100644 ---- a/src/input/Joystick.cc -+++ b/src/input/Joystick.cc -@@ -32,6 +32,8 @@ void Joystick::registerAll(MSXEventDistributor& eventDistributor, - #ifdef SDL_JOYSTICK_DISABLED - (void)eventDistributor; - (void)stateChangeDistributor; -+ (void)commandController; -+ (void)globalSettings; - (void)controller; - #else - for (auto i : xrange(SDL_NumJoysticks())) { -diff --git a/src/input/Joystick.hh b/src/input/Joystick.hh -index 18dd3c1c0..6a0f38d9d 100644 ---- a/src/input/Joystick.hh -+++ b/src/input/Joystick.hh -@@ -38,9 +38,13 @@ public: - Joystick(MSXEventDistributor& eventDistributor, - StateChangeDistributor& stateChangeDistributor, - CommandController& commandController, -- GlobalSettings& globalSettings, -+ GlobalSettings& globalSettings, - SDL_Joystick* joystick); -- ~Joystick() override; -+ ~Joystick() -+#ifndef SDL_JOYSTICK_DISABLED -+ override -+#endif -+ ; - - #ifndef SDL_JOYSTICK_DISABLED - // Pluggable diff --git a/games-emulation/openmsx/openmsx-16.0-r1.ebuild b/games-emulation/openmsx/openmsx-16.0-r1.ebuild deleted file mode 100644 index e321fddfea00..000000000000 --- a/games-emulation/openmsx/openmsx-16.0-r1.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9,10} ) - -inherit desktop flag-o-matic python-any-r1 readme.gentoo-r1 toolchain-funcs xdg - -DESCRIPTION="MSX emulator that aims for perfection" -HOMEPAGE="https://openmsx.org/" -SRC_URI="https://github.com/openMSX/openMSX/releases/download/RELEASE_${PV//./_}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+joystick" - -RDEPEND="dev-lang/tcl:0= - media-libs/alsa-lib - media-libs/libogg - media-libs/libpng:0= - media-libs/libsdl2[joystick=,sound,video] - media-libs/libtheora - media-libs/libvorbis - media-libs/sdl2-ttf - >=media-libs/glew-1.3.2:0= - sys-libs/zlib - virtual/opengl" -DEPEND="${RDEPEND}" -BDEPEND="${PYTHON_DEPS}" - -PATCHES=( "${FILESDIR}/${P}-libsdl-joystick-fix.patch" ) - -DOC_CONTENTS=" -If you want to if you want to emulate real MSX systems and not -only the free C-BIOS machines, put the system ROMs in one of -the following directories: /usr/share/${PN}/systemroms -or ~/.openMSX/share/systemroms -" - -src_prepare() { - default - sed -i \ - -e '/^LDFLAGS:=/d' \ - -e '/LINK_FLAGS_PREFIX/d' \ - -e '/LINK_FLAGS+=/s/-s//' \ - -e '/LINK_FLAGS+=\$(TARGET_FLAGS)/s/$/ $(LDFLAGS)/' \ - build/main.mk \ - || die - sed -i -e '/SYMLINK/s:true:false:' build/custom.mk || die - sed -i -e 's/GPL.txt//' doc/node.mk || die - - # Build system only configured to use bundled version - but not from the - # directory it's distributed in - cp "${S}/Contrib/catch2/catch.hpp" "${S}/src/unittest" || die -} - -src_configure() { - tc-export CXX - - # Doesn't compile without this, and build system doesn't consistently add - # it properly for all compilers - append-cxxflags '-std=c++17' - - default -} - -src_compile() { - emake \ - CXXFLAGS="${CXXFLAGS}" \ - INSTALL_SHARE_DIR="${EPREFIX}/usr/share/${PN}" \ - V=1 -} - -src_test() { - # To get tests, we need to build with OPENMSX_FLAVOUR=unittest and then the - # build is stored in a directory of the pattern - # ${WORKDIR}/derived/*-unittest/. This is separate from the actual build, - # stored in ${WORKDIR}/derived/*-opt. The unittest binary and the workdir - # binary are in each of these directories under their `bin` directories. - emake \ - V=1 \ - CXXFLAGS="${CXXFLAGS}" \ - OPENMSX_FLAVOUR=unittest - - # There will only ever be one *-unittest directory - "${S}"/derived/*-unittest/bin/openmsx || die -} - -src_install() { - # To guarantee installing the proper binary in case tests were built, - # specify the default OPENMSX_FLAVOUR - emake \ - V=1 \ - INSTALL_BINARY_DIR="${ED}/usr/bin" \ - INSTALL_SHARE_DIR="${ED}/usr/share/${PN}" \ - INSTALL_DOC_DIR="${ED}/usr/share/doc/${PF}" \ - OPENMSX_FLAVOUR=opt \ - install - - einstalldocs - readme.gentoo_create_doc - - for i in 16 32 48 64 128 256 ; do - newicon -s "${i}" "share/icons/openMSX-logo-${i}.png" "${PN}.png" - done - make_desktop_entry "${PN}" "openMSX" -} - -pkg_postinst() { - readme.gentoo_print_elog - xdg_pkg_postinst -} diff --git a/games-engines/Manifest.gz b/games-engines/Manifest.gz index 7191d49be7aa..e6a2f273a28f 100644 Binary files a/games-engines/Manifest.gz and b/games-engines/Manifest.gz differ diff --git a/games-engines/frotz/Manifest b/games-engines/frotz/Manifest index 6678f254461c..9c29a2c2b7c3 100644 --- a/games-engines/frotz/Manifest +++ b/games-engines/frotz/Manifest @@ -1,2 +1 @@ -DIST frotz-2.52.tar.bz2 289109 BLAKE2B d1e97e05d1da187846c64dacdf69f34a800be97b75121dc8de63c619687ed5ccbd6b03b2391d2896a14aaad1e4f8eb51926affb92a36f1a5bad8acec91524774 SHA512 387e7a7fe0cffd40b639a306eef89a22421a4ff4a8e5dbcf96a1ef3b901744b3f75a671953ecdc17bde0d699e4756d470b61c8213c47315baa2700da92d06710 DIST frotz-2.53.tar.bz2 375800 BLAKE2B a3d14d11540cb12ed6e5326207946e26b0b3b85e13c50e7431f3901cfb19337661b233bf29077c1efe3a9663aef6d2886bba1717c8132d68e77580692fed30d1 SHA512 e920529920a0b831b859323046aeae032b4b84ac0296d4ef35026fe8a62798cf5f9f4e255af38421aa21ad5507cd87287924daafc759c9b9d7a089ba7d77d808 diff --git a/games-engines/frotz/frotz-2.52-r1.ebuild b/games-engines/frotz/frotz-2.52-r1.ebuild deleted file mode 100644 index 6be32d8e9c56..000000000000 --- a/games-engines/frotz/frotz-2.52-r1.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Interpreter for Z-code based text games" -HOMEPAGE="https://661.org/proj/if/frotz/" -SRC_URI="https://gitlab.com/DavidGriffith/${PN}/-/archive/${PV}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="ncurses sdl sound unicode" -REQUIRED_USE="sound? ( || ( ncurses sdl ) )" - -DEPEND=" - ncurses? ( - sys-libs/ncurses:=[unicode(+)?] - sound? ( - media-libs/libao - media-libs/libmodplug - media-libs/libsamplerate - media-libs/libsndfile[-minimal] - media-libs/libvorbis - ) - ) - sdl? ( - media-libs/freetype:2 - media-libs/libpng:0= - media-libs/libsdl2[sound,threads,video] - media-libs/sdl2-mixer[mod,vorbis,wav] - sys-libs/zlib - virtual/jpeg:0= - ) -" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -src_compile() { - emake \ - dumb \ - $(use ncurses && echo ncurses) \ - $(use sdl && echo sdl) \ - AR="$(tc-getAR)" \ - CC="$(tc-getCC)" \ - PKG_CONFIG="$(tc-getPKG_CONFIG)" \ - RANLIB="$(tc-getRANLIB)" \ - CURSES=$(usex unicode ncursesw ncurses) \ - USE_UTF8=$(usex unicode yes "") \ - SOUND_TYPE=$(usex sound ao none) \ - PREFIX="${EPREFIX}/usr" \ - SYSCONFDIR="${EPREFIX}/etc" -} - -src_install() { - emake \ - install_dumb \ - $(use ncurses && echo install) \ - $(use sdl && echo install_sdl) \ - PREFIX="${EPREFIX}/usr" \ - DESTDIR="${D}" - - dodoc \ - AUTHORS ChangeLog CONTRIBUTORS DUMB HOW_TO_PLAY README TODO \ - doc/frotz.conf-{big,small} -} - -pkg_postinst() { - echo - elog "Global config file can be installed in ${EPREFIX}/etc/frotz.conf" - elog "Sample config files are in ${EPREFIX}/usr/share/doc/${PF}" - echo -} diff --git a/games-engines/qtads/Manifest b/games-engines/qtads/Manifest index 67994fa5b067..bd461933ea27 100644 --- a/games-engines/qtads/Manifest +++ b/games-engines/qtads/Manifest @@ -1,2 +1 @@ -DIST qtads-3.0.0-source.tar.xz 5325048 BLAKE2B cb60908e71edb32157638891a58bed83aba01d484821473716c17845094be9232f9e989bad474db27c1e06734b073ee301756b0528ca880e4c40c0994e95bc48 SHA512 e7b72350876475e0b5b9b8c8c953aa380f5f25dade25785d15c5004a6866bb614c3ca2a3b34f84989013e350f9e73d339ce8ddd7d36766d80a981cfbfda7d1c6 DIST qtads-3.2.0-source.tar.xz 5415396 BLAKE2B 100812db9dd0d0630a5392036e29a366afd61778be2c887e19a1dfafd8f54af00654350fd855691e7e787385675d79a1c065767c93bc97665840396719ae5a0f SHA512 db52ed092d676029cc1ff1d02ddf9e5a91e0bcd77fbfd8e43c923deea4413c452895b70835c519e234f8af0bddf61bad7ad3ec5209876335eacaabe63ed6390a diff --git a/games-engines/qtads/files/qtads-3.0-fluidsynth.patch b/games-engines/qtads/files/qtads-3.0-fluidsynth.patch deleted file mode 100644 index 0104d35098dc..000000000000 --- a/games-engines/qtads/files/qtads-3.0-fluidsynth.patch +++ /dev/null @@ -1,55 +0,0 @@ -From eedae0e7c67da4e12c65ef049665258c1d8f44a8 Mon Sep 17 00:00:00 2001 -From: Michal Petrucha -Date: Thu, 22 Apr 2021 22:55:40 +0200 -Subject: [PATCH] Add support for fluidsynth 2.2.0 - ---- - SDL_audiolib/src/DecoderFluidsynth.cpp | 14 +++++++++++--- - 1 file changed, 11 insertions(+), 3 deletions(-) - -diff --git a/SDL_audiolib/src/DecoderFluidsynth.cpp b/SDL_audiolib/src/DecoderFluidsynth.cpp -index 62a99df..0f4760d 100644 ---- a/SDL_audiolib/src/DecoderFluidsynth.cpp -+++ b/SDL_audiolib/src/DecoderFluidsynth.cpp -@@ -11,6 +11,14 @@ - #include - #include - -+#if FLUIDSYNTH_VERSION_MAJOR == 2 && FLUIDSYNTH_VERSION_MINOR >= 2 -+using read_cb_count_type = fluid_long_long_t; -+using seek_cb_offset_type = fluid_long_long_t; -+#else -+using read_cb_count_type = int; -+using seek_cb_offset_type = long; -+#endif -+ - namespace chrono = std::chrono; - - static fluid_settings_t* settings = nullptr; -@@ -36,7 +44,7 @@ static void* sfontOpenCb(const char* filename) - return rwops; - } - --static int sfontReadCb(void* dst, int count, void* rwops) -+static int sfontReadCb(void* dst, read_cb_count_type count, void* rwops) - { - Buffer buf(count); - if (SDL_RWread(static_cast(rwops), buf.get(), 1, count) <= 0) { -@@ -46,7 +54,7 @@ static int sfontReadCb(void* dst, int count, void* rwops) - return FLUID_OK; - } - --static int sfontSeekCb(void* rwops, long offset, int whence) -+static int sfontSeekCb(void* rwops, seek_cb_offset_type offset, int whence) - { - switch (whence) { - case SEEK_SET: -@@ -72,7 +80,7 @@ static int sfontCloseCb(void* rwops) - return FLUID_OK; - } - --static long sfontTellCb(void* rwops) -+static seek_cb_offset_type sfontTellCb(void* rwops) - { - auto pos = SDL_RWtell(static_cast(rwops)); - if (pos == -1) { diff --git a/games-engines/qtads/qtads-3.0.0.ebuild b/games-engines/qtads/qtads-3.0.0.ebuild deleted file mode 100644 index e375495f938f..000000000000 --- a/games-engines/qtads/qtads-3.0.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit qmake-utils xdg - -DESCRIPTION="Multimedia interpreter for TADS text adventures" -HOMEPAGE="https://realnc.github.io/qtads" -SRC_URI="https://github.com/realnc/qtads/releases/download/v${PV}/${P}-source.tar.xz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+sound" - -BDEPEND=" - virtual/pkgconfig -" -DEPEND=" - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5[ssl] - dev-qt/qtwidgets:5 - sound? ( - media-libs/libsdl2[sound] - media-libs/libsndfile - media-libs/libvorbis - media-sound/fluidsynth:0= - media-sound/mpg123 - ) -" -RDEPEND=${DEPEND} - -PATCHES=( - "${FILESDIR}"/${PN}-3.0-fluidsynth.patch #785235 -) - -src_configure() { - eqmake5 \ - PREFIX="${EPREFIX}/usr" \ - $(usex !sound CONFIG+=disable-audio '') \ - -after CONFIG-=silent -} - -src_install() { - emake INSTALL_ROOT="${D}" install -} diff --git a/games-engines/residualvm/Manifest b/games-engines/residualvm/Manifest index 3aa86f9db791..fb840283578d 100644 --- a/games-engines/residualvm/Manifest +++ b/games-engines/residualvm/Manifest @@ -1,2 +1 @@ -DIST residualvm-0.2.1-sources.tar.bz2 5533814 BLAKE2B befcb42c823d31ff1e8793d0c902bfdf6b3728530c97b3f43ada5d3b2903a0cddba3247095d1674e62cdd75a6db28a7a5f3b1437e5c39cb5eccb37dff9d52fad SHA512 9eed93770ef1ad828934c32e937b861c93f1ebbb0d936f3f56668e654588f734dc88e29446f0a69f8f26475e96b8ce7ca85318758b99aabc9586756692c721da DIST residualvm-0.3.1-sources.tar.bz2 6711799 BLAKE2B 93d21bc5ee2c567b1ef256a69a2634761cd52211a0b2d926edc67b65e0cc1bf23b41c91225e6d43990d61e6c3761acf19defaa9b477ad882d332ad77c71af1a6 SHA512 491a77f1775718795d93f099fa39ec5888755ac1df610089c17209334b98ae783271078ed03a61ced09835aa327446804a55522d4b83f618dd3b843c231444a0 diff --git a/games-engines/residualvm/residualvm-0.2.1-r1.ebuild b/games-engines/residualvm/residualvm-0.2.1-r1.ebuild deleted file mode 100644 index a9272195b281..000000000000 --- a/games-engines/residualvm/residualvm-0.2.1-r1.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit desktop toolchain-funcs gnome2-utils - -DESCRIPTION="A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures" -HOMEPAGE="https://www.residualvm.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}-sources.tar.bz2" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -# TODO: fix dynamic plugin support -# games crash without media-libs/libsdl[alsa] -RDEPEND=" - media-libs/alsa-lib - media-libs/freetype:2 - media-libs/libsdl[X,sound,alsa,joystick,opengl,video] - sys-libs/zlib - virtual/glu - virtual/opengl" -DEPEND="${RDEPEND}" - -src_configure() { - # not an autotools script - # most configure options currently do nothing, verify on version bump !!! - # disable explicitly, otherwise we get unneeded linkage (some copy-paste build system) - ./configure \ - --backend=sdl \ - --disable-debug \ - --disable-faad \ - --disable-flac \ - --disable-fluidsynth \ - --disable-libunity \ - --disable-mad \ - --disable-sparkle \ - --disable-translation \ - --disable-tremor \ - --disable-vorbis \ - --docdir="/usr/share/doc/${PF}" \ - --enable-all-engines \ - --enable-release-mode \ - --enable-zlib \ - || die "configure failed" -} - -src_compile() { - emake \ - VERBOSE_BUILD=1 \ - AR="$(tc-getAR) cru" \ - RANLIB=$(tc-getRANLIB) -} - -src_install() { - dobin residualvm - - insinto "/usr/share/${PN}" - doins gui/themes/modern.zip dists/engine-data/residualvm-grim-patch.lab - - doicon -s scalable icons/${PN}.svg - doicon -s 256 icons/${PN}.png - domenu dists/${PN}.desktop - - doman dists/${PN}.6 - dodoc AUTHORS README.md KNOWN_BUGS TODO -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} diff --git a/games-engines/scummvm-tools/Manifest b/games-engines/scummvm-tools/Manifest index 46d781ead79e..c42f54febae1 100644 --- a/games-engines/scummvm-tools/Manifest +++ b/games-engines/scummvm-tools/Manifest @@ -1,2 +1 @@ -DIST scummvm-tools-2.1.0.tar.xz 710124 BLAKE2B e6985c2e12a31aa9b11a80193186b101e663ce7eaf95de68639482bc82e104c879518f253c40e733c829ceb75b62d4905314cf7ad959766c4b7b49c1ee9e0136 SHA512 40e0b1a545257922dd1846d520ef0c18ef7a2682a3d7bb1709bcd49b1338ed7cefea438958941586329271d84e01bf189a14e31f5758e500df607d162ee9cc15 DIST scummvm-tools-2.2.0.tar.xz 712048 BLAKE2B bb5307ee25476c9b4042fa0704f8b9bbfc4a57c09670bc699c83b9d5ebb0a7b9cda55f7267aafa6ae57e3ce53993740a1523616e39cf0a2c0c7249b23208372e SHA512 97d23a94772809b6fe6dcfc4d1bde9e1a12c124cb49b0a465456adbbd56358a1612b9797abb9577dc350e1150fb4a70d4b7451e794c436c8e91692b4a83deb89 diff --git a/games-engines/scummvm-tools/scummvm-tools-2.1.0.ebuild b/games-engines/scummvm-tools/scummvm-tools-2.1.0.ebuild deleted file mode 100644 index 9920a02a2c51..000000000000 --- a/games-engines/scummvm-tools/scummvm-tools-2.1.0.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER=3.0-gtk3 -inherit wxwidgets - -DESCRIPTION="utilities for the SCUMM game engine" -HOMEPAGE="http://scummvm.sourceforge.net/" -SRC_URI="http://scummvm.org/frs/scummvm-tools/${PV}/${P}.tar.xz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="flac iconv mad png vorbis" -RESTRICT="test" # some tests require external files - -RDEPEND=" - >=dev-libs/boost-1.32:= - sys-libs/zlib - x11-libs/wxGTK:${WX_GTK_VER} - flac? ( media-libs/flac ) - iconv? ( virtual/libiconv media-libs/freetype:2 ) - mad? ( media-libs/libmad ) - png? ( media-libs/libpng:0= ) - vorbis? ( media-libs/libvorbis ) -" -DEPEND=" - ${RDEPEND} -" -BDEPEND=" - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}/${PN}-1.8.0-binprefix.patch" -) - -src_prepare() { - default - - rm -rf *.bat dists/win32 || die - sed -ri -e '/^(CC|CXX)\b/d' Makefile || die -} - -src_configure() { - setup-wxwidgets - - # Not an autoconf script - ./configure \ - --prefix=/usr \ - --disable-tremor \ - --enable-verbose-build \ - --mandir=/usr/share/man \ - $(use_enable flac) \ - $(use_enable iconv) \ - $(use_enable iconv freetype) \ - $(use_enable mad) \ - $(use_enable png) \ - $(use_enable vorbis) || die -} - -src_install() { - EXEPREFIX="${PN}-" default -} diff --git a/games-fps/Manifest.gz b/games-fps/Manifest.gz index d5e0982f3d7d..c68f4af29785 100644 Binary files a/games-fps/Manifest.gz and b/games-fps/Manifest.gz differ diff --git a/games-fps/gzdoom/Manifest b/games-fps/gzdoom/Manifest index 759883275350..9712094c2ea3 100644 --- a/games-fps/gzdoom/Manifest +++ b/games-fps/gzdoom/Manifest @@ -1,3 +1 @@ -DIST gzdoom-4.7.0.tar.gz 14070204 BLAKE2B 4cf0555e7d1e34f71057502bce0973d49ffca6bccd2396faee6360832511b90450008c4ec22a0cdadfa3edcd13ec73bf412c0af7c6298c560c087f8a3d5f0bdb SHA512 539d1de85b3e2313e57fc8fcb0fa4b7a5110107f5436ee3412342c1140cebbe4ccec45efa3211b43aba8bc3715ce0e7819dd593f55d8ee906f2382573435361f DIST gzdoom-4.7.1.tar.gz 19562412 BLAKE2B 48b089c9d0ca0f26820ea90ea1a1a6ce3fa325f6f7bd36ded66ba43eeaab610ca99eacb1ca0aec75b0888a65108573e2c85d2ce0e88663031583267f1143386e SHA512 040a51d2783616cca9f3d7e70bf83adf0d6afa8d7378a9f743cbf152811c07c4f03eecdbbdb617d9fda625049a6f13313dce6e5017698bf36fae74e107c012f0 -DIST widepix-d458411.tar.gz 2542783 BLAKE2B 622355d61c102cf71f724ed709b80ba6ba652905fb806bfd6dad6a0944eabd3bac71c7fdad17354af17493f64d6418e93eef37c032e85615dffa27f9e8faa97f SHA512 fe8a243e2dbe6330121bf139e310baf677ec4803d6b0ecd24a93792a2f7071ba739b1c038ca7aa7eeafcc83bf57c8a009189a90e3115305967ba23b675c96543 diff --git a/games-fps/gzdoom/files/gzdoom-4.5.0-Introduce-the-BUILD_NONFREE-option.patch b/games-fps/gzdoom/files/gzdoom-4.5.0-Introduce-the-BUILD_NONFREE-option.patch deleted file mode 100644 index 64a230dcd984..000000000000 --- a/games-fps/gzdoom/files/gzdoom-4.5.0-Introduce-the-BUILD_NONFREE-option.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 9270c7bdb35d4dce2c270592011498a12a1bf6e7 Mon Sep 17 00:00:00 2001 -From: William Breathitt Gray -Date: Sat, 31 Aug 2019 21:23:23 +0900 -Subject: [PATCH] Introduce the BUILD_NONFREE option - -This allow users to disable building nonfree components (brightmaps.pk3, -game_support.pk3, and game_widescreen_gfx.pk3) if they so desire. ---- - CMakeLists.txt | 9 ++++++--- - 1 file changed, 6 insertions(+), 3 deletions(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index a3763ec1f..d0c4720bd 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -400,11 +400,14 @@ add_subdirectory( libraries/lzma ) - add_subdirectory( tools ) - add_subdirectory( libraries/gdtoa ) - add_subdirectory( wadsrc ) --add_subdirectory( wadsrc_bm ) - add_subdirectory( wadsrc_lights ) --add_subdirectory( wadsrc_extra ) --add_subdirectory( wadsrc_widescreen ) - add_subdirectory( src ) -+option (BUILD_NONFREE "Build nonfree components" ON) -+if( BUILD_NONFREE ) -+ add_subdirectory( wadsrc_bm ) -+ add_subdirectory( wadsrc_extra ) -+ add_subdirectory( wadsrc_widescreen ) -+endif() - - if( NOT CMAKE_CROSSCOMPILING ) - export(TARGETS ${CROSS_EXPORTS} FILE "${CMAKE_BINARY_DIR}/ImportExecutables.cmake" ) --- -2.28.0 - diff --git a/games-fps/gzdoom/gzdoom-4.7.0.ebuild b/games-fps/gzdoom/gzdoom-4.7.0.ebuild deleted file mode 100644 index 52da570e32f4..000000000000 --- a/games-fps/gzdoom/gzdoom-4.7.0.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake desktop xdg flag-o-matic - -WIDEPIX_COMMIT="d458411db4795dfd1420cf1c6456f6d2999b3bad" -DESCRIPTION="A modder-friendly OpenGL source port based on the DOOM engine" -HOMEPAGE="https://zdoom.org" -SRC_URI="https://github.com/coelckers/${PN}/archive/g${PV}.tar.gz -> ${P}.tar.gz - non-free? ( https://github.com/nashmuhandes/WidePix/archive/${WIDEPIX_COMMIT}.tar.gz -> widepix-${WIDEPIX_COMMIT:0:7}.tar.gz )" - -LICENSE="Apache-2.0 BSD BZIP2 GPL-3 LGPL-2.1+ LGPL-3 MIT - non-free? ( Activision ChexQuest3 DOOM-COLLECTORS-EDITION freedist WidePix )" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="debug gles2 gtk +non-free openmp telemetry vulkan" - -DEPEND=" - app-arch/bzip2 - media-libs/libsdl2[gles2?,opengl,vulkan?] - media-libs/openal - media-libs/zmusic - sys-libs/zlib - virtual/jpeg:0 - gtk? ( x11-libs/gtk+:3 )" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}-g${PV}" - -PATCHES=( - "${FILESDIR}/${PN}-4.5.0-Introduce-the-BUILD_NONFREE-option.patch" -) - -src_prepare() { - rm -rf docs/licenses || die - rm -rf libraries/{bzip2,jpeg,zlib} || die - if ! use non-free ; then - rm -rf wadsrc_bm wadsrc_extra wadsrc_widescreen || die - else - mv "${WORKDIR}/WidePix-${WIDEPIX_COMMIT}/filter" wadsrc_widescreen/static/ || die - fi - - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DINSTALL_DOCS_PATH="${EPREFIX}/usr/share/doc/${PF}" - -DINSTALL_PK3_PATH="${EPREFIX}/usr/share/doom" - -DINSTALL_SOUNDFONT_PATH="${EPREFIX}/usr/share/doom" - -DDYN_OPENAL=OFF - -DNO_GTK="$(usex !gtk)" - -DNO_OPENAL=OFF - -DHAVE_VULKAN="$(usex vulkan)" - -DHAVE_GLES2="$(usex gles2)" - -DNO_OPENMP="$(usex !openmp)" - -DBUILD_NONFREE="$(usex non-free)" - ) - - use debug || append-cppflags -DNDEBUG - use telemetry || append-cppflags -DNO_SEND_STATS - - cmake_src_configure -} - -src_install() { - newicon src/posix/zdoom.xpm "${PN}.xpm" - make_desktop_entry "${PN}" "GZDoom" "${PN}" "Game;ActionGame" - cmake_src_install -} - -pkg_postinst() { - xdg_pkg_postinst - - if ! use non-free ; then - ewarn - ewarn "GZDoom installed without non-free components." - ewarn "Note: The non-free game_support.pk3 file is needed to play" - ewarn " games natively supported by GZDoom." - ewarn "A list of games natively supported by GZDoom is available" - ewarn "on the ZDoom wiki: https://zdoom.org/wiki/IWAD" - ewarn - fi -} diff --git a/games-fps/prboom-plus/Manifest b/games-fps/prboom-plus/Manifest index fc0ddfcd9b98..11f61226eb91 100644 --- a/games-fps/prboom-plus/Manifest +++ b/games-fps/prboom-plus/Manifest @@ -1,2 +1 @@ DIST prboom-plus-2.6.1.tar.gz 1555792 BLAKE2B accb919039b966952340a18b3a37b9c2401a20c1f9562829ba531bf4dafc5e876d7d1212e9ba58886c7469a86b3170c48973cbd8af8ab03d1f2d685813c39607 SHA512 6ae628a453930d4fe3901d186a7c450276d023db6b38e678463f52d463a697819cea1022510030f7405bee8244c3dec04d00741fee8de839775e6e0965f0df39 -DIST prboom-plus-2.6.tar.gz 1526732 BLAKE2B 00c0eeb0dfb5a99a427c986e557b6616e69be3b98373582c3aa54585136e3a16b67c0176faec59ebc011112bc8764da78b34215ae4c00b490f12820b26704e45 SHA512 c2f8c6895683ee22d729ad2c9dc10bd821e5bdb55d75b88b4c6db25b8f3604370d18285677660c82761912a159b0c1068a6fcf1c8333e20d849fa1087a74800f diff --git a/games-fps/prboom-plus/files/prboom-plus-2.6-Set-CMAKE_INSTALL_DOCDIR-as-a-cache-entry.patch b/games-fps/prboom-plus/files/prboom-plus-2.6-Set-CMAKE_INSTALL_DOCDIR-as-a-cache-entry.patch deleted file mode 100644 index 8f07606acd3c..000000000000 --- a/games-fps/prboom-plus/files/prboom-plus-2.6-Set-CMAKE_INSTALL_DOCDIR-as-a-cache-entry.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 9f56505b7c41337cab3a6ce3f882cf8df6bf29a9 Mon Sep 17 00:00:00 2001 -From: William Breathitt Gray -Date: Mon, 22 Feb 2021 18:27:24 +0900 -Subject: [PATCH] Set CMAKE_INSTALL_DOCDIR as a cache entry - -CMAKE_INSTALL_DOCDIR is being unconditionally set which prevents users -from supplying their own docdir preference. This changes the behavior to -set CMAKE_INSTALL_DOCDIR as a cache entry so that users can override the -default install location if they so wish. ---- - prboom2/CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/prboom2/CMakeLists.txt b/prboom2/CMakeLists.txt -index 9c2c1fde..3110d7f3 100644 ---- a/prboom2/CMakeLists.txt -+++ b/prboom2/CMakeLists.txt -@@ -38,7 +38,7 @@ set(PACKAGE_TARNAME "prboom-plus") - set(PACKAGE_VERSION "${PROJECT_VERSION}um") - set(PACKAGE_HOMEPAGE "${PROJECT_HOMEPAGE_URL}") - set(PACKAGE_STRING "${PROJECT_NAME} ${PROJECT_VERSION}") --set(CMAKE_INSTALL_DOCDIR "${CMAKE_INSTALL_DATAROOTDIR}/doc/${PACKAGE_TARNAME}") -+set(CMAKE_INSTALL_DOCDIR "${CMAKE_INSTALL_DATAROOTDIR}/doc/${PACKAGE_TARNAME}" CACHE PATH "") - - include(CheckSymbolExists) - --- -2.30.1 - diff --git a/games-fps/prboom-plus/prboom-plus-2.6.ebuild b/games-fps/prboom-plus/prboom-plus-2.6.ebuild deleted file mode 100644 index dcd77904bd3f..000000000000 --- a/games-fps/prboom-plus/prboom-plus-2.6.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 2019-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake desktop xdg - -DESCRIPTION="An enhanced clone of the classic first-person shooter Doom" -HOMEPAGE="https://github.com/coelckers/prboom-plus/" -SRC_URI="http://deb.debian.org/debian/pool/main/p/prboom-plus/${PN}_${PV}um.orig.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+ GPL-3+ BSD BSD-2 BSD-with-disclosure CC-BY-3.0 CC0-1.0 LGPL-2.1+ MIT public-domain" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="dumb fluidsynth mad net +opengl +pcre portmidi sdl2-image +sdl2-mixer server vorbis zlib" -REQUIRED_USE="server? ( net )" - -DEPEND=" - media-libs/libsdl2[opengl?,joystick,sound,video] - dumb? ( media-libs/dumb:= ) - fluidsynth? ( media-sound/fluidsynth:= ) - mad? ( media-libs/libmad ) - net? ( media-libs/sdl2-net ) - pcre? ( dev-libs/libpcre:3 ) - portmidi? ( media-libs/portmidi ) - sdl2-image? ( media-libs/sdl2-image ) - sdl2-mixer? ( media-libs/sdl2-mixer[midi] ) - vorbis? ( media-libs/libvorbis ) - zlib? ( sys-libs/zlib )" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${P}um/prboom2" - -src_prepare() { - eapply -p2 "${FILESDIR}/${P}-Set-CMAKE_INSTALL_DOCDIR-as-a-cache-entry.patch" - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DBUILD_GL="$(usex opengl)" - -DWITH_IMAGE="$(usex sdl2-image)" - -DWITH_MIXER="$(usex sdl2-mixer)" - -DWITH_NET="$(usex net)" - -DWITH_PCRE="$(usex pcre)" - -DWITH_ZLIB="$(usex zlib)" - -DWITH_MAD="$(usex mad)" - -DWITH_FLUIDSYNTH="$(usex fluidsynth)" - -DWITH_DUMB="$(usex dumb)" - -DWITH_VORBISFILE="$(usex vorbis)" - -DWITH_PORTMIDI="$(usex portmidi)" - -DDOOMWADDIR="${EPREFIX}/usr/share/doom" - -DWAD_DATA_PATH="${EPREFIX}/usr/share/doom" - -DBUILD_SERVER="$(usex server)" - ) - cmake_src_configure -} - -src_install() { - doicon -s scalable ICONS/${PN}.svg - domenu ICONS/${PN}.desktop - cmake_src_install -} diff --git a/games-fps/redeclipse/Manifest b/games-fps/redeclipse/Manifest index a4c91aa7a866..01ebe9068941 100644 --- a/games-fps/redeclipse/Manifest +++ b/games-fps/redeclipse/Manifest @@ -1,2 +1 @@ -DIST redeclipse_1.6.0_nix.tar.bz2 898467399 BLAKE2B 85b4d02ea95cc44d902f6512ec5ce512583353107deb690ec24608d9b96fd4a6b7fd720250413a192cf7229b2f66294ddeb81230e5ace06abdcd4f6f3dc8d92f SHA512 e944aed8155b5e89e8df000516d4a019a63d38d7ad9c3982b2e111f8a20bc848a98e30c1b60f4fdaf006c2ff9e2cb04647c07778eb2562eaf7db733dbce11233 DIST redeclipse_2.0.0_nix.tar.bz2 948705751 BLAKE2B 00cb03320f80433db1cc5bb9b895cdc829453e64e32d0e481eeac6c5dec9332b2e763f511bee4e9917b334d3f383c2c2a2605dfbd07cc73ffeb3f8efb90278fc SHA512 179a8177ddafefb09de38629c7cc15e8843cd49ad3580093c9f4243dd0d2d2fe095e8df770c2a8f3996d4e273822d6bc955acca73f8191266adb95a34beaf6dd diff --git a/games-fps/redeclipse/redeclipse-1.6.0-r3.ebuild b/games-fps/redeclipse/redeclipse-1.6.0-r3.ebuild deleted file mode 100644 index f9fc63f5d111..000000000000 --- a/games-fps/redeclipse/redeclipse-1.6.0-r3.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit desktop - -DESCRIPTION="First-person ego-shooter, built as a total conversion of Cube Engine 2" -HOMEPAGE="https://www.redeclipse.net" -SRC_URI="https://github.com/red-eclipse/base/releases/download/v${PV}/${PN}_${PV}_nix.tar.bz2" - -# According to doc/license.txt file -LICENSE="HPND ZLIB CC-BY-SA-3.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="dedicated" - -DEPEND="!dedicated? ( - media-libs/freetype:2 - media-libs/libsdl2[opengl] - media-libs/sdl2-image:0[jpeg,png] - media-libs/sdl2-mixer:0[mp3,vorbis] - virtual/opengl - x11-libs/libX11 - ) - >=net-libs/enet-1.3.9:= - sys-libs/zlib" -RDEPEND="${DEPEND}" - -src_prepare() { - sed -e "s:@APPNAME@:${PN}:" \ - src/install/nix/redeclipse.desktop.am \ - > src/install/nix/redeclipse.desktop || die - - if ! use dedicated; then - sed -e "s:@LIBEXECDIR@:/usr/libexec:g" \ - -e "s:@DATADIR@:/usr/share:g" \ - -e "s:@DOCDIR@:/usr/share/doc/${PF}:" \ - -e "s:@CAPPNAME@:${PN^^}:g" \ - -e "s:@APPNAME@:${PN}:g" \ - doc/man/redeclipse.6.am \ - > doc/man/redeclipse.6 || die - fi - - sed -e "s:@LIBEXECDIR@:/usr/libexec:g" \ - -e "s:@DATADIR@:/usr/share:g" \ - -e "s:@DOCDIR@:/usr/share/doc/${PF}:" \ - -e "s:@CAPPNAME@:${PN^^}:g" \ - -e "s:@APPNAME@:${PN}:g" \ - doc/man/redeclipse-server.6.am \ - > doc/man/redeclipse-server.6 || die - - default -} - -src_compile() { - if ! use dedicated; then - emake CXXFLAGS="${CXXFLAGS}" STRIP= -C src client server - else - emake CXXFLAGS="${CXXFLAGS}" STRIP= -C src server - fi -} - -src_install() { - insinto /usr/share/redeclipse - doins -r config data - - dobin src/redeclipse_server_linux - - if ! use dedicated; then - dobin src/redeclipse_linux - newicon "src/install/nix/${PN}_x128.png" "${PN}.png" - domenu "src/install/nix/${PN}.desktop" - doman doc/man/redeclipse.6 - fi - - doman doc/man/redeclipse-server.6 - dodoc readme.txt doc/examples/servinit.cfg - - dobin "${FILESDIR}/redeclipse" - dosym redeclipse /usr/bin/redeclipse_server -} diff --git a/games-fps/yamagi-quake2/Manifest b/games-fps/yamagi-quake2/Manifest index 95c071326948..adc6933fda86 100644 --- a/games-fps/yamagi-quake2/Manifest +++ b/games-fps/yamagi-quake2/Manifest @@ -1,9 +1,5 @@ -DIST quake2-7.45.tar.xz 1997816 BLAKE2B 1025a3e226e80b456c48fcd76100f46fa03e3ef2c61d70071136f8119f2b2af39b24fa859239217d34d14501127e4880ff7b61b79dc61c79e64dd22fcc44ce0b SHA512 1aa161ca03782eba14feecd142d65eb5a9ca5af4b384f21d3e68338cd8d88bd5e71c1678d44285eea692d5d1b2161429270745d880b4caacd6c87c7e76ed404b DIST quake2-8.00.tar.xz 2086776 BLAKE2B 6a525b0d3703e17ca6ff85cbef7cf0c0522308fb71f8db4649e7bfbe3326c610d878d6a4af36ed6a578c700c5e1d004be7c0a9dd86cb495a27c8deb8b761eab9 SHA512 886c0df687e7e64a534f6e6f0b212084212d4d5c1278d2567b25bdd48df9ffab9ce75894ab6cfc2fd3a070adf9c1e3d7bb2e823d4f5aef8ef2cbc21c21c063bd -DIST quake2-ctf-1.07.tar.xz 135880 BLAKE2B 7501d5db676cbc7b523313bf4e5d572cc8711efd09e2390d6aa6980d45bc682e7f137581b8a9a8d4b491de8f8ed7dd1cb32a66c9ed2cc456e114f672cedf2a1c SHA512 de2ab94fc7bb43327170f6aefbaf811e7a0071da2e5c4602354854e46e4c8cfc687a6300e7162c8f1be2f0b42cf2d3edc255c2f44fb0e39adc873a521197a316 DIST quake2-ctf-1.08.tar.xz 136468 BLAKE2B cce9f75333c03494dccc1a693c3c0a62194457673c17c59cd5d08a06a11daa769dabaf787c04d9de291c7cc255b4decef06ae5f045c5bc7bc3f4008f0e6babdb SHA512 3d3343ae5287c5f01efd3363ede19f2e41cc8d083691c928afd9e4a81c0b46f6002eb2ed99d11742b7c04f8ea728a1dbb3b5d26ce4fd1066b4f49e3fb664317e DIST quake2-ref_vk-1.0.1.tar.gz 290799 BLAKE2B 0716d539704a58067fd2d6d4f21b27976c6bd073b2722584a804c9702f2886b252701d81f2fe1e5aba22ab83fbddd1e35ce3574c3e3d41b609ebac417ee7cfe4 SHA512 99a6b7191a2eed714f70ec389a1f1972f430b9ba324e6880ce96101336beac640fef2d45adc1a6bf04c386a1d088fafd401d303704079ed7207fe7b56d2758db -DIST quake2-rogue-2.07.tar.xz 243828 BLAKE2B f292bc7318ee8094b0dae0219fbf7882fb9a168ee2b311c254b5cabdb53f6a65350be80ea09185f66b5e3af4e670c3dd21235a06aeec2f334dc84cb474cb02da SHA512 21b0dca16240307c1e7a6c2a2c08e380fabf4f6bdbf1981a2183056ccd5f05f7003f41b38b4b131f9b16909b4c714ff2ef23638601b0c420003674bc9a9d0789 DIST quake2-rogue-2.08.tar.xz 282140 BLAKE2B e4ead304f35028010f4ffea6eed15753feac99cfa301975f8cae88d9ac10313c9e1a9e29e37d4f186df34abf659dd45b79bda04b5f420565f256bde8b69ab199 SHA512 216b8a9862c7f189bdabc68770306ead4fa2173f9051a8fd2a7927eae8aa4e42116bbde947591432d200832a3038c79316325549822fa531fc0e76a2bec57762 -DIST quake2-xatrix-2.08.tar.xz 192760 BLAKE2B ce6d4bae8ed2970e9ca9971c32fba6b226d7d7616dc7e5168d1504f6ae62ece286c21c22f0f8a3d2df48f7b63b53ec681efa92074f918ef4e5c9b98667e2682b SHA512 cc8fd7add3ded10ad88f1a1629c7222c26a398fa47c2c1aa6091dc310b7f2f5830c997c534b38cc0f6d4153357d76901ba48dbd505ce96f95d84f97f2f0dddd9 DIST quake2-xatrix-2.09.tar.xz 214096 BLAKE2B a4115da0d5624245d1065a67379d95a2b22330e1a5a999d7493d832d5edca4c83752f3a447ab1934c6709b7ed9247d5edd2b3f4b9b398a04982a9428381f2f9d SHA512 a4cf351eca2a72e6b5d8eeecf5d582a3c2c677b71dcf6bcdea310f1503f55ad8ccaf7225461bd78fc695e90d57525fd9a53c5d17e1eabd3a1d28e9386331399c diff --git a/games-fps/yamagi-quake2/files/yamagi-quake2-addon-respect-flags-r3.patch b/games-fps/yamagi-quake2/files/yamagi-quake2-addon-respect-flags-r3.patch deleted file mode 100644 index c7cf611ab96d..000000000000 --- a/games-fps/yamagi-quake2/files/yamagi-quake2-addon-respect-flags-r3.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- quake2-xatrix-2.06.orig/Makefile 2019-02-05 10:56:06.000000000 +0300 -+++ quake2-xatrix-2.06/Makefile 2019-04-08 01:24:04.124176498 +0300 -@@ -75,11 +75,11 @@ - # - # -MMD to generate header dependencies. - ifeq ($(OSTYPE), Darwin) --CFLAGS := -O2 -fno-strict-aliasing -fomit-frame-pointer \ -- -Wall -pipe -g -fwrapv -arch i386 -arch x86_64 -+CFLAGS += -fno-strict-aliasing -fomit-frame-pointer \ -+ -Wall -fwrapv -arch i386 -arch x86_64 - else --CFLAGS := -std=gnu99 -O2 -fno-strict-aliasing -fomit-frame-pointer \ -- -Wall -pipe -g -MMD -fwrapv -+CFLAGS += -std=gnu99 -fno-strict-aliasing -fomit-frame-pointer \ -+ -Wall -MMD -fwrapv - endif - - # ---------- -@@ -107,11 +107,11 @@ - - # Base LDFLAGS. - ifeq ($(OSTYPE), Darwin) --LDFLAGS := -shared -arch i386 -arch x86_64 -+LDFLAGS += -shared -arch i386 -arch x86_64 - else ifeq ($(OSTYPE), Windows) --LDFLAGS := -shared -static-libgcc -+LDFLAGS += -shared -static-libgcc - else --LDFLAGS := -shared -lm -+LDFLAGS += -shared -lm - endif - - # ---------- diff --git a/games-fps/yamagi-quake2/files/yamagi-quake2-addon-respect-flags-r4.patch b/games-fps/yamagi-quake2/files/yamagi-quake2-addon-respect-flags-r4.patch deleted file mode 100644 index 86c794b99e5e..000000000000 --- a/games-fps/yamagi-quake2/files/yamagi-quake2-addon-respect-flags-r4.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- a/Makefile 2020-02-24 19:01:11.000000000 +0300 -+++ b/Makefile 2020-03-08 03:07:40.480074095 +0300 -@@ -66,11 +66,11 @@ endif - # - # -MMD to generate header dependencies. - ifeq ($(OSTYPE), Darwin) --CFLAGS := -O2 -fno-strict-aliasing -fomit-frame-pointer \ -- -Wall -pipe -g -fwrapv -arch x86_64 -+CFLAGS += -fno-strict-aliasing -fomit-frame-pointer \ -+ -Wall -fwrapv -arch x86_64 - else --CFLAGS := -O2 -fno-strict-aliasing -fomit-frame-pointer \ -- -Wall -pipe -g -MMD -fwrapv -+CFLAGS += -fno-strict-aliasing -fomit-frame-pointer \ -+ -Wall -MMD -fwrapv - endif - - # ---------- -@@ -93,11 +93,11 @@ endif - - # Base LDFLAGS. - ifeq ($(OSTYPE), Darwin) --LDFLAGS := -shared -arch x86_64 -+LDFLAGS += -shared -arch x86_64 - else ifeq ($(OSTYPE), Windows) --LDFLAGS := -shared -static-libgcc -+LDFLAGS += -shared -static-libgcc - else --LDFLAGS := -shared -lm -+LDFLAGS += -shared -lm - endif - - # ---------- diff --git a/games-fps/yamagi-quake2/yamagi-quake2-7.45.ebuild b/games-fps/yamagi-quake2/yamagi-quake2-7.45.ebuild deleted file mode 100644 index de8310ba1bfe..000000000000 --- a/games-fps/yamagi-quake2/yamagi-quake2-7.45.ebuild +++ /dev/null @@ -1,149 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit desktop wrapper - -CTF_V="1.07" -ROGUE_V="2.07" -XATRIX_V="2.08" - -DESCRIPTION="Quake 2 engine focused on single player" -HOMEPAGE="https://www.yamagi.org/quake2/" -SRC_URI="https://deponie.yamagi.org/quake2/quake2-${PV}.tar.xz - ctf? ( https://deponie.yamagi.org/quake2/quake2-ctf-${CTF_V}.tar.xz ) - rogue? ( https://deponie.yamagi.org/quake2/quake2-rogue-${ROGUE_V}.tar.xz ) - xatrix? ( https://deponie.yamagi.org/quake2/quake2-xatrix-${XATRIX_V}.tar.xz )" -S="${WORKDIR}/quake2-${PV}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="+client ctf dedicated openal +opengl rogue softrender xatrix" -REQUIRED_USE=" - || ( client dedicated ) - client? ( || ( opengl softrender ) ) -" - -DEPEND=" - client? ( - media-libs/libsdl2[video] - !openal? ( media-libs/libsdl2[sound] ) - opengl? ( - media-libs/libsdl2[opengl] - virtual/opengl - ) - ) -" -RDEPEND="${DEPEND} - client? ( openal? ( media-libs/openal ) ) -" - -DOCS=( CHANGELOG README.md doc ) - -mymake() { - emake \ - VERBOSE=1 \ - WITH_SYSTEMWIDE=yes \ - WITH_SYSTEMDIR="${EPREFIX}"/usr/share/games/quake2 \ - WITH_OPENAL=$(usex openal) \ - "$@" -} - -src_prepare() { - local addon - for addon in ctf rogue xatrix; do - use ${addon} || continue - - pushd "${WORKDIR}"/quake2-${addon}-* >/dev/null || die - if [[ ${addon} = ctf ]]; then - eapply -l -- "${FILESDIR}"/${PN}-addon-respect-flags-r4.patch - else - eapply -l -- "${FILESDIR}"/${PN}-addon-respect-flags-r3.patch - fi - popd >/dev/null || die - done - - default -} - -src_compile() { - local targets=( game ) - if use client; then - targets+=( client ) - use opengl && targets+=( ref_gl1 ref_gl3 ) - use softrender && targets+=( ref_soft ) - fi - use dedicated && targets+=( server ) - - mymake config - mymake "${targets[@]}" - - local addon - for addon in ctf rogue xatrix; do - use ${addon} || continue - emake -C "${WORKDIR}"/quake2-${addon}-* VERBOSE=1 - done -} - -src_install() { - insinto /usr/lib/yamagi-quake2 - # Yamagi Quake II expects all binaries to be in the same directory - # See stuff/packaging.md for more info - exeinto /usr/lib/yamagi-quake2 - doins -r release/. - - if use client; then - doexe release/quake2 - dosym ../lib/yamagi-quake2/quake2 /usr/bin/yquake2 - - newicon stuff/icon/Quake2.svg "yamagi-quake2.svg" - make_desktop_entry "yquake2" "Yamagi Quake II" - fi - - if use dedicated; then - doexe release/q2ded - dosym ../lib/yamagi-quake2/q2ded /usr/bin/yq2ded - fi - - insinto /usr/lib/yamagi-quake2/baseq2 - doins stuff/yq2.cfg - - local addon - for addon in ctf rogue xatrix; do - use ${addon} || continue - - insinto /usr/lib/yamagi-quake2/${addon} - doins "${WORKDIR}"/quake2-${addon}-*/release/game.so - - if use client; then - local addon_name - case ${addon} in - ctf) addon_name="CTF" ;; - rogue) addon_name="Ground Zero" ;; - xatrix) addon_name="The Reckoning" ;; - esac - - make_wrapper "yquake2-${addon}" "yquake2 +set game ${addon}" - make_desktop_entry "yquake2-${addon}" "Yamagi Quake II: ${addon_name}" - fi - done - - einstalldocs - if use client; then - docinto examples - dodoc stuff/cdripper.sh - fi -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]]; then - elog - elog "In order to play, you must at least install:" - elog "games-fps/quake2-data or games-fps/quake2-demodata or copy game" - elog "data files to ~/.yq2/ or ${EPREFIX}/usr/share/games/quake2/ manually." - elog "Read ${EPREFIX}/usr/share/doc/${PF}/README.md* for more information." - elog - fi -} diff --git a/games-misc/Manifest.gz b/games-misc/Manifest.gz index 7973a8fcd110..c798af929719 100644 Binary files a/games-misc/Manifest.gz and b/games-misc/Manifest.gz differ diff --git a/games-misc/funny-manpages/Manifest b/games-misc/funny-manpages/Manifest index e18a3bd40f8a..1e98ae12de51 100644 --- a/games-misc/funny-manpages/Manifest +++ b/games-misc/funny-manpages/Manifest @@ -1,3 +1 @@ -DIST funny-manpages_1.3-5.diff.gz 2639 BLAKE2B 2234a963be3292e33fadeb12213b11a6a9b81157f60c505df3e9d097cc99cb90a5b180bc1b64636d423a04d44a67fdd2ea8478ac83ce984f6a799896e2251036 SHA512 69110989da9071321a8d8e9ea4f09bd7635704caeaccbdbf7fb2fb1abd540632f19d63d15de3232fabbc35e76dfe2eefb64ce84b6f4606d8dbe581e15f83d24c -DIST funny-manpages_1.3.orig.tar.gz 22691 BLAKE2B 2b54879992a3c9254e39b175adb060cbcf0ad65597454659fe66bb694ba5be70e97a3e7356ec79d6cd42cfc64f1b5adffd8328edc200a79987687a1227328bc8 SHA512 83c753540d9a9829017246f4a9de22ba09965fa5b8af8276f55ef141129876ca3e641b367ebc31ca99301f37a56132c07eee1ebc9616c954a2e84387fe62383d DIST funny-manpages_2.3.orig.tar.gz 23949 BLAKE2B 27f3dc4f548b6012c6830d303980c6871c0079cd123b706bdda75cdc49c90e66171a096b24ef3ba448f3d8e0c6a48f316b8c2783cfa6cc0087ef755311bb5ac3 SHA512 7920e9a62972f8ea0649b50d0b108936a6e0a5d5b68baccadded4999d0219af3f4685349dd881aded9e762e0d1f00575f382d155db0969f7e51a4a1963f0519e diff --git a/games-misc/funny-manpages/funny-manpages-1.3_rc5-r1.ebuild b/games-misc/funny-manpages/funny-manpages-1.3_rc5-r1.ebuild deleted file mode 100644 index b215501cbb20..000000000000 --- a/games-misc/funny-manpages/funny-manpages-1.3_rc5-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_R=${PV:0-1} -MY_P=${PN}_${PV/_rc?/} -DESCRIPTION="Funny manpages collected from various sources" -HOMEPAGE="https://www.debian.org/" -SRC_URI="mirror://debian/pool/main/f/funny-manpages/${MY_P}.orig.tar.gz - mirror://debian/pool/main/f/funny-manpages/${MY_P}-${MY_R}.diff.gz" -S="${WORKDIR}"/${MY_P/_/-}.orig - -LICENSE="freedist" #465704 -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~m68k ~mips ~ppc64 ~s390 ~x86" - -RDEPEND="virtual/man" - -PATCHES=( - "${WORKDIR}"/${MY_P}-${MY_R}.diff -) - -src_prepare() { - default - - for f in *.[0-57-9]fun ; do - mv ${f} ${f/.?fun/.6fun} || die "renaming ${f} failed" - done -} - -src_install() { - doman *.6fun -} diff --git a/games-misc/funny-manpages/metadata.xml b/games-misc/funny-manpages/metadata.xml index 1c3ba213c494..5539242c2fbc 100644 --- a/games-misc/funny-manpages/metadata.xml +++ b/games-misc/funny-manpages/metadata.xml @@ -1,8 +1,9 @@ - - games@gentoo.org - Gentoo Games Project - + + games@gentoo.org + Gentoo Games Project + + diff --git a/games-misc/opengfx/Manifest b/games-misc/opengfx/Manifest index ae42e141d9fa..6ddd407d5c9e 100644 --- a/games-misc/opengfx/Manifest +++ b/games-misc/opengfx/Manifest @@ -1,2 +1 @@ -DIST opengfx-0.6.1-source.tar.xz 9690748 BLAKE2B faa3ca805166a1716f8a235048506620bbb98a4265c72571b3a33e88f3375caff75b5576b64ef451e99dea734145f3be748a9109c7003d1ad9043a90cdd34dad SHA512 4ba3528dbdddea1baa2875f917f959034659c8205fbda2b2a67c5fe80161235d15c25dab323e6da8cba2711b7b4f0c9a96d4187fd2de61ae9a2ff9fd077b063b DIST opengfx-7.1-source.tar.xz 9828168 BLAKE2B a1d8305744b76924400cad8503af1a20991551323adea6d0d60d9f6d5ac6311e52cb8f028eb614bbda41106823ab9b912f1fb8af02953758a2eb2912066a38e9 SHA512 55079babcd78d4a36279cb7610b6800308aca8409ed3b9fa33cd4993b0c1f988d7afe270b17930b97609c4fdf8cf4e362e17c11bd85d2ef136d042256c98483f diff --git a/games-misc/opengfx/opengfx-0.6.1.ebuild b/games-misc/opengfx/opengfx-0.6.1.ebuild deleted file mode 100644 index 95f257d71459..000000000000 --- a/games-misc/opengfx/opengfx-0.6.1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) - -inherit python-any-r1 - -DESCRIPTION="OpenGFX data files for OpenTTD" -HOMEPAGE="https://wiki.openttd.org/en/Basesets/OpenGFX https://github.com/OpenTTD/OpenGFX" -SRC_URI="https://cdn.openttd.org/${PN}-releases/${PV}/${P}-source.tar.xz" -S="${WORKDIR}/${P}-source" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" - -DEPEND=" - games-util/grfcodec - games-util/nml - ${PYTHON_DEPS} -" - -DOCS=( "README.md" "changelog.txt" ) - -src_prepare() { - default - - python-any-r1_pkg_setup -} - -src_compile() { - local myemakeargs=( - GIMP="" - PYTHON="${EPYTHON}" - ) - - emake "${myemakeargs[@]}" all -} - -src_test() { - local myemakeargs=( - GIMP="" - PYTHON="${EPYTHON}" - ) - - emake "${myemakeargs[@]}" check -} - -src_install() { - local myemakeargs=( - DO_NOT_INSTALL_README="true" - DO_NOT_INSTALL_LICENSE="true" - DO_NOT_INSTALL_CHANGELOG="true" - GIMP="" - INSTALL_DIR="${ED}/usr/share/openttd/baseset/" - PYTHON="${EPYTHON}" - ) - - emake "${myemakeargs[@]}" install - - einstalldocs -} diff --git a/games-roguelike/Manifest.gz b/games-roguelike/Manifest.gz index 4d6342a521b2..74ffe33aa232 100644 Binary files a/games-roguelike/Manifest.gz and b/games-roguelike/Manifest.gz differ diff --git a/games-roguelike/angband/Manifest b/games-roguelike/angband/Manifest index d751ffb605b4..029283ba45bf 100644 --- a/games-roguelike/angband/Manifest +++ b/games-roguelike/angband/Manifest @@ -1,4 +1,2 @@ -DIST angband-4.2.2-man.tar.gz 105892 BLAKE2B 226210bd45f463e2b6bc099f889393832b5ce9bf5f95b5de1bc38fbcef61287515435ceef83a717bd62220fe01d5acf33e3fe240c08e3cf7d04e9d59fee132f1 SHA512 f373ea55c5f2349c615c47207c1dbbcc6a77246fbb0615d00a1fcb2a2a0cdf839bb5d57c2e29a2f2698f2d6b72698fbaec6bb221994566be04046ce03ea6253a -DIST angband-4.2.2.tar.gz 24992436 BLAKE2B 6beab7d0481167538714f540e9825e930d57457c923b77e2a9be71e8a6e382b70f375e85e68f0ebf9a65b61b835d62df0a5958a21198d9049088cdbe32c81efc SHA512 07a9b6a10a47afafde8f5db1e463c70198d386e07737666e044de291eab4b425d76bc8124153b7c371248f0c9aedc01578a90e513d744e3f30d26ab22c940698 DIST angband-4.2.3-man-r1.tar.gz 112117 BLAKE2B 2d90660cf0784435c4a8fbb04505e5ed47f79ebfcb0215e779b2d8b54ae5b556f820919c27f1d410d92b94476772e23a3a7fe15aaf6c2e56d5c9ceb723359bba SHA512 d85c0b2f0808ba8ee1f979bd9b51ffe2aaff4332471533f93478bf3853aa92eb326b57f195fa2f47d2163486c5005cf4e0865bca2bc3a75fc6005eb93e5d2dec DIST angband-4.2.3.tar.gz 25175745 BLAKE2B ee9878bb93fd268c5fdd8535750d6446ebf8e30a4bc794170b60cf6a77fc0470f91261f4963dda8865c95ead1b522210c8536da36866adeb084689fcf2bc7e5c SHA512 f80a16c40d877c50194be370795acb437778ca88a658a8c95bef637625ab8a88ceb98f45d742e698709b6c81e8b5de6f563f88e957cd71eca208673bb4179e88 diff --git a/games-roguelike/angband/angband-4.2.2-r2.ebuild b/games-roguelike/angband/angband-4.2.2-r2.ebuild deleted file mode 100644 index 4fad7e5591c7..000000000000 --- a/games-roguelike/angband/angband-4.2.2-r2.ebuild +++ /dev/null @@ -1,104 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools desktop xdg-utils - -DESCRIPTION="A roguelike dungeon exploration game based on the books of J.R.R. Tolkien" -HOMEPAGE="https://rephial.org/" -SRC_URI="https://github.com/angband/angband/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz - https://dev.gentoo.org/~steils/distfiles/${P}-man.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~riscv ~x86" -IUSE="+ncurses sdl sound +X" - -REQUIRED_USE="sound? ( sdl ) - || ( X ncurses )" - -RDEPEND="X? ( - media-fonts/font-misc-misc - x11-libs/libX11 - ) - ncurses? ( sys-libs/ncurses:=[unicode(+)] ) - sdl? ( - media-libs/libsdl2[video,X] - media-libs/sdl2-image[png] - media-libs/sdl2-ttf - sound? ( - media-libs/libsdl2[sound] - media-libs/sdl2-mixer[mp3] - ) - )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -src_prepare() { - default - - sed -i -e '/libpath/s#datarootdir#datadir#' configure.ac || die - sed -i -e "/^.SILENT/d" mk/buildsys.mk.in || die - - if use !sound ; then - sed -i -e 's/sounds//' lib/Makefile || die - fi - - # Game constant files are now system config files in Angband, but - # users will be hidden from applying updates by default - { - echo "CONFIG_PROTECT_MASK=\"/etc/${PN}/customize/\"" - echo "CONFIG_PROTECT_MASK=\"/etc/${PN}/gamedata/\"" - } > "${T}"/99${PN} || die - - eautoreconf -} - -src_configure() { - local myconf=( - --bindir="${EPREFIX}"/usr/bin - --with-private-dirs - $(use_enable X x11) - $(use_enable ncurses curses) - ) - if use sdl; then - myconf+=( - --enable-sdl2 - $(use_enable sound sdl2-mixer) - ) - fi - - econf "${myconf[@]}" -} - -src_install() { - default - - dodoc changes.txt README.md - doman "${WORKDIR}"/${PN}.1 - doenvd "${T}"/99${PN} - - if use X || use sdl; then - use X && make_desktop_entry "angband -mx11" "Angband (X11)" "${PN}" - use sdl && make_desktop_entry "angband -msdl2" "Angband (SDL2)" "${PN}" - - local s - for s in 16 32 128 256 512; do - newicon -s ${s} lib/icons/att-${s}.png "${PN}.png" - done - newicon -s scalable lib/icons/att.svg "${PN}.svg" - fi -} - -pkg_postinst() { - if use X || use sdl; then - xdg_icon_cache_update - fi -} - -pkg_postrm() { - if use X || use sdl; then - xdg_icon_cache_update - fi -} diff --git a/games-simulation/Manifest.gz b/games-simulation/Manifest.gz index d0aaa6192b83..98ca49be83b6 100644 Binary files a/games-simulation/Manifest.gz and b/games-simulation/Manifest.gz differ diff --git a/games-simulation/corsix-th/Manifest b/games-simulation/corsix-th/Manifest index 9a1a9ef71ed6..277c736b9d1e 100644 --- a/games-simulation/corsix-th/Manifest +++ b/games-simulation/corsix-th/Manifest @@ -1,2 +1 @@ -DIST corsix-th-0.64.tar.gz 4062048 BLAKE2B 2b807a5c712a19cac80bae613065dd8c9e1219573a3c288c1433b6fa857c3a93632e9c51ba126a70626b4044d469ca1ebc815257f291fa9f86ea94491aae35fe SHA512 c02d07ae4fb9a1ce008f32c4b9ea12a949316feddca4e2a29e860e0d88efdfa0440d372b00b9d3eda5e5c3ca739085510ebe8650790d06a7e91255b7d0990e6c DIST corsix-th-0.65.1.tar.gz 4163922 BLAKE2B c1d9255e41521876716b377579642ed46b9fc54823816dc431f7b56ffa532af7091ae0b1e291bb1c4fb74165ca07786e0991a990c90bc3a13e234ba31c6fa706 SHA512 b7e964c22517b94cb1dafb0529368c87a2e58cf1f784062b9f2f72749ba69523b63d4f846ebd582c71cf5ca7e7c437a34717ca3877ad3737139ba2fd6a316577 diff --git a/games-simulation/corsix-th/corsix-th-0.64-r100.ebuild b/games-simulation/corsix-th/corsix-th-0.64-r100.ebuild deleted file mode 100644 index 3d8959f55a62..000000000000 --- a/games-simulation/corsix-th/corsix-th-0.64-r100.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -LUA_COMPAT=( lua5-{1..3} ) - -inherit cmake lua-single xdg - -MY_PN="CorsixTH" -MY_PV="$(ver_rs 2 -)" - -DESCRIPTION="Open source clone of Theme Hospital" -HOMEPAGE="https://corsixth.com" -SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="doc +midi +sound +truetype +videos" - -REQUIRED_USE="${LUA_REQUIRED_USE}" - -RDEPEND="${LUA_DEPS} - $(lua_gen_cond_dep ' - >=dev-lua/luafilesystem-1.5[${LUA_USEDEP}] - >=dev-lua/lpeg-0.9[${LUA_USEDEP}] - >=dev-lua/luasocket-3.0_rc1-r4[${LUA_USEDEP}] - ') - media-libs/libsdl2[opengl,video] - sound? ( media-libs/sdl2-mixer[midi?] ) - truetype? ( >=media-libs/freetype-2.5.3:2 ) - videos? ( >=media-video/ffmpeg-2.2.3:0= ) -" - -DEPEND="${RDEPEND}" - -# Technically, build-time generation of documentation could use any version -# of Lua (or to be precise: if in src_configure cmake has been told to use -# LuaJIT documentation generation looks for LuaJIT, otherwise any -# dev-lang/lua slot will do; see the first few lines of the bundled file -# CMake/GenerateDoc.cmake for details) - but since dev-lang/lua conflicts -# with the other slots of same, try to keep the deptree sane until we get -# rid of unslotted Lua. -BDEPEND=" - virtual/pkgconfig - doc? ( - app-doc/doxygen[dot] - ${LUA_DEPS} - ) -" - -PATCHES=( - "${FILESDIR}"/${PN}-0.64-cmake_lua_detection.patch -) - -S="${WORKDIR}/${MY_PN}-${MY_PV}" - -src_prepare() { - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DLUA_VERSION=$(lua_get_version) - -DWITH_AUDIO=$(usex sound) - -DWITH_FREETYPE2=$(usex truetype) - -DWITH_MOVIES=$(usex videos) - ) - cmake_src_configure -} - -src_compile() { - cmake_src_compile - use doc && cmake_src_compile doc -} - -src_install() { - cmake_src_install - dodoc {changelog,CONTRIBUTING}.txt - - docinto html - use doc && dodoc -r "${BUILD_DIR}"/doc/* -} diff --git a/games-util/Manifest.gz b/games-util/Manifest.gz index 04094cf38690..c4d79f36f90e 100644 Binary files a/games-util/Manifest.gz and b/games-util/Manifest.gz differ diff --git a/games-util/acc/Manifest b/games-util/acc/Manifest index 4836c2fde7e8..903051f78c36 100644 --- a/games-util/acc/Manifest +++ b/games-util/acc/Manifest @@ -1,2 +1 @@ -DIST acc-1.57.tar.gz 70969 BLAKE2B 0c5d9f6778505881d9fa698da0958aea410a8d42f4b81c24277f59d0e9a601d44213e9399f0e693a210d0b935e57df4b6878fe1575005e5d573e19993404f570 SHA512 997bb6bb262743cacbf0606e7f6dcd00132a1f54eb24eddad92948c31ed552b3b678e72932150856fee57df2ab01fd25c29408f6c46a804614b883cf07532f3a DIST acc-1.58.tar.gz 70326 BLAKE2B 327449b987b2675c4c16f0769c08f2093a0ee2db28e6fbba608f3de81a17d943f6dbfc6ed333ea25331ecf194bdd661d3cfaf0d02b1f5fa714e7f60e49aabca9 SHA512 6fb0302f47b6a4e7114f543ad654f71753fb4cec973c933fc28aa0737f1d68a07509b2eee22cee34422387635cc889882b897a27f782000a2c0b184c1867d650 diff --git a/games-util/acc/acc-1.57.ebuild b/games-util/acc/acc-1.57.ebuild deleted file mode 100644 index ca25dbd7690e..000000000000 --- a/games-util/acc/acc-1.57.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="ACS script compiler for use with ZDoom and Hexen" -HOMEPAGE="https://zdoom.org/wiki/ACC" -SRC_URI="https://github.com/rheit/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="Activision" -SLOT="0" -KEYWORDS="~amd64" - -# The Activision EULA is inappropriate but this was never resolved. :( -# https://doomwiki.org/wiki/Raven_source_code_licensing -RESTRICT="bindist mirror" - -src_configure() { - tc-export CC - append-cflags -Wall -Wextra -} - -src_install() { - dobin ${PN} - dodoc readme.md - - insinto /usr/share/${PN} - doins *.acs -} diff --git a/games-util/lgogdownloader/Manifest b/games-util/lgogdownloader/Manifest index f330c2b186e4..96c2c63cc6b1 100644 --- a/games-util/lgogdownloader/Manifest +++ b/games-util/lgogdownloader/Manifest @@ -1,2 +1 @@ -DIST lgogdownloader-3.7.tar.gz 85653 BLAKE2B bb6fe56be291ca726b97cfb7ce83e87e855584da911839a9bc6a923c027e7ea67e83e62a5e8bb1a0c62dd053a7d6728c1e82896d19ba48a310574dc8c6a647f5 SHA512 2085b9c64008d790a28dcb9d22009340acac164db316523919dcf797255fd57a36160950fb222e82b9ee6262ef8c0e86193e2d9a4488ea2105f9f4bbe7db727b DIST lgogdownloader-3.8.tar.gz 85271 BLAKE2B ff8e9f80dbec849649b4074ab5890f833a5bfaf120246e7ca5eae83f414af469da29302323dc22632eb0a7259e49e9cf3660ea8953adda75fc7a5308204767bd SHA512 ccc6116f22a5c0bff5e4ef650f6386d5bfc507cc667b7154b021ecdbd45e7553ac33ae6b81531e2cea52a5022ee9c810033518a07374d4e9f7c672344e7ccad3 diff --git a/games-util/lgogdownloader/lgogdownloader-3.7-r1.ebuild b/games-util/lgogdownloader/lgogdownloader-3.7-r1.ebuild deleted file mode 100644 index 64fb82fe1537..000000000000 --- a/games-util/lgogdownloader/lgogdownloader-3.7-r1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Unofficial GOG.com downloader for Linux" -HOMEPAGE="https://sites.google.com/site/gogdownloader/" -SRC_URI="https://sites.google.com/site/gogdownloader/${P}.tar.gz" -LICENSE="WTFPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="gui" - -RDEPEND=">=app-crypt/rhash-1.3.3-r2:0= - dev-cpp/htmlcxx:0= - dev-libs/boost:0=[zlib] - >=dev-libs/jsoncpp-1.7:0= - dev-libs/tinyxml2:0= - >=net-misc/curl-7.32:0=[ssl] - gui? ( dev-qt/qtwebengine:5=[widgets] )" - -DEPEND="${RDEPEND}" - -BDEPEND="sys-apps/help2man - virtual/pkgconfig" - -src_configure() { - local mycmakeargs=( - -DUSE_QT_GUI=$(usex gui) - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - gunzip "${ED}"/usr/share/man/man1/${PN}.1.gz || die -} diff --git a/games-util/lutris/Manifest b/games-util/lutris/Manifest index 9ef4f7c84db1..ea7bf53f183e 100644 --- a/games-util/lutris/Manifest +++ b/games-util/lutris/Manifest @@ -1,3 +1,2 @@ -DIST lutris_0.5.8.3.tar.xz 942716 BLAKE2B f831c6ad6f67c3948f07e89f9caacd0d8aa3878b912fe987afea85eea549f41347044967255fa80e4e0c4544d148d9782dfe3c5bf08a123436e8a5ef7034901f SHA512 8f653d38a9a551298fa344cde67d53bf50cfd2a0a0667e344d04f6e17dda4ef358037755975d1a7f74ecd39824d58f9586e8a82b70dccc26619f22fee94d1144 DIST lutris_0.5.8.4.tar.xz 957004 BLAKE2B f3acce5d9ea7368063a3135c1f503e0644c1cbc7676e966c262c8e04c5e0d23b4882793fe2df1beab265ab4128e8a90b5bb69401f8e567b0cceeea3008ff4fa7 SHA512 f79a9fd06788bc28e59ad6d2c403b83f8bdeaee0116ae7fbf765e80e4e08bf760a462c71f75a2ff46739e5757cb8609f5110a51d83266d3aba2f0c91524b6df9 DIST lutris_0.5.9.1.tar.xz 1046920 BLAKE2B 469e7707e74d957be3bb0f5f1caeaeaaf7c01dc3b998c16d8be4b4b780e408763bbe0df5c0b5f6a53ebcb3eb478aaaf25f9cf16437ae682dfcd1d2213222fa18 SHA512 a94e37d1a3f5b80353af38900f3e67763af9c0e3cc3013f7998e23ff70cb6f329730b1802f996866dac541af6e50388a5308c772e3a2ee97f87e5ae60878e7e7 diff --git a/games-util/lutris/lutris-0.5.8.3.ebuild b/games-util/lutris/lutris-0.5.8.3.ebuild deleted file mode 100644 index eb14c714095f..000000000000 --- a/games-util/lutris/lutris-0.5.8.3.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) -PYTHON_REQ_USE="sqlite,threads(+)" -DISTUTILS_SINGLE_IMPL="1" - -inherit distutils-r1 virtualx xdg - -DESCRIPTION="An open source gaming platform for GNU/Linux" -HOMEPAGE="https://lutris.net/" - -if [[ ${PV} == *9999* ]] ; then - EGIT_REPO_URI="https://github.com/lutris/lutris.git" - inherit git-r3 -else - SRC_URI="https://lutris.net/releases/${P/-/_}.tar.xz" - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${PN}" -fi - -LICENSE="GPL-3" -SLOT="0" - -RESTRICT="!test? ( test )" - -BDEPEND=" - test? ( - $(python_gen_cond_dep ' - dev-python/nose[${PYTHON_USEDEP}] - ') - ) -" -RDEPEND=" - app-arch/cabextract - app-arch/p7zip - app-arch/unzip - $(python_gen_cond_dep ' - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/python-evdev[${PYTHON_USEDEP}] - dev-python/python-magic[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - ') - gnome-base/gnome-desktop:3[introspection] - media-sound/fluid-soundfont - net-libs/libsoup - net-libs/webkit-gtk:4[introspection] - x11-apps/mesa-progs - x11-apps/xgamma - x11-apps/xrandr - x11-libs/gtk+:3[introspection] - x11-libs/libnotify[introspection] -" - -python_install_all() { - local DOCS=( AUTHORS README.rst docs/installers.rst ) - distutils-r1_python_install_all - python_fix_shebang "${ED}"/usr/share/lutris/bin/lutris-wrapper #740048 -} - -python_test() { - virtx nosetests -v -} - -pkg_postinst() { - xdg_pkg_postinst - - # Quote README.rst - elog "Lutris installations are fully automated through scripts, which can" - elog "be written in either JSON or YAML. The scripting syntax is described" - elog "in ${EROOT}/usr/share/doc/${PF}/installers.rst.bz2, and is also" - elog "available online at lutris.net." -} diff --git a/games-util/sc-controller/Manifest b/games-util/sc-controller/Manifest index 38b205222bdc..b712ecee7617 100644 --- a/games-util/sc-controller/Manifest +++ b/games-util/sc-controller/Manifest @@ -1,2 +1 @@ -DIST sc-controller-0.4.8.1.tar.gz 2520167 BLAKE2B 40c8e366519ec2a6d80b31c2b342fba2664fa35f3a889e222665f8f5cd4d59dd912804f6cdf4ecd844ab94075f5f45f88a61138ac1c0cb528652c9fd9b710afa SHA512 bc57bd381c71e94c0771ecdb08f95326d0c1478e25cdf3955b71c203abe6cb78091ca977deb8a1e954b5b1b65a6df487f8b8921920b1eb672aa6f1f5554a4847 DIST sc-controller-0.4.8.2.tar.gz 2520528 BLAKE2B 0c98e1fd49e846909ec0a78c5bbf48731de464ab79ebe3e1b0370e2a6f176e925e6f2b288c17358221b2e50be0cd783f31f05324ac585aec310967d148ce5011 SHA512 8d157e871fa519ebd3eee27dd1c0ff1afe6f79201df12578aa31f3cbc62974bd7ba47c8a097870b693a7abaacaadd1e502012c9664c0aecddbd982fa10c7f84d diff --git a/games-util/sc-controller/files/status-icon-click.patch b/games-util/sc-controller/files/status-icon-click.patch deleted file mode 100644 index 46b39553b483..000000000000 --- a/games-util/sc-controller/files/status-icon-click.patch +++ /dev/null @@ -1,28 +0,0 @@ -From b1388d0e768f0bedd5704ffae9b13500ad325308 Mon Sep 17 00:00:00 2001 -From: James Le Cuirot -Date: Sat, 17 Oct 2020 21:36:49 +0100 -Subject: [PATCH] Fix TypeError when clicking on the status icon - -The error was: - - TypeError: GObject.emit() argument 1 must be str, not bytes ---- - scc/gui/statusicon.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/scc/gui/statusicon.py b/scc/gui/statusicon.py -index 61ef9e96..83600492 100644 ---- a/scc/gui/statusicon.py -+++ b/scc/gui/statusicon.py -@@ -322,7 +322,7 @@ class StatusIconProxy(StatusIcon): - self._load_fallback() - - def _on_click(self, *args): -- self.emit(b"clicked") -+ self.emit("clicked") - - def _on_notify_active_gtk(self, *args): - if self._status_fb: --- -2.26.2 - diff --git a/games-util/sc-controller/sc-controller-0.4.8.1.ebuild b/games-util/sc-controller/sc-controller-0.4.8.1.ebuild deleted file mode 100644 index f5cb8a83901e..000000000000 --- a/games-util/sc-controller/sc-controller-0.4.8.1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_SINGLE_IMPL=1 -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{7,8,9} ) - -inherit distutils-r1 xdg - -DESCRIPTION="User-mode driver and GTK-based GUI for Steam Controllers and others" -HOMEPAGE="https://github.com/Ryochan7/sc-controller/" -SRC_URI="https://github.com/Ryochan7/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="GPL-2 CC0-1.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+udev" - -RDEPEND=" - $(python_gen_cond_dep ' - dev-python/pygobject[${PYTHON_USEDEP},cairo] - dev-python/pylibacl[${PYTHON_USEDEP}] - dev-python/python-evdev[${PYTHON_USEDEP}] - ') - gnome-base/librsvg - x11-libs/gtk+:3 - udev? ( games-util/game-device-udev-rules ) -" - -PATCHES=( - "${FILESDIR}"/status-icon-click.patch -) diff --git a/gnome-extra/Manifest.gz b/gnome-extra/Manifest.gz index 755b60803f19..baff458bbd4c 100644 Binary files a/gnome-extra/Manifest.gz and b/gnome-extra/Manifest.gz differ diff --git a/gnome-extra/libgsf/Manifest b/gnome-extra/libgsf/Manifest index 97ae17bb496f..87f876819750 100644 --- a/gnome-extra/libgsf/Manifest +++ b/gnome-extra/libgsf/Manifest @@ -1 +1,2 @@ DIST libgsf-1.14.47.tar.xz 691448 BLAKE2B 7be095fef159ff7a52f2cf4d83b59b5bb591e0d4fb1d69d88bc6f2eba4286337af2a2c46ac7d6603d5a68b9b6f03d41f647d34b0bee5e61244696c5ba02be569 SHA512 143d48eb02be8202b9eb97e29e5909061a0e1a562b86e4bb4b2eac3fb0a42b139ead131ed1ffa4dfe304b65527089777823122223a74ebbc9df94c17d013f97b +DIST libgsf-1.14.48.tar.xz 701760 BLAKE2B 762fe424ad45ac9739e1ea2cd9971f80f9c4d573147c6043c6bbf7b416a6c69c3b0bbfa42f6424176a545f7f9e7257d33e62c92482945786bb142063390a9d08 SHA512 6efba54c1427f9bdf71203b265ee4cdaa7366f78f299d38deffb657198244fb6436ab4e077a010079a28832539cdef08796e43feb76450ab0420da56016cd95e diff --git a/gnome-extra/libgsf/libgsf-1.14.48.ebuild b/gnome-extra/libgsf/libgsf-1.14.48.ebuild new file mode 100644 index 000000000000..317027803298 --- /dev/null +++ b/gnome-extra/libgsf/libgsf-1.14.48.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gnome2 + +DESCRIPTION="The GNOME Structured File Library" +HOMEPAGE="https://gitlab.gnome.org/GNOME/libgsf" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0/114" # libgsf-1.so version +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="bzip2 gtk +introspection" + +RDEPEND=" + >=dev-libs/glib-2.36:2 + >=dev-libs/libxml2-2.4.16:2 + sys-libs/zlib + bzip2? ( app-arch/bzip2 ) + gtk? ( + x11-libs/gdk-pixbuf:2 + virtual/imagemagick-tools + ) + introspection? ( >=dev-libs/gobject-introspection-1:= ) +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.12 + dev-libs/gobject-introspection-common + >=sys-devel/gettext-0.19.6 + virtual/pkgconfig +" + +src_configure() { + gnome2_src_configure \ + --disable-static \ + $(use_with bzip2 bz2) \ + $(use_enable introspection) \ + $(use_with gtk gdk-pixbuf) +} diff --git a/gui-libs/Manifest.gz b/gui-libs/Manifest.gz index e80998f6c7cc..2d586c3b6cec 100644 Binary files a/gui-libs/Manifest.gz and b/gui-libs/Manifest.gz differ diff --git a/gui-libs/egl-wayland/Manifest b/gui-libs/egl-wayland/Manifest index 3c5206c5dcce..d97deb02bfc5 100644 --- a/gui-libs/egl-wayland/Manifest +++ b/gui-libs/egl-wayland/Manifest @@ -1,3 +1,2 @@ DIST egl-wayland-1.1.7.tar.gz 48681 BLAKE2B eebbd0e36045c50b39ef70292156f5cd137a51af2169b56a35d318d90ade3d4a5b94206d86246d52fda0c6c093ff25e389b1a3ccbe60595dc9661d199e30f33b SHA512 edc81d9f2c617587044d5f9d35b3e355db8544e8fa1d861c1b92a5a11bc1af7d994ca8abd49ce6f462a1971f20296b4c757bdf1df0d2bfc981cdafaa839f12af -DIST egl-wayland-1.1.9.tar.gz 57069 BLAKE2B 64cc1d91c5dab5d070ea23211ffac47a5e5ddde31dfd18bc2a31f24b4cd0b85510752a5d2219e8a919690645426914a1dae325f47dbf46ec0487e0042b392d8f SHA512 3125f4130a5a738f8ecb2acf4d1a7936ca44958a78ade29118222fcd0b5d46f6edf6e18f4e992f541294e08e88c54a8dc231eb2bdcfcd7d56ac543f4e1ed3f8c DIST egl-wayland-1.1.9_p20211123.tar.gz 58900 BLAKE2B a5a08df06e302b573f1036264495e7b29ec4d3def9be0e9b8037206a42aab5c18d78b79cc3f3ffeede9708916e644f8090fadf34318429cf0040c3623da28ce1 SHA512 8de18c8c0c38ca672688a5197be20534cc90b0fecae9ea2f3d3bc851d5b50d3f148a4ce97b835a9576251c8273ea21f82f2c9694cf2b7bba28fa3b53850c43b2 diff --git a/gui-libs/egl-wayland/egl-wayland-1.1.9.ebuild b/gui-libs/egl-wayland/egl-wayland-1.1.9.ebuild deleted file mode 100644 index 5e15a81e06a6..000000000000 --- a/gui-libs/egl-wayland/egl-wayland-1.1.9.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit meson - -DESCRIPTION="EGLStream-based Wayland external platform" -HOMEPAGE="https://github.com/NVIDIA/egl-wayland" -SRC_URI="https://github.com/NVIDIA/egl-wayland/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64" - -RDEPEND=" - dev-libs/wayland - ! Enable support for X11 applications (XWayland) - add gamma control for redshift - add support for wayland apps using layer shell - add support for screen grabbing - enable virtual input/output support, needed for remote I/O in VNC diff --git a/media-gfx/Manifest.gz b/media-gfx/Manifest.gz index d2a5e37c0d33..c278f92fae50 100644 Binary files a/media-gfx/Manifest.gz and b/media-gfx/Manifest.gz differ diff --git a/media-gfx/cropgui/Manifest b/media-gfx/cropgui/Manifest index d5be785ed8e8..9b9f33155a0b 100644 --- a/media-gfx/cropgui/Manifest +++ b/media-gfx/cropgui/Manifest @@ -1,2 +1,3 @@ DIST cropgui-0.4.1.tar.gz 852958 BLAKE2B dcc6ba775e49af9a9fe1054fe5246e87e044f47cb7ca20712e5048dd1fa0fda35ee90c38cf733540913d0220eb58ab0a6dcfe93c7b02ebb9e022529b8add6c1c SHA512 85b0c2c57faecdd7db15e417234f2ea50fc5edbdcacaedcfc53cda68c3a070f4ba0201bff9afbaa3de7c51552309df1ac3e87586b4021e68bbb255a2545d92da DIST cropgui-0.5.tar.gz 853934 BLAKE2B ac7cf32495e3ac728223994f79252fd98a0a5cf7da79a9c6796ce3d7b213c797b16250be5d23a1bc6bed492f142a95411d6cbd42fe34242016c4e0181bfd90c4 SHA512 2babea9ea6089c74637c9023ea08c2ae4f666fbf44bb73d7a301de6fee6848e65a86fab312e765f7bd05e8e03bf3e92942d718ea84a950412385a8e0b6aa0630 +DIST cropgui-0.6.tar.gz 855329 BLAKE2B d54098cdf8d8a0eb863ba7cf13d798db8102e147c30d64d246fc9955c4ee5aead253273fd66f0f2cd2d5aaf7abd10cfed01936c08daccdd92e342a56923bd95b SHA512 dff9b1ea832c657c4407aea7ddeac880faaa4647bfe51ed43f9c1658f848cf9b6f9608451dcc006fe735012b52d318ebe5b59a31dc293cfabfb5ec5772612b68 diff --git a/media-gfx/cropgui/cropgui-0.6.ebuild b/media-gfx/cropgui/cropgui-0.6.ebuild new file mode 100644 index 000000000000..d0e7fdc45109 --- /dev/null +++ b/media-gfx/cropgui/cropgui-0.6.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8,9} ) +inherit eutils python-r1 desktop xdg-utils + +DESCRIPTION="GUI for lossless cropping of jpeg images" +HOMEPAGE="https://emergent.unpythonic.net/01248401946" +SRC_URI="https://github.com/jepler/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${PYTHON_DEPS} + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}]" + +install_cropgui_wrapper() { + python_domodule cropgtk.py cropgui_common.py filechooser.py cropgui.glade + make_wrapper "${PN}.tmp" "${PYTHON} $(python_get_sitedir)/${PN}/cropgtk.py" + python_newexe "${ED}/usr/bin/${PN}.tmp" "${PN}" + rm "${ED}/usr/bin/${PN}.tmp" || die +} + +src_install() { + python_moduleinto "${PN}" + python_foreach_impl install_cropgui_wrapper + + domenu "${PN}.desktop" + doicon "${PN}.png" +} + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +} diff --git a/media-gfx/darktable/Manifest b/media-gfx/darktable/Manifest index 98c88e56879d..43f47612d831 100644 --- a/media-gfx/darktable/Manifest +++ b/media-gfx/darktable/Manifest @@ -1,3 +1,8 @@ DIST darktable-3.6.1.tar.xz 4685928 BLAKE2B 8ff6224e21b44f9e881adb8f020a2ea5ff5abb2c38da1aeaed312f89e548918c6d3bba210dbb4fb6901fbf0872c6e14c2e12c5b5b27932914a00428a709e8965 SHA512 d53eb8472531c62ceebe97769c6e53f7c9ed6efb404905295f00b5bf547fd0f0c395b8b926ccafc78d6cf9fed0745da655a77eeb84d92fce5d6a7a576f277416 DIST darktable-3.8.0.tar.xz 5415532 BLAKE2B a2295d9145806720c702d30a334f4d1c483fc651dfda8a39617daed4a71a436bfaa5b6b379f5ec0ee4bbec5f6f5eabbcb589b63644b5698100dd1672710d1531 SHA512 ce95983cbe3ca899103b4f5ee560fdbeeb441dccd453ac4d858b14a25050229e1e780595c66bfb491c88db35c128054f649b365d701ef4b19cf252bd847ffa59 DIST darktable-usermanual-3.6.pdf 34290182 BLAKE2B 407223f6dfc25e53e2de31a05b0468a3d50ec5ccf836fa4cca61b16d43e91827c0276027ea73dd543750f240889b7325538eb474e19df86eeff4d380bf0b8829 SHA512 62c2723e5fc0434703f21bc4f5efdb997db1c0cfb800a9df217d6682325949ce18ab458a179bd20a888b73a7bd384bbbb2ea8888cba26278510abaab1e0cc335 +DIST darktable-usermanual-3.8.de.pdf 32795040 BLAKE2B f8669e1982be19bc739add60d125a5818894a7a4a6414ba15aae5e5df41ec6729c99f907e3008c42acbd6f60bc4a5d33e20d7180621d135f9fd342e6190ae6a5 SHA512 ff77afcc9a20fec36891d4487d167e40d30a1deef6418dc6bb73c94d8171b42e5edc5420457c96e08ab8581175e691f8adf91ef5259367edba55f1441d4a86d3 +DIST darktable-usermanual-3.8.en.pdf 33484632 BLAKE2B 90a4e1021917f5fad7a5a9a58e2fec95af14119ca4b48325f3e5b55e96b89f9d82b8aaa676268a255fa97cf834a109b410004a549d16742a1b33db880c46fb67 SHA512 b21683f200daca3d0ed7c3364d0c6703d976fd800d1d2ffe51df1c6cfcf2188de681cdddbf92962629a3866e18014377a58ea0e54a9fa727b663972b7f1de79a +DIST darktable-usermanual-3.8.fr.pdf 33479509 BLAKE2B 988824b60277ea0264fec61a1157a1de048cd512a172bc86276a043c06da3a684e971cef04c31122a78b3e7305157331e6cb86cfce7a4dc4dd9dc8697eddf743 SHA512 1383bb54face948bbbad895be2470c1b13ece71c325edf40402b3416a5d9653d2e1f8c4dbfa30edd10f02c1df8b8243c9e86948c5da8d2033e28ee3c6e04bbcc +DIST darktable-usermanual-3.8.pt_br.pdf 33648057 BLAKE2B afb6d3c1ea6b709e535e10ae2a491fb6a87c84dcfe17823a518931bda0cd8595cda72905cffc01698e60c3df991451a5cccbfcdea82966a506b2d29d61298f09 SHA512 8734a9e6c57ba37f32966873b85584c50968c1c895fa4e9d953e129bb5834f254ca46e20741d5664429ef7d6379e5a35e59f8ecb517ca88ff536b49a8216b603 +DIST darktable-usermanual-3.8.uk.pdf 33663424 BLAKE2B abeb7a04b58e7ef508b415fe11073396c78964e91fbd3face8481cd6b09cf88525b1b6bdd2988bd57d25112cd59c8c05e209931f94004349cf5b8a7a3ca59e39 SHA512 e1a81771006f5d6b7e4088455b6b444ea87b27a788cc196c2bc0b0b5d0afde241ea9e2bdbd3ffe79871f39d756d710d8e16c082a21b1194efb71f78e8724af9a diff --git a/media-gfx/darktable/darktable-3.6.1-r2.ebuild b/media-gfx/darktable/darktable-3.6.1-r2.ebuild index 68737e363aca..ff087a4c98dc 100644 --- a/media-gfx/darktable/darktable-3.6.1-r2.ebuild +++ b/media-gfx/darktable/darktable-3.6.1-r2.ebuild @@ -23,7 +23,7 @@ else MY_P="${P/_/.}" SRC_URI="https://github.com/darktable-org/${PN}/releases/download/release-${MY_PV}/${MY_P}.tar.xz - doc? ( https://docs.darktable.org/usermanual/${DOC_PV}/${PN}_user_manual.pdf -> ${PN}-usermanual-${DOC_PV}.pdf )" + doc? ( https://docs.darktable.org/usermanual/${DOC_PV}/en/${PN}_user_manual.pdf -> ${PN}-usermanual-${DOC_PV}.pdf )" KEYWORDS="amd64 arm64 -x86" LANGS=" af de eo es fr he hu it nl pt-BR ru sl uk" diff --git a/media-gfx/darktable/darktable-3.6.1-r3.ebuild b/media-gfx/darktable/darktable-3.6.1-r3.ebuild index 746a8b4aaf9b..12c0099cc5d1 100644 --- a/media-gfx/darktable/darktable-3.6.1-r3.ebuild +++ b/media-gfx/darktable/darktable-3.6.1-r3.ebuild @@ -23,7 +23,7 @@ else MY_P="${P/_/.}" SRC_URI="https://github.com/darktable-org/${PN}/releases/download/release-${MY_PV}/${MY_P}.tar.xz - doc? ( https://docs.darktable.org/usermanual/${DOC_PV}/${PN}_user_manual.pdf -> ${PN}-usermanual-${DOC_PV}.pdf )" + doc? ( https://docs.darktable.org/usermanual/${DOC_PV}/en/${PN}_user_manual.pdf -> ${PN}-usermanual-${DOC_PV}.pdf )" KEYWORDS="~amd64 ~arm64 -x86" LANGS=" af de eo es fr he hu it nl pt-BR ru sl uk" diff --git a/media-gfx/darktable/darktable-3.8.0.ebuild b/media-gfx/darktable/darktable-3.8.0-r1.ebuild similarity index 81% rename from media-gfx/darktable/darktable-3.8.0.ebuild rename to media-gfx/darktable/darktable-3.8.0-r1.ebuild index 40c02a22666f..b2adbe18b7ed 100644 --- a/media-gfx/darktable/darktable-3.8.0.ebuild +++ b/media-gfx/darktable/darktable-3.8.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -LUA_COMPAT=( lua5-3 ) +LUA_COMPAT=( lua5-4 ) inherit cmake flag-o-matic lua-single toolchain-funcs xdg @@ -18,18 +18,24 @@ if [[ ${PV} == *9999 ]]; then LANGS=" af ca cs da de el es fi fr gl he hu it ja nb nl pl pt-BR pt-PT ro ru sk sl sq sv th uk zh-CN zh-TW" else - DOC_PV="3.6" + DOC_PV=$(ver_cut 1-2) MY_PV="${PV/_/}" MY_P="${P/_/.}" SRC_URI="https://github.com/darktable-org/${PN}/releases/download/release-${MY_PV}/${MY_P}.tar.xz - doc? ( https://docs.darktable.org/usermanual/${DOC_PV}/${PN}_user_manual.pdf -> ${PN}-usermanual-${DOC_PV}.pdf )" + doc? ( + https://docs.darktable.org/usermanual/${DOC_PV}/en/${PN}_user_manual.pdf -> ${PN}-usermanual-${DOC_PV}.en.pdf + l10n_de? ( https://docs.darktable.org/usermanual/${DOC_PV}/de/${PN}_user_manual.pdf -> ${PN}-usermanual-${DOC_PV}.de.pdf ) + l10n_fr? ( https://docs.darktable.org/usermanual/${DOC_PV}/fr/${PN}_user_manual.pdf -> ${PN}-usermanual-${DOC_PV}.fr.pdf ) + l10n_pt-BR? ( https://docs.darktable.org/usermanual/${DOC_PV}/pt_br/${PN}_user_manual.pdf -> ${PN}-usermanual-${DOC_PV}.pt_br.pdf ) + l10n_uk? ( https://docs.darktable.org/usermanual/${DOC_PV}/uk/${PN}_user_manual.pdf -> ${PN}-usermanual-${DOC_PV}.uk.pdf ) + )" KEYWORDS="~amd64 ~arm64 -x86" LANGS=" de eo es fi fr he hu it ja pl pt-BR sl uk zh-CN" fi -IUSE="avif colord cups cpu_flags_x86_sse3 doc flickr geolocation gmic gnome-keyring gphoto2 graphicsmagick jpeg2k kwallet +IUSE="avif colord cpu_flags_x86_avx cpu_flags_x86_sse3 cups doc flickr geolocation gmic gnome-keyring gphoto2 graphicsmagick jpeg2k kwallet lto lua nls opencl openmp openexr test tools webp ${LANGS// / l10n_}" @@ -102,6 +108,7 @@ pkg_setup() { } src_prepare() { + use cpu_flags_x86_avx && append-flags -mavx use cpu_flags_x86_sse3 && append-flags -msse3 sed -i -e 's:/appdata:/metainfo:g' data/CMakeLists.txt || die @@ -143,7 +150,7 @@ src_configure() { src_install() { cmake_src_install # This USE flag is masked for -9999 - use doc && dodoc "${DISTDIR}"/${PN}-usermanual-${DOC_PV}.pdf + use doc && dodoc "${DISTDIR}"/${PN}-usermanual-${DOC_PV}.*.pdf if use nls; then for lang in ${LANGS} ; do diff --git a/media-gfx/gscan2pdf/gscan2pdf-2.12.4.ebuild b/media-gfx/gscan2pdf/gscan2pdf-2.12.4.ebuild index 400949439485..f821ad0cbd97 100644 --- a/media-gfx/gscan2pdf/gscan2pdf-2.12.4.ebuild +++ b/media-gfx/gscan2pdf/gscan2pdf-2.12.4.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/media-gfx/slic3r/slic3r-1.3.1_pre20200824-r1.ebuild b/media-gfx/slic3r/slic3r-1.3.1_pre20200824-r1.ebuild index a437470e7df1..9353f8c2f830 100644 --- a/media-gfx/slic3r/slic3r-1.3.1_pre20200824-r1.ebuild +++ b/media-gfx/slic3r/slic3r-1.3.1_pre20200824-r1.ebuild @@ -55,17 +55,18 @@ RDEPEND="!=dev-lang/perl-5.16* )" DEPEND="${RDEPEND} dev-libs/clipper - dev-perl/Devel-CheckLib >=dev-perl/ExtUtils-CppGuess-0.70.0 >=dev-perl/ExtUtils-Typemaps-Default-1.50.0 >=dev-perl/ExtUtils-XSpp-0.170.0 - >=dev-perl/Module-Build-0.380.0 - >=dev-perl/Module-Build-WithXSpp-0.140.0 >=virtual/perl-ExtUtils-MakeMaker-6.800.0 >=virtual/perl-ExtUtils-ParseXS-3.220.0 test? ( virtual/perl-Test-Harness virtual/perl-Test-Simple )" +BDEPEND=">=dev-perl/Module-Build-0.380.0 + >=dev-perl/Module-Build-WithXSpp-0.140.0 + dev-perl/Devel-CheckLib" + S="${WORKDIR}/Slic3r-92abbc42dfdd5385c1f9c3a450e2f3da835f8b8d" PERL_S="${S}/xs" diff --git a/media-libs/Manifest.gz b/media-libs/Manifest.gz index 7e49439207ac..3978b1f02ce3 100644 Binary files a/media-libs/Manifest.gz and b/media-libs/Manifest.gz differ diff --git a/media-libs/allegro/Manifest b/media-libs/allegro/Manifest index 3c46d84a068a..c66334ab9581 100644 --- a/media-libs/allegro/Manifest +++ b/media-libs/allegro/Manifest @@ -1,3 +1,2 @@ DIST allegro-4.4.3.1.tar.gz 4663634 BLAKE2B 23fa8cd77858243bfa8191f6bca26f50d1621fa84616968595c1284c73a86160cdbad201eece5bd026bb7ac13753568b6915295646b86e536b5d26c0394e2d1f SHA512 c5a552ab710226493447eb2547b3d7559badb96f511fbefd315b665b7486013a6710c83b69363eb09f90f53ef4278fe7b90cfee88d90d88f0fe8dc7df7606729 -DIST allegro-5.2.6.0.tar.gz 7867726 BLAKE2B 3f21372442e5b8c802ac179019a11648febdcecddfda864559e1e9621f99c9ff7584fb422594c6fd3a1c352c892533c825faef10e35ecbf97058396fbb46fc7d SHA512 a475de67b0e6c727295cc51e113859eb0c57825a240e70bc45cd3b000c40518932b89cecdd13ba957416136db4ee9a9363adb5d3bfa7c8acda04ee95de6ba721 DIST allegro-5.2.7.0.tar.gz 7911231 BLAKE2B 9cc588a42d461ce06db94c1dd57642a2e9445c4930fcc164f2da57edfb463552a279a5e50f46740561a88c974c96605bb09fcc596e7bc6afb5e30b18ff7b74d5 SHA512 300bb951c661e7a220d913cca4116aba99afdcb5346af7c57b09bbdfa892d446cd64fde54397c57edb3c5f57d3380fbc2b6c4d9c9e17f48ff8180cfbf59e7d99 diff --git a/media-libs/allegro/allegro-5.2.6.0.ebuild b/media-libs/allegro/allegro-5.2.6.0.ebuild deleted file mode 100644 index 32f11a6aac4c..000000000000 --- a/media-libs/allegro/allegro-5.2.6.0.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -CMAKE_ECLASS="cmake" -inherit cmake-multilib - -DESCRIPTION="Cross-platform library aimed at video game and multimedia programming" -HOMEPAGE="https://liballeg.org/" -SRC_URI="https://github.com/liballeg/allegro5/releases/download/${PV}/${P}.tar.gz" - -LICENSE="BSD ZLIB" -SLOT="5" -KEYWORDS="amd64 ~arm64 ppc ppc64 x86" -IUSE="alsa dumb flac gtk jpeg openal opengl opus oss physfs png pulseaudio test truetype vorbis webp X xinerama" -RESTRICT="!test? ( test )" - -REQUIRED_USE="X? ( opengl ) - xinerama? ( X ) - || ( alsa openal oss pulseaudio )" - -BDEPEND="virtual/pkgconfig" -RDEPEND=" - alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] ) - dumb? ( >=media-libs/dumb-0.9.3-r2:=[${MULTILIB_USEDEP}] ) - flac? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}] ) - gtk? ( >=x11-libs/gtk+-2.24.23:2[${MULTILIB_USEDEP}] ) - jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] ) - openal? ( >=media-libs/openal-1.15.1[${MULTILIB_USEDEP}] ) - opengl? ( - >=virtual/glu-9.0-r1[${MULTILIB_USEDEP}] - >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}] - ) - opus? ( media-libs/opus[${MULTILIB_USEDEP}] ) - physfs? ( >=dev-games/physfs-2.0.3-r1[${MULTILIB_USEDEP}] ) - png? ( >=media-libs/libpng-1.5.18:0=[${MULTILIB_USEDEP}] ) - pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] ) - truetype? ( >=media-libs/freetype-2.5.0.1[${MULTILIB_USEDEP}] ) - vorbis? ( >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] ) - webp? ( media-libs/libwebp:0=[${MULTILIB_USEDEP}] ) - X? ( - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] - >=x11-libs/libXcursor-1.1.14[${MULTILIB_USEDEP}] - >=x11-libs/libXrandr-1.4.2[${MULTILIB_USEDEP}] - >=x11-libs/libXxf86vm-1.1.3[${MULTILIB_USEDEP}] - ) - xinerama? ( >=x11-libs/libXinerama-1.1.3[${MULTILIB_USEDEP}] ) -" -DEPEND="${RDEPEND} - x11-base/xorg-proto" - -MULTILIB_WRAPPED_HEADERS=( /usr/include/allegro5/allegro_native_dialog.h ) - -src_configure() { - # We forego freeimage for now because ebuild is not multilib - # No known consumers yet anyway - local mycmakeargs=( - -DWANT_ALSA=$(usex alsa) - -DWANT_DEMO=OFF - -DWANT_EXAMPLES=OFF - -DWANT_FLAC=$(usex flac) - -DWANT_IMAGE_FREEIMAGE=OFF - -DWANT_IMAGE_JPG=$(usex jpeg) - -DWANT_IMAGE_PNG=$(usex png) - -DWANT_IMAGE_WEBP=$(usex webp) - -DWANT_MODAUDIO=$(usex dumb) - -DWANT_NATIVE_DIALOG=$(usex gtk) - -DWANT_OGG_VIDEO=$(usex vorbis) - -DWANT_OPENAL=$(usex openal) - -DWANT_OPENGL=$(usex opengl) - -DWANT_OPUS=$(usex opus) - -DWANT_OSS=$(usex oss) - -DWANT_PHYSFS=$(usex physfs) - -DWANT_PRIMITIVES=$(usex opengl) - -DWANT_PULSEAUDIO=$(usex pulseaudio) - -DWANT_TESTS=$(usex test) - -DWANT_TTF=$(usex truetype) - -DWANT_VORBIS=$(usex vorbis) - -DWANT_X11=$(usex X) - -DWANT_X11_XINERAMA=$(usex xinerama) - ) - - cmake-multilib_src_configure -} - -src_install() { - local HTML_DOCS=( docs/html/refman/. ) - cmake-multilib_src_install - - dodoc CHANGES-5.0.txt CHANGES-5.1.txt CHANGES-5.2.txt - doman docs/man/*.3 -} diff --git a/media-libs/freeimage/freeimage-3.18.0-r2.ebuild b/media-libs/freeimage/freeimage-3.18.0-r2.ebuild deleted file mode 100644 index 3240d3021ec0..000000000000 --- a/media-libs/freeimage/freeimage-3.18.0-r2.ebuild +++ /dev/null @@ -1,121 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit edos2unix toolchain-funcs - -MY_PN=FreeImage -MY_PV=${PV//.} -MY_P=${MY_PN}${MY_PV} - -DESCRIPTION="Image library supporting many formats" -HOMEPAGE="https://freeimage.sourceforge.io/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip - mirror://sourceforge/${PN}/${MY_P}.pdf - https://dev.gentoo.org/~juippis/distfiles/tmp/freeimage-3.18.0-unbundling.patch" - -LICENSE="|| ( GPL-2 FIPL-1.0 )" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" -IUSE="jpeg jpeg2k mng openexr png raw static-libs tiff webp" - -# The tiff/ilmbase isn't a typo. The TIFF plugin cheats and -# uses code from it to handle 16bit<->float conversions. -RDEPEND=" - sys-libs/zlib - jpeg? ( virtual/jpeg:0 ) - jpeg2k? ( media-libs/openjpeg:2= ) - mng? ( media-libs/libmng:= ) - openexr? ( media-libs/openexr:= ) - png? ( media-libs/libpng:0= ) - raw? ( media-libs/libraw:= ) - tiff? ( - media-libs/ilmbase:= - media-libs/tiff:0 - ) - webp? ( media-libs/libwebp:= )" -DEPEND="${RDEPEND}" -BDEPEND=" - app-arch/unzip - virtual/pkgconfig" - -S=${WORKDIR}/${MY_PN} - -DOCS=( "${DISTDIR}"/${MY_P}.pdf README.linux Whatsnew.txt ) -PATCHES=( - "${DISTDIR}"/${PN}-3.18.0-unbundling.patch - "${FILESDIR}"/${PN}-3.18.0-remove-jpeg-transform.patch - "${FILESDIR}"/${PN}-3.18.0-rename-jpeg_read_icc_profile.patch - "${FILESDIR}"/${PN}-3.18.0-disable-plugin-G3.patch - "${FILESDIR}"/${PN}-3.18.0-raw.patch - "${FILESDIR}"/${PN}-3.18.0-libjpeg9.patch - "${FILESDIR}"/${PN}-3.18.0-CVE-2019-12211-CVE-2019-12213.patch - "${FILESDIR}"/${PN}-3.18.0-libraw-0.20.0.patch -) - -src_prepare() { - pushd Source >/dev/null || die - cp LibJPEG/{transupp.c,transupp.h,jinclude.h} . || die - cp LibTIFF4/{tiffiop,tif_dir}.h . || die - rm -rf LibPNG LibMNG LibOpenJPEG ZLib OpenEXR LibRawLite LibTIFF4 LibJPEG LibWebP LibJXR || die - popd >/dev/null || die - - edos2unix Makefile.{gnu,fip,srcs} fipMakefile.srcs */*.h */*/*.cpp - sed -i \ - -e "s:/./:/:g" \ - -e "s: ./: :g" \ - -e 's: Source: \\\n\tSource:g' \ - -e 's: Wrapper: \\\n\tWrapper:g' \ - -e 's: Examples: \\\n\tExamples:g' \ - -e 's: TestAPI: \\\n\tTestAPI:g' \ - -e 's: -ISource: \\\n\t-ISource:g' \ - -e 's: -IWrapper: \\\n\t-IWrapper:g' \ - -e 's:INCLS:\nINCLS:g' \ - Makefile.srcs fipMakefile.srcs || die - sed -i \ - -e "/LibJPEG/d" \ - -e "/LibJXR/d" \ - -e "/LibPNG/d" \ - -e "/LibTIFF/d" \ - -e "/Source\/ZLib/d" \ - -e "/LibOpenJPEG/d" \ - -e "/OpenEXR/d" \ - -e "/LibRawLite/d" \ - -e "/LibMNG/d" \ - -e "/LibWebP/d" \ - -e "/LibJXR/d" \ - Makefile.srcs fipMakefile.srcs || die - - default -} - -foreach_make() { - local m - for m in Makefile.{gnu,fip} ; do - emake -f ${m} \ - USE_EXR=$(usex openexr) \ - USE_JPEG=$(usex jpeg) \ - USE_JPEG2K=$(usex jpeg2k) \ - USE_MNG=$(usex mng) \ - USE_PNG=$(usex png) \ - USE_TIFF=$(usex tiff) \ - USE_RAW=$(usex raw) \ - USE_WEBP=$(usex webp) \ - $(usex static-libs '' STATICLIB=) \ - "$@" - done -} - -src_compile() { - tc-export AR PKG_CONFIG - foreach_make \ - CXX="$(tc-getCXX) -fPIC" \ - CC="$(tc-getCC) -fPIC" \ - ${MY_PN} -} - -src_install() { - foreach_make install DESTDIR="${ED}" INSTALLDIR="${ED}"/usr/$(get_libdir) - einstalldocs -} diff --git a/media-libs/glfw/Manifest b/media-libs/glfw/Manifest index f72333373d44..ea810533070b 100644 --- a/media-libs/glfw/Manifest +++ b/media-libs/glfw/Manifest @@ -1,3 +1,2 @@ -DIST glfw-3.3.4.tar.gz 762885 BLAKE2B b88f80ec8cfb1607a8c5ce5e6eabfe5c9813235c6225629ef8001ba5f46cdbed1d726aeed170a8749bbd048f1517cb614f9fc5ad7604ae1698b83b5e995b8cd6 SHA512 2b45ab72da7a2c007c0f42ccd56205f9684cfb980e2b1df127850cd057bb2b02ce02c7c64acd54cd433778e7017148f214afedf09badff9d2edf5f9b8d9d2701 DIST glfw-3.3.5.tar.gz 776593 BLAKE2B ce92a42ef7361ae2580c9d6722d340106f9ca26e7fb436b9a4be2f25bf4a15d2b08d82ff71ad4ce4cd6a59e31d934d0fe6ab0e546474a3e7de38e229795ee0e8 SHA512 cbb8ebf25d3d826eb1daeff3ad2e0e965ce9def3352955f297743d918f625d96bc05bf87c90f7b57ec53376a0f2f6ce62f80b57fac4e81e023400de275e97beb DIST glfw-3.3.6.tar.gz 776716 BLAKE2B 6bd3ef60e637e96dc71013ce8caada2ad0aba47eb72fd35a7b3060344f604f497ea87d17689723f4bd968098f9b3828c258f35cb3a6128d1a8b649c523dd3287 SHA512 4c295c5f4c02f6ede125fce67c52a97450f552f3985b664745bd8a836c1d6d69c04727c956fd26ec61f1e5fd9c074a28dcf6b1d1800f118444eef066f048b201 diff --git a/media-libs/glfw/glfw-3.3.4-r3.ebuild b/media-libs/glfw/glfw-3.3.4-r3.ebuild deleted file mode 100644 index 73e3566ec70b..000000000000 --- a/media-libs/glfw/glfw-3.3.4-r3.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -CMAKE_ECLASS=cmake -inherit cmake-multilib - -DESCRIPTION="Portable OpenGL FrameWork" -HOMEPAGE="https://www.glfw.org/" -SRC_URI="https://github.com/glfw/glfw/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc64 x86" -IUSE="wayland-only" - -# note: libglfw uses dlopen() for most of these at runtime -RDEPEND=" - x11-libs/libxkbcommon[${MULTILIB_USEDEP}] - wayland-only? ( - dev-libs/wayland[${MULTILIB_USEDEP}] - media-libs/mesa[egl(+),wayland,${MULTILIB_USEDEP}] - ) - !wayland-only? ( - virtual/opengl[${MULTILIB_USEDEP}] - x11-libs/libX11[${MULTILIB_USEDEP}] - x11-libs/libXcursor[${MULTILIB_USEDEP}] - x11-libs/libXinerama[${MULTILIB_USEDEP}] - x11-libs/libXrandr[${MULTILIB_USEDEP}] - x11-libs/libXxf86vm[${MULTILIB_USEDEP}] - )" -DEPEND=" - ${RDEPEND} - wayland-only? ( dev-libs/wayland-protocols ) - !wayland-only? ( - x11-base/xorg-proto - x11-libs/libXi[${MULTILIB_USEDEP}] - )" -BDEPEND=" - wayland-only? ( - dev-util/wayland-scanner - kde-frameworks/extra-cmake-modules - )" - -src_configure() { - local mycmakeargs=( - -DGLFW_BUILD_EXAMPLES=no - -DGLFW_USE_WAYLAND=$(usex wayland-only) - ) - cmake-multilib_src_configure -} diff --git a/media-libs/libpulse/libpulse-15.0.ebuild b/media-libs/libpulse/libpulse-15.0.ebuild index 92f3abe61083..28fedf2da21e 100644 --- a/media-libs/libpulse/libpulse-15.0.ebuild +++ b/media-libs/libpulse/libpulse-15.0.ebuild @@ -41,7 +41,10 @@ RDEPEND=" selinux? ( sec-policy/selinux-pulseaudio ) systemd? ( sys-apps/systemd:= ) tcpd? ( sys-apps/tcp-wrappers ) - X? ( >=x11-libs/libxcb-1.6[${MULTILIB_USEDEP}] ) + X? ( + x11-libs/libX11[${MULTILIB_USEDEP}] + >=x11-libs/libxcb-1.6[${MULTILIB_USEDEP}] + ) || ( elibc_glibc? ( virtual/libc ) elibc_uclibc? ( virtual/libc ) diff --git a/media-libs/opencolorio/opencolorio-2.1.1.ebuild b/media-libs/opencolorio/opencolorio-2.1.1-r1.ebuild similarity index 97% rename from media-libs/opencolorio/opencolorio-2.1.1.ebuild rename to media-libs/opencolorio/opencolorio-2.1.1-r1.ebuild index 9a4f6d7d90ed..c31d85abca15 100644 --- a/media-libs/opencolorio/opencolorio-2.1.1.ebuild +++ b/media-libs/opencolorio/opencolorio-2.1.1-r1.ebuild @@ -25,12 +25,10 @@ REQUIRED_USE=" # https://github.com/AcademySoftwareFoundation/OpenColorIO/issues/1509 # bug #821073 # 2.1.1 should be? -# -# See bug #802363 for yaml-cpp < dep RDEPEND=" dev-cpp/pystring dev-python/pybind11 - =dev-cpp/yaml-cpp-0.7.0:= dev-libs/tinyxml media-libs/ilmbase:= opengl? ( diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz index 3ea326afb4c9..762f5b961dc0 100644 Binary files a/media-sound/Manifest.gz and b/media-sound/Manifest.gz differ diff --git a/media-sound/pulseaudio/pulseaudio-15.0-r1.ebuild b/media-sound/pulseaudio/pulseaudio-15.0-r2.ebuild similarity index 99% rename from media-sound/pulseaudio/pulseaudio-15.0-r1.ebuild rename to media-sound/pulseaudio/pulseaudio-15.0-r2.ebuild index 14c9658fb5b7..91cc01e8a068 100644 --- a/media-sound/pulseaudio/pulseaudio-15.0-r1.ebuild +++ b/media-sound/pulseaudio/pulseaudio-15.0-r2.ebuild @@ -128,6 +128,7 @@ COMMON_DEPEND=" udev? ( >=virtual/udev-143[hwdb(+)] ) webrtc-aec? ( >=media-libs/webrtc-audio-processing-0.2:0 ) X? ( + x11-libs/libX11[${MULTILIB_USEDEP}] >=x11-libs/libxcb-1.6[${MULTILIB_USEDEP}] daemon? ( x11-libs/libICE diff --git a/media-video/Manifest.gz b/media-video/Manifest.gz index 060d24ecd850..a5ffb54ba044 100644 Binary files a/media-video/Manifest.gz and b/media-video/Manifest.gz differ diff --git a/media-video/popcorntime-bin/popcorntime-bin-0.4.6.ebuild b/media-video/popcorntime-bin/popcorntime-bin-0.4.6.ebuild index e806a3f19921..be67597435bd 100644 --- a/media-video/popcorntime-bin/popcorntime-bin-0.4.6.ebuild +++ b/media-video/popcorntime-bin/popcorntime-bin-0.4.6.ebuild @@ -43,7 +43,7 @@ RDEPEND=" x11-libs/pango " -QA_PREBUILT="/opt/Popcorn-Time/*" +QA_PREBUILT="opt/Popcorn-Time/*" S="${WORKDIR}" diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index 590885c774ba..74556cc17f73 100644 Binary files a/metadata/Manifest.gz and b/metadata/Manifest.gz differ diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index f422db91b466..21a1aabaf1f5 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Tue, 28 Dec 2021 08:39:08 +0000 +Wed, 29 Dec 2021 07:09:13 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index f422db91b466..21a1aabaf1f5 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Tue, 28 Dec 2021 08:39:08 +0000 +Wed, 29 Dec 2021 07:09:13 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index b834d94fff2b..5e36ce01f0ba 100644 Binary files a/metadata/md5-cache/Manifest.gz and b/metadata/md5-cache/Manifest.gz differ diff --git a/metadata/md5-cache/acct-user/Manifest.gz b/metadata/md5-cache/acct-user/Manifest.gz index 1ddf62863439..983f03876d00 100644 Binary files a/metadata/md5-cache/acct-user/Manifest.gz and b/metadata/md5-cache/acct-user/Manifest.gz differ diff --git a/metadata/md5-cache/acct-user/icingadirector-0 b/metadata/md5-cache/acct-user/icingadirector-0 new file mode 100644 index 000000000000..dd9a1fd131a0 --- /dev/null +++ b/metadata/md5-cache/acct-user/icingadirector-0 @@ -0,0 +1,8 @@ +DEFINED_PHASES=install postinst preinst prerm pretend +DESCRIPTION=Icinga Director User +EAPI=8 +KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +RDEPEND=acct-group/icingaweb2 +SLOT=0 +_eclasses_=acct-user b3a6f9d710c598ea09935e86d45fbc36 user 1033b6bed7cf367c4507ea9a3ff503d0 user-info 2e75eaea3582b052ec16d9d5aa74ced3 +_md5_=b162a15c228756de640930729e24b25b diff --git a/metadata/md5-cache/app-admin/Manifest.gz b/metadata/md5-cache/app-admin/Manifest.gz index edc802ef7e19..c9e536039eb9 100644 Binary files a/metadata/md5-cache/app-admin/Manifest.gz and b/metadata/md5-cache/app-admin/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/eselect-1.4.18 b/metadata/md5-cache/app-admin/eselect-1.4.18 new file mode 100644 index 000000000000..d1ccb3047d67 --- /dev/null +++ b/metadata/md5-cache/app-admin/eselect-1.4.18 @@ -0,0 +1,15 @@ +BDEPEND=doc? ( dev-python/docutils ) +DEFINED_PHASES=compile install postinst +DEPEND=sys-apps/sed || ( sys-apps/coreutils app-misc/realpath ) +DESCRIPTION=Gentoo's multi-purpose configuration and management tool +EAPI=7 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Eselect +IUSE=doc emacs vim-syntax +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2+ || ( GPL-2+ CC-BY-SA-4.0 ) +PDEPEND=emacs? ( app-emacs/eselect-mode ) vim-syntax? ( app-vim/eselect-syntax ) +RDEPEND=sys-apps/sed || ( sys-apps/coreutils app-misc/realpath ) sys-apps/file sys-libs/ncurses:0 +SLOT=0 +SRC_URI=https://dev.gentoo.org/~ulm/eselect/eselect-1.4.18.tar.xz +_eclasses_=bash-completion-r1 d3a60385655d9b402be765a6de333245 multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=d67da186d07d0f37985d9c901cf57398 diff --git a/metadata/md5-cache/app-emacs/Manifest.gz b/metadata/md5-cache/app-emacs/Manifest.gz index 26cd3fd553cc..4d1b2970f7ed 100644 Binary files a/metadata/md5-cache/app-emacs/Manifest.gz and b/metadata/md5-cache/app-emacs/Manifest.gz differ diff --git a/metadata/md5-cache/app-emacs/ebuild-mode-1.51-r3 b/metadata/md5-cache/app-emacs/ebuild-mode-1.51-r3 deleted file mode 100644 index e5fb5170d809..000000000000 --- a/metadata/md5-cache/app-emacs/ebuild-mode-1.51-r3 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=sys-apps/texinfo >=app-editors/emacs-23.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack -DESCRIPTION=Emacs modes for editing ebuilds and other Gentoo specific files -EAPI=7 -HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Emacs -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos -LICENSE=GPL-2+ -RDEPEND=>=app-editors/emacs-23.1:* -SLOT=0 -SRC_URI=https://dev.gentoo.org/~ulm/emacs/ebuild-mode-1.51.tar.xz -_eclasses_=elisp 532fa549a4f54b2a3f83b827b272a4a9 elisp-common cf4fd1b0835b9f3e638724840468064a readme.gentoo-r1 c9646d622541c023f5159b86a14e930c -_md5_=fd6c5048bc3e0150e4440b356959034f diff --git a/metadata/md5-cache/app-emacs/ebuild-mode-1.52 b/metadata/md5-cache/app-emacs/ebuild-mode-1.54 similarity index 84% rename from metadata/md5-cache/app-emacs/ebuild-mode-1.52 rename to metadata/md5-cache/app-emacs/ebuild-mode-1.54 index 338ad170e238..3c16a81dc21c 100644 --- a/metadata/md5-cache/app-emacs/ebuild-mode-1.52 +++ b/metadata/md5-cache/app-emacs/ebuild-mode-1.54 @@ -1,12 +1,12 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-23.1:* DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack DESCRIPTION=Emacs modes for editing ebuilds and other Gentoo specific files -EAPI=7 +EAPI=8 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Emacs KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 -SRC_URI=https://dev.gentoo.org/~ulm/emacs/ebuild-mode-1.52.tar.xz +SRC_URI=https://dev.gentoo.org/~ulm/emacs/ebuild-mode-1.54.tar.xz _eclasses_=elisp 532fa549a4f54b2a3f83b827b272a4a9 elisp-common cf4fd1b0835b9f3e638724840468064a readme.gentoo-r1 c9646d622541c023f5159b86a14e930c -_md5_=0ef662e7420c21e39fb6366ee01efa2e +_md5_=4ec37b8ef84ed182d55adac315a735d5 diff --git a/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20210314 b/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20210314 deleted file mode 100644 index 86ddf754b51e..000000000000 --- a/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20210314 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=>=app-editors/emacs-23.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack -DESCRIPTION=Extension for nxml-mode with Gentoo-specific schemas -EAPI=7 -HOMEPAGE=https://gitweb.gentoo.org/proj/nxml-gentoo-schemas.git/ -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 -LICENSE=HPND MIT GPL-2+ -RDEPEND=>=app-editors/emacs-23.1:* -SLOT=0 -SRC_URI=https://dev.gentoo.org/~ulm/distfiles/nxml-gentoo-schemas-20210314.tar.xz -_eclasses_=elisp 532fa549a4f54b2a3f83b827b272a4a9 elisp-common cf4fd1b0835b9f3e638724840468064a -_md5_=7ccf14db5981339fbd4cd3214521d145 diff --git a/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20210907 b/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20210907 index 36a489f3b27e..ffc09f06cb47 100644 --- a/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20210907 +++ b/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20210907 @@ -3,10 +3,10 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack DESCRIPTION=Extension for nxml-mode with Gentoo-specific schemas EAPI=8 HOMEPAGE=https://gitweb.gentoo.org/proj/nxml-gentoo-schemas.git/ -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 LICENSE=HPND MIT GPL-2+ RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/nxml-gentoo-schemas-20210907.tar.xz _eclasses_=elisp 532fa549a4f54b2a3f83b827b272a4a9 elisp-common cf4fd1b0835b9f3e638724840468064a -_md5_=e8b988280e0fd66b9687d26ac2d0fcfb +_md5_=8001a88067d2ec3b5bec34a32de3f26c diff --git a/metadata/md5-cache/app-emacs/org-mode-9.4.6 b/metadata/md5-cache/app-emacs/org-mode-9.4.6 index 204616d41690..40f0f2af15b6 100644 --- a/metadata/md5-cache/app-emacs/org-mode-9.4.6 +++ b/metadata/md5-cache/app-emacs/org-mode-9.4.6 @@ -4,11 +4,11 @@ DESCRIPTION=An Emacs mode for notes and project planning EAPI=8 HOMEPAGE=https://www.orgmode.org/ IUSE=contrib doc odt-schema -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ppc x86 LICENSE=GPL-3+ FDL-1.3+ contrib? ( GPL-2+ MIT ) odt-schema? ( OASIS-Open ) RDEPEND=>=app-editors/emacs-24:* RESTRICT=test SLOT=0 SRC_URI=https://orgmode.org/org-9.4.6.tar.gz _eclasses_=elisp 532fa549a4f54b2a3f83b827b272a4a9 elisp-common cf4fd1b0835b9f3e638724840468064a readme.gentoo-r1 c9646d622541c023f5159b86a14e930c -_md5_=97fe4ccc4b52968648e19f23667f0c66 +_md5_=35fc378411d8ecce9135d7a40a61a5c4 diff --git a/metadata/md5-cache/app-emacs/org-mode-9.5.2 b/metadata/md5-cache/app-emacs/org-mode-9.5.2 new file mode 100644 index 000000000000..a94a69d11e43 --- /dev/null +++ b/metadata/md5-cache/app-emacs/org-mode-9.5.2 @@ -0,0 +1,14 @@ +BDEPEND=doc? ( virtual/texi2dvi ) >=app-editors/emacs-24:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DESCRIPTION=An Emacs mode for notes and project planning +EAPI=8 +HOMEPAGE=https://www.orgmode.org/ +IUSE=doc odt-schema +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=GPL-3+ FDL-1.3+ CC-BY-SA-3.0 odt-schema? ( OASIS-Open ) +RDEPEND=>=app-editors/emacs-24:* +RESTRICT=test +SLOT=0 +SRC_URI=https://git.savannah.gnu.org/cgit/emacs/org-mode.git/snapshot/org-mode-release_9.5.2.tar.gz +_eclasses_=elisp 532fa549a4f54b2a3f83b827b272a4a9 elisp-common cf4fd1b0835b9f3e638724840468064a readme.gentoo-r1 c9646d622541c023f5159b86a14e930c +_md5_=44dab8e229f3c9d7639f3707fd9d3f85 diff --git a/metadata/md5-cache/app-emulation/Manifest.gz b/metadata/md5-cache/app-emulation/Manifest.gz index e6ff5f23bea7..d64432beb6dd 100644 Binary files a/metadata/md5-cache/app-emulation/Manifest.gz and b/metadata/md5-cache/app-emulation/Manifest.gz differ diff --git a/metadata/md5-cache/app-emulation/protontricks-1.6.2 b/metadata/md5-cache/app-emulation/protontricks-1.6.2-r1 similarity index 95% rename from metadata/md5-cache/app-emulation/protontricks-1.6.2 rename to metadata/md5-cache/app-emulation/protontricks-1.6.2-r1 index 4dca1a048626..2758ae7ad33d 100644 --- a/metadata/md5-cache/app-emulation/protontricks-1.6.2 +++ b/metadata/md5-cache/app-emulation/protontricks-1.6.2-r1 @@ -1,5 +1,5 @@ BDEPEND=python_single_target_pypy3? ( dev-python/setuptools_scm[python_targets_pypy3(-)] ) python_single_target_python3_8? ( dev-python/setuptools_scm[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/setuptools_scm[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/setuptools_scm[python_targets_python3_10(-)] ) test? ( app-emulation/winetricks python_single_target_pypy3? ( dev-python/vdf[python_targets_pypy3(-)] ) python_single_target_python3_8? ( dev-python/vdf[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/vdf[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/vdf[python_targets_python3_10(-)] ) gui? ( gnome-extra/zenity || ( app-emulation/winetricks[gtk] app-emulation/winetricks[kde] ) ) python_single_target_pypy3? ( >=dev-python/pytest-4.5.0[python_targets_pypy3(-)] ) python_single_target_python3_8? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/pytest-4.5.0[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pytest-4.5.0[python_targets_python3_10(-)] ) ) python_single_target_pypy3? ( >=dev-python/pypy3-7.3.7:0= >=dev-lang/python-exec-2:=[python_targets_pypy3] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) python_single_target_pypy3? ( >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)] ) python_single_target_python3_8? ( >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/setuptools-42.0.2[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/setuptools-42.0.2[python_targets_python3_10(-)] ) -DEFINED_PHASES=compile configure install postinst prepare setup test +DEFINED_PHASES=compile configure install postinst postrm prepare setup test DESCRIPTION=app-emulation/winetricks wrapper for Proton (Steam Play) games EAPI=8 HOMEPAGE=https://github.com/Matoking/protontricks @@ -11,5 +11,5 @@ REQUIRED_USE=^^ ( python_single_target_pypy3 python_single_target_python3_8 pyth RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/protontricks/protontricks-1.6.2.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=7b1392d4b77756f0a7a46333d5931fe5 +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 +_md5_=ed0292f2d12bc9c33516482d70a4383a diff --git a/metadata/md5-cache/app-emulation/ruffle-0_p20211214 b/metadata/md5-cache/app-emulation/ruffle-0_p20211214 deleted file mode 100644 index 76112cfd41be..000000000000 --- a/metadata/md5-cache/app-emulation/ruffle-0_p20211214 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.10[xml] dev-lang/python:3.9[xml] dev-lang/python:3.8[xml] ) virtual/pkgconfig >=virtual/rust-1.56 >=virtual/rust-1.53 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=dev-libs/openssl:= media-libs/alsa-lib sys-libs/zlib:= x11-libs/libxcb:= -DESCRIPTION=Flash Player emulator written in Rust -EAPI=8 -HOMEPAGE=https://ruffle.rs/ -IUSE=gui debug -KEYWORDS=~amd64 -LICENSE=Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 ZLIB curl zlib-acknowledgement -RDEPEND=dev-libs/openssl:= media-libs/alsa-lib sys-libs/zlib:= x11-libs/libxcb:= gui? ( || ( gnome-extra/zenity kde-apps/kdialog ) ) -SLOT=0 -SRC_URI=https://github.com/ruffle-rs/ruffle/archive/refs/tags/nightly-2021-12-14.tar.gz -> ruffle-nightly-2021-12-14.tar.gz https://crates.io/api/v1/crates/adler/1.0.2/download -> adler-1.0.2.crate https://crates.io/api/v1/crates/adler32/1.2.0/download -> adler32-1.2.0.crate https://crates.io/api/v1/crates/ahash/0.7.6/download -> ahash-0.7.6.crate https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/alsa/0.5.0/download -> alsa-0.5.0.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/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/approx/0.5.0/download -> approx-0.5.0.crate https://crates.io/api/v1/crates/arrayvec/0.5.2/download -> arrayvec-0.5.2.crate https://crates.io/api/v1/crates/arrayvec/0.7.2/download -> arrayvec-0.7.2.crate https://crates.io/api/v1/crates/ash/0.33.3+1.2.191/download -> ash-0.33.3+1.2.191.crate https://crates.io/api/v1/crates/async-channel/1.6.1/download -> async-channel-1.6.1.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/base64/0.13.0/download -> base64-0.13.0.crate https://crates.io/api/v1/crates/bindgen/0.56.0/download -> bindgen-0.56.0.crate https://crates.io/api/v1/crates/bit-set/0.5.2/download -> bit-set-0.5.2.crate https://crates.io/api/v1/crates/bit-vec/0.6.3/download -> bit-vec-0.6.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_serde_shim/0.2.2/download -> bitflags_serde_shim-0.2.2.crate https://crates.io/api/v1/crates/bitstream-io/1.2.0/download -> bitstream-io-1.2.0.crate https://crates.io/api/v1/crates/bitvec/0.19.6/download -> bitvec-0.19.6.crate https://crates.io/api/v1/crates/block/0.1.6/download -> block-0.1.6.crate https://crates.io/api/v1/crates/block-buffer/0.10.0/download -> block-buffer-0.10.0.crate https://crates.io/api/v1/crates/bstr/0.2.17/download -> bstr-0.2.17.crate https://crates.io/api/v1/crates/build_const/0.2.2/download -> build_const-0.2.2.crate https://crates.io/api/v1/crates/bumpalo/3.8.0/download -> bumpalo-3.8.0.crate https://crates.io/api/v1/crates/bytemuck/1.7.2/download -> bytemuck-1.7.2.crate https://crates.io/api/v1/crates/bytemuck_derive/1.0.1/download -> bytemuck_derive-1.0.1.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes/1.1.0/download -> bytes-1.1.0.crate https://crates.io/api/v1/crates/cache-padded/1.1.1/download -> cache-padded-1.1.1.crate https://crates.io/api/v1/crates/calloop/0.9.1/download -> calloop-0.9.1.crate https://crates.io/api/v1/crates/castaway/0.1.1/download -> castaway-0.1.1.crate https://crates.io/api/v1/crates/cc/1.0.72/download -> cc-1.0.72.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.4.0/download -> cexpr-0.4.0.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/cfg_aliases/0.1.1/download -> cfg_aliases-0.1.1.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/clang-sys/1.3.0/download -> clang-sys-1.3.0.crate https://crates.io/api/v1/crates/clap/3.0.0-beta.5/download -> clap-3.0.0-beta.5.crate https://crates.io/api/v1/crates/clap_derive/3.0.0-beta.5/download -> clap_derive-3.0.0-beta.5.crate https://crates.io/api/v1/crates/clipboard/0.5.0/download -> clipboard-0.5.0.crate https://crates.io/api/v1/crates/clipboard-win/2.2.0/download -> clipboard-win-2.2.0.crate https://crates.io/api/v1/crates/cocoa/0.24.0/download -> cocoa-0.24.0.crate https://crates.io/api/v1/crates/cocoa-foundation/0.1.0/download -> cocoa-foundation-0.1.0.crate https://crates.io/api/v1/crates/codespan-reporting/0.11.1/download -> codespan-reporting-0.11.1.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/combine/4.6.2/download -> combine-4.6.2.crate https://crates.io/api/v1/crates/concurrent-queue/1.2.2/download -> concurrent-queue-1.2.2.crate https://crates.io/api/v1/crates/console/0.15.0/download -> console-0.15.0.crate https://crates.io/api/v1/crates/console_error_panic_hook/0.1.7/download -> console_error_panic_hook-0.1.7.crate https://crates.io/api/v1/crates/console_log/0.2.0/download -> console_log-0.2.0.crate https://crates.io/api/v1/crates/cookie-factory/0.3.2/download -> cookie-factory-0.3.2.crate https://crates.io/api/v1/crates/copyless/0.1.5/download -> copyless-0.1.5.crate https://crates.io/api/v1/crates/core-foundation/0.7.0/download -> core-foundation-0.7.0.crate https://crates.io/api/v1/crates/core-foundation/0.9.2/download -> core-foundation-0.9.2.crate https://crates.io/api/v1/crates/core-foundation-sys/0.7.0/download -> core-foundation-sys-0.7.0.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.3/download -> core-foundation-sys-0.8.3.crate https://crates.io/api/v1/crates/core-graphics/0.19.2/download -> core-graphics-0.19.2.crate https://crates.io/api/v1/crates/core-graphics/0.22.3/download -> core-graphics-0.22.3.crate https://crates.io/api/v1/crates/core-graphics-types/0.1.1/download -> core-graphics-types-0.1.1.crate https://crates.io/api/v1/crates/core-video-sys/0.1.4/download -> core-video-sys-0.1.4.crate https://crates.io/api/v1/crates/coreaudio-rs/0.10.0/download -> coreaudio-rs-0.10.0.crate https://crates.io/api/v1/crates/coreaudio-sys/0.2.8/download -> coreaudio-sys-0.2.8.crate https://crates.io/api/v1/crates/cpal/0.13.4/download -> cpal-0.13.4.crate https://crates.io/api/v1/crates/cpufeatures/0.2.1/download -> cpufeatures-0.2.1.crate https://crates.io/api/v1/crates/crc/1.8.1/download -> crc-1.8.1.crate https://crates.io/api/v1/crates/crc32fast/1.3.0/download -> crc32fast-1.3.0.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.1/download -> crossbeam-channel-0.5.1.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.1/download -> crossbeam-deque-0.8.1.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.5/download -> crossbeam-epoch-0.9.5.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.5/download -> crossbeam-utils-0.8.5.crate https://crates.io/api/v1/crates/crypto-common/0.1.0/download -> crypto-common-0.1.0.crate https://crates.io/api/v1/crates/csv/1.1.6/download -> csv-1.1.6.crate https://crates.io/api/v1/crates/csv-core/0.1.10/download -> csv-core-0.1.10.crate https://crates.io/api/v1/crates/ctor/0.1.21/download -> ctor-0.1.21.crate https://crates.io/api/v1/crates/cty/0.2.2/download -> cty-0.2.2.crate https://crates.io/api/v1/crates/curl/0.4.41/download -> curl-0.4.41.crate https://crates.io/api/v1/crates/curl-sys/0.4.51+curl-7.80.0/download -> curl-sys-0.4.51+curl-7.80.0.crate https://crates.io/api/v1/crates/d3d12/0.4.1/download -> d3d12-0.4.1.crate https://crates.io/api/v1/crates/darling/0.10.2/download -> darling-0.10.2.crate https://crates.io/api/v1/crates/darling/0.13.0/download -> darling-0.13.0.crate https://crates.io/api/v1/crates/darling_core/0.10.2/download -> darling_core-0.10.2.crate https://crates.io/api/v1/crates/darling_core/0.13.0/download -> darling_core-0.13.0.crate https://crates.io/api/v1/crates/darling_macro/0.10.2/download -> darling_macro-0.10.2.crate https://crates.io/api/v1/crates/darling_macro/0.13.0/download -> darling_macro-0.13.0.crate https://crates.io/api/v1/crates/deflate/0.8.6/download -> deflate-0.8.6.crate https://crates.io/api/v1/crates/deflate/0.9.1/download -> deflate-0.9.1.crate https://crates.io/api/v1/crates/derivative/2.2.0/download -> derivative-2.2.0.crate https://crates.io/api/v1/crates/derive-try-from-primitive/1.0.0/download -> derive-try-from-primitive-1.0.0.crate https://crates.io/api/v1/crates/diff/0.1.12/download -> diff-0.1.12.crate https://crates.io/api/v1/crates/digest/0.10.0/download -> digest-0.10.0.crate https://crates.io/api/v1/crates/dirs/4.0.0/download -> dirs-4.0.0.crate https://crates.io/api/v1/crates/dirs-sys/0.3.6/download -> dirs-sys-0.3.6.crate https://crates.io/api/v1/crates/dispatch/0.2.0/download -> dispatch-0.2.0.crate https://crates.io/api/v1/crates/dlib/0.5.0/download -> dlib-0.5.0.crate https://crates.io/api/v1/crates/downcast-rs/1.2.0/download -> downcast-rs-1.2.0.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/embed-resource/1.6.5/download -> embed-resource-1.6.5.crate https://crates.io/api/v1/crates/encode_unicode/0.3.6/download -> encode_unicode-0.3.6.crate https://crates.io/api/v1/crates/encoding/0.2.33/download -> encoding-0.2.33.crate https://crates.io/api/v1/crates/encoding-index-japanese/1.20141219.5/download -> encoding-index-japanese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-korean/1.20141219.5/download -> encoding-index-korean-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-simpchinese/1.20141219.5/download -> encoding-index-simpchinese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-singlebyte/1.20141219.5/download -> encoding-index-singlebyte-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-tradchinese/1.20141219.5/download -> encoding-index-tradchinese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding_index_tests/0.1.4/download -> encoding_index_tests-0.1.4.crate https://crates.io/api/v1/crates/encoding_rs/0.8.30/download -> encoding_rs-0.8.30.crate https://crates.io/api/v1/crates/enum-map/1.1.1/download -> enum-map-1.1.1.crate https://crates.io/api/v1/crates/enum-map-derive/0.6.0/download -> enum-map-derive-0.6.0.crate https://crates.io/api/v1/crates/enumset/1.0.8/download -> enumset-1.0.8.crate https://crates.io/api/v1/crates/enumset_derive/0.5.5/download -> enumset_derive-0.5.5.crate https://crates.io/api/v1/crates/env_logger/0.9.0/download -> env_logger-0.9.0.crate https://crates.io/api/v1/crates/euclid/0.22.6/download -> euclid-0.22.6.crate https://crates.io/api/v1/crates/event-listener/2.5.1/download -> event-listener-2.5.1.crate https://crates.io/api/v1/crates/fastrand/1.5.0/download -> fastrand-1.5.0.crate https://crates.io/api/v1/crates/flate2/1.0.22/download -> flate2-1.0.22.crate https://crates.io/api/v1/crates/float_next_after/0.1.5/download -> float_next_after-0.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/foreign-types/0.3.2/download -> foreign-types-0.3.2.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/form_urlencoded/1.0.1/download -> form_urlencoded-1.0.1.crate https://crates.io/api/v1/crates/funty/1.1.0/download -> funty-1.1.0.crate https://crates.io/api/v1/crates/futures/0.3.18/download -> futures-0.3.18.crate https://crates.io/api/v1/crates/futures-channel/0.3.18/download -> futures-channel-0.3.18.crate https://crates.io/api/v1/crates/futures-core/0.3.18/download -> futures-core-0.3.18.crate https://crates.io/api/v1/crates/futures-executor/0.3.18/download -> futures-executor-0.3.18.crate https://crates.io/api/v1/crates/futures-io/0.3.18/download -> futures-io-0.3.18.crate https://crates.io/api/v1/crates/futures-lite/1.12.0/download -> futures-lite-1.12.0.crate https://crates.io/api/v1/crates/futures-macro/0.3.18/download -> futures-macro-0.3.18.crate https://crates.io/api/v1/crates/futures-sink/0.3.18/download -> futures-sink-0.3.18.crate https://crates.io/api/v1/crates/futures-task/0.3.18/download -> futures-task-0.3.18.crate https://crates.io/api/v1/crates/futures-util/0.3.18/download -> futures-util-0.3.18.crate https://crates.io/api/v1/crates/fxhash/0.2.1/download -> fxhash-0.2.1.crate https://crates.io/api/v1/crates/generational-arena/0.2.8/download -> generational-arena-0.2.8.crate https://crates.io/api/v1/crates/generic-array/0.14.4/download -> generic-array-0.14.4.crate https://crates.io/api/v1/crates/getrandom/0.2.3/download -> getrandom-0.2.3.crate https://crates.io/api/v1/crates/gif/0.11.3/download -> gif-0.11.3.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.crate https://crates.io/api/v1/crates/glow/0.11.0/download -> glow-0.11.0.crate https://crates.io/api/v1/crates/gpu-alloc/0.5.2/download -> gpu-alloc-0.5.2.crate https://crates.io/api/v1/crates/gpu-alloc-types/0.2.0/download -> gpu-alloc-types-0.2.0.crate https://crates.io/api/v1/crates/gpu-descriptor/0.2.2/download -> gpu-descriptor-0.2.2.crate https://crates.io/api/v1/crates/gpu-descriptor-types/0.1.1/download -> gpu-descriptor-types-0.1.1.crate https://crates.io/api/v1/crates/hashbrown/0.11.2/download -> hashbrown-0.11.2.crate https://crates.io/api/v1/crates/heck/0.3.3/download -> heck-0.3.3.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/hexf-parse/0.2.1/download -> hexf-parse-0.2.1.crate https://crates.io/api/v1/crates/http/0.2.5/download -> http-0.2.5.crate https://crates.io/api/v1/crates/humantime/2.1.0/download -> humantime-2.1.0.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/0.2.3/download -> idna-0.2.3.crate https://crates.io/api/v1/crates/image/0.23.14/download -> image-0.23.14.crate https://crates.io/api/v1/crates/indexmap/1.7.0/download -> indexmap-1.7.0.crate https://crates.io/api/v1/crates/indicatif/0.16.2/download -> indicatif-0.16.2.crate https://crates.io/api/v1/crates/inplace_it/0.3.3/download -> inplace_it-0.3.3.crate https://crates.io/api/v1/crates/instant/0.1.12/download -> instant-0.1.12.crate https://crates.io/api/v1/crates/isahc/1.6.0/download -> isahc-1.6.0.crate https://crates.io/api/v1/crates/itoa/0.4.8/download -> itoa-0.4.8.crate https://crates.io/api/v1/crates/jni/0.19.0/download -> jni-0.19.0.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/jobserver/0.1.24/download -> jobserver-0.1.24.crate https://crates.io/api/v1/crates/jpeg-decoder/0.1.22/download -> jpeg-decoder-0.1.22.crate https://crates.io/api/v1/crates/jpeg-decoder/0.2.1/download -> jpeg-decoder-0.2.1.crate https://crates.io/api/v1/crates/js-sys/0.3.55/download -> js-sys-0.3.55.crate https://crates.io/api/v1/crates/json/0.12.4/download -> json-0.12.4.crate https://crates.io/api/v1/crates/khronos-egl/4.1.0/download -> khronos-egl-4.1.0.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/lazycell/1.3.0/download -> lazycell-1.3.0.crate https://crates.io/api/v1/crates/lexical-core/0.7.6/download -> lexical-core-0.7.6.crate https://crates.io/api/v1/crates/libc/0.2.109/download -> libc-0.2.109.crate https://crates.io/api/v1/crates/libflate/1.1.1/download -> libflate-1.1.1.crate https://crates.io/api/v1/crates/libflate_lz77/1.1.0/download -> libflate_lz77-1.1.0.crate https://crates.io/api/v1/crates/libloading/0.7.2/download -> libloading-0.7.2.crate https://crates.io/api/v1/crates/libnghttp2-sys/0.1.7+1.45.0/download -> libnghttp2-sys-0.1.7+1.45.0.crate https://crates.io/api/v1/crates/libz-sys/1.1.3/download -> libz-sys-1.1.3.crate https://crates.io/api/v1/crates/lock_api/0.4.5/download -> lock_api-0.4.5.crate https://crates.io/api/v1/crates/log/0.4.14/download -> log-0.4.14.crate https://crates.io/api/v1/crates/lyon/0.17.10/download -> lyon-0.17.10.crate https://crates.io/api/v1/crates/lyon_algorithms/0.17.7/download -> lyon_algorithms-0.17.7.crate https://crates.io/api/v1/crates/lyon_geom/0.17.6/download -> lyon_geom-0.17.6.crate https://crates.io/api/v1/crates/lyon_path/0.17.7/download -> lyon_path-0.17.7.crate https://crates.io/api/v1/crates/lyon_tessellation/0.17.10/download -> lyon_tessellation-0.17.10.crate https://crates.io/api/v1/crates/lzma-rs/0.2.0/download -> lzma-rs-0.2.0.crate https://crates.io/api/v1/crates/mach/0.3.2/download -> mach-0.3.2.crate https://crates.io/api/v1/crates/malloc_buf/0.0.6/download -> malloc_buf-0.0.6.crate https://crates.io/api/v1/crates/matches/0.1.9/download -> matches-0.1.9.crate https://crates.io/api/v1/crates/memchr/2.4.1/download -> memchr-2.4.1.crate https://crates.io/api/v1/crates/memmap2/0.3.1/download -> memmap2-0.3.1.crate https://crates.io/api/v1/crates/memoffset/0.6.5/download -> memoffset-0.6.5.crate https://crates.io/api/v1/crates/metal/0.23.1/download -> metal-0.23.1.crate https://crates.io/api/v1/crates/mime/0.3.16/download -> mime-0.3.16.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/minimp3/0.5.1/download -> minimp3-0.5.1.crate https://crates.io/api/v1/crates/minimp3-sys/0.3.2/download -> minimp3-sys-0.3.2.crate https://crates.io/api/v1/crates/miniz_oxide/0.3.7/download -> miniz_oxide-0.3.7.crate https://crates.io/api/v1/crates/miniz_oxide/0.4.4/download -> miniz_oxide-0.4.4.crate https://crates.io/api/v1/crates/mio/0.8.0/download -> mio-0.8.0.crate https://crates.io/api/v1/crates/miow/0.3.7/download -> miow-0.3.7.crate https://crates.io/api/v1/crates/naga/0.7.2/download -> naga-0.7.2.crate https://crates.io/api/v1/crates/ndk/0.3.0/download -> ndk-0.3.0.crate https://crates.io/api/v1/crates/ndk/0.4.0/download -> ndk-0.4.0.crate https://crates.io/api/v1/crates/ndk/0.5.0/download -> ndk-0.5.0.crate https://crates.io/api/v1/crates/ndk-glue/0.3.0/download -> ndk-glue-0.3.0.crate https://crates.io/api/v1/crates/ndk-glue/0.4.0/download -> ndk-glue-0.4.0.crate https://crates.io/api/v1/crates/ndk-glue/0.5.0/download -> ndk-glue-0.5.0.crate https://crates.io/api/v1/crates/ndk-macro/0.2.0/download -> ndk-macro-0.2.0.crate https://crates.io/api/v1/crates/ndk-macro/0.3.0/download -> ndk-macro-0.3.0.crate https://crates.io/api/v1/crates/ndk-sys/0.2.2/download -> ndk-sys-0.2.2.crate https://crates.io/api/v1/crates/nix/0.20.0/download -> nix-0.20.0.crate https://crates.io/api/v1/crates/nix/0.22.0/download -> nix-0.22.0.crate https://crates.io/api/v1/crates/nom/5.1.2/download -> nom-5.1.2.crate https://crates.io/api/v1/crates/nom/6.1.2/download -> nom-6.1.2.crate https://crates.io/api/v1/crates/nom/7.1.0/download -> nom-7.1.0.crate https://crates.io/api/v1/crates/ntapi/0.3.6/download -> ntapi-0.3.6.crate https://crates.io/api/v1/crates/num-complex/0.3.1/download -> num-complex-0.3.1.crate https://crates.io/api/v1/crates/num-derive/0.3.3/download -> num-derive-0.3.3.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-iter/0.1.42/download -> num-iter-0.1.42.crate https://crates.io/api/v1/crates/num-rational/0.3.2/download -> num-rational-0.3.2.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/num_cpus/1.13.0/download -> num_cpus-1.13.0.crate https://crates.io/api/v1/crates/num_enum/0.5.4/download -> num_enum-0.5.4.crate https://crates.io/api/v1/crates/num_enum_derive/0.5.4/download -> num_enum_derive-0.5.4.crate https://crates.io/api/v1/crates/number_prefix/0.4.0/download -> number_prefix-0.4.0.crate https://crates.io/api/v1/crates/objc/0.2.7/download -> objc-0.2.7.crate https://crates.io/api/v1/crates/objc-foundation/0.1.1/download -> objc-foundation-0.1.1.crate https://crates.io/api/v1/crates/objc_exception/0.1.2/download -> objc_exception-0.1.2.crate https://crates.io/api/v1/crates/objc_id/0.1.1/download -> objc_id-0.1.1.crate https://crates.io/api/v1/crates/oboe/0.4.4/download -> oboe-0.4.4.crate https://crates.io/api/v1/crates/oboe-sys/0.4.4/download -> oboe-sys-0.4.4.crate https://crates.io/api/v1/crates/once_cell/1.8.0/download -> once_cell-1.8.0.crate https://crates.io/api/v1/crates/openssl-probe/0.1.4/download -> openssl-probe-0.1.4.crate https://crates.io/api/v1/crates/openssl-sys/0.9.71/download -> openssl-sys-0.9.71.crate https://crates.io/api/v1/crates/os_str_bytes/4.2.0/download -> os_str_bytes-4.2.0.crate https://crates.io/api/v1/crates/output_vt100/0.1.2/download -> output_vt100-0.1.2.crate https://crates.io/api/v1/crates/parking/2.0.0/download -> parking-2.0.0.crate https://crates.io/api/v1/crates/parking_lot/0.11.2/download -> parking_lot-0.11.2.crate https://crates.io/api/v1/crates/parking_lot_core/0.8.5/download -> parking_lot_core-0.8.5.crate https://crates.io/api/v1/crates/path-slash/0.1.4/download -> path-slash-0.1.4.crate https://crates.io/api/v1/crates/peeking_take_while/0.1.2/download -> peeking_take_while-0.1.2.crate https://crates.io/api/v1/crates/percent-encoding/2.1.0/download -> percent-encoding-2.1.0.crate https://crates.io/api/v1/crates/pin-project/1.0.8/download -> pin-project-1.0.8.crate https://crates.io/api/v1/crates/pin-project-internal/1.0.8/download -> pin-project-internal-1.0.8.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.7/download -> pin-project-lite-0.2.7.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/pkg-config/0.3.22/download -> pkg-config-0.3.22.crate https://crates.io/api/v1/crates/png/0.16.8/download -> png-0.16.8.crate https://crates.io/api/v1/crates/png/0.17.2/download -> png-0.17.2.crate https://crates.io/api/v1/crates/polling/2.2.0/download -> polling-2.2.0.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.15/download -> ppv-lite86-0.2.15.crate https://crates.io/api/v1/crates/pretty_assertions/1.0.0/download -> pretty_assertions-1.0.0.crate https://crates.io/api/v1/crates/primal-check/0.3.1/download -> primal-check-0.3.1.crate https://crates.io/api/v1/crates/proc-macro-crate/0.1.5/download -> proc-macro-crate-0.1.5.crate https://crates.io/api/v1/crates/proc-macro-crate/1.1.0/download -> proc-macro-crate-1.1.0.crate https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download -> proc-macro-error-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download -> proc-macro-error-attr-1.0.4.crate https://crates.io/api/v1/crates/proc-macro2/1.0.32/download -> proc-macro2-1.0.32.crate https://crates.io/api/v1/crates/profiling/1.0.4/download -> profiling-1.0.4.crate https://crates.io/api/v1/crates/quote/1.0.10/download -> quote-1.0.10.crate https://crates.io/api/v1/crates/radium/0.5.3/download -> radium-0.5.3.crate https://crates.io/api/v1/crates/rand/0.8.4/download -> rand-0.8.4.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_core/0.6.3/download -> rand_core-0.6.3.crate https://crates.io/api/v1/crates/range-alloc/0.1.2/download -> range-alloc-0.1.2.crate https://crates.io/api/v1/crates/raw-window-handle/0.3.4/download -> raw-window-handle-0.3.4.crate https://crates.io/api/v1/crates/raw-window-handle/0.4.2/download -> raw-window-handle-0.4.2.crate https://crates.io/api/v1/crates/rayon/1.5.1/download -> rayon-1.5.1.crate https://crates.io/api/v1/crates/rayon-core/1.9.1/download -> rayon-core-1.9.1.crate https://crates.io/api/v1/crates/redox_syscall/0.2.10/download -> redox_syscall-0.2.10.crate https://crates.io/api/v1/crates/redox_users/0.4.0/download -> redox_users-0.4.0.crate https://crates.io/api/v1/crates/regex/1.5.4/download -> regex-1.5.4.crate https://crates.io/api/v1/crates/regex-automata/0.1.10/download -> regex-automata-0.1.10.crate https://crates.io/api/v1/crates/regex-syntax/0.6.25/download -> regex-syntax-0.6.25.crate https://crates.io/api/v1/crates/regress/0.4.1/download -> regress-0.4.1.crate https://crates.io/api/v1/crates/renderdoc-sys/0.7.1/download -> renderdoc-sys-0.7.1.crate https://crates.io/api/v1/crates/rle-decode-fast/1.0.1/download -> rle-decode-fast-1.0.1.crate https://crates.io/api/v1/crates/ron/0.6.6/download -> ron-0.6.6.crate https://crates.io/api/v1/crates/rustc-hash/1.1.0/download -> rustc-hash-1.1.0.crate https://crates.io/api/v1/crates/rustdct/0.6.0/download -> rustdct-0.6.0.crate https://crates.io/api/v1/crates/rustfft/5.1.1/download -> rustfft-5.1.1.crate https://crates.io/api/v1/crates/ryu/1.0.6/download -> ryu-1.0.6.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.19/download -> schannel-0.1.19.crate https://crates.io/api/v1/crates/scoped-tls/1.0.0/download -> scoped-tls-1.0.0.crate https://crates.io/api/v1/crates/scoped_threadpool/0.1.9/download -> scoped_threadpool-0.1.9.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/serde/1.0.131/download -> serde-1.0.131.crate https://crates.io/api/v1/crates/serde_derive/1.0.131/download -> serde_derive-1.0.131.crate https://crates.io/api/v1/crates/serde_json/1.0.72/download -> serde_json-1.0.72.crate https://crates.io/api/v1/crates/sha2/0.10.0/download -> sha2-0.10.0.crate https://crates.io/api/v1/crates/shlex/0.1.1/download -> shlex-0.1.1.crate https://crates.io/api/v1/crates/sid/0.6.1/download -> sid-0.6.1.crate https://crates.io/api/v1/crates/slab/0.4.5/download -> slab-0.4.5.crate https://crates.io/api/v1/crates/slice-deque/0.3.0/download -> slice-deque-0.3.0.crate https://crates.io/api/v1/crates/slotmap/1.0.6/download -> slotmap-1.0.6.crate https://crates.io/api/v1/crates/sluice/0.5.5/download -> sluice-0.5.5.crate https://crates.io/api/v1/crates/smallvec/1.7.0/download -> smallvec-1.7.0.crate https://crates.io/api/v1/crates/smithay-client-toolkit/0.15.2/download -> smithay-client-toolkit-0.15.2.crate https://crates.io/api/v1/crates/socket2/0.4.2/download -> socket2-0.4.2.crate https://crates.io/api/v1/crates/spirv/0.2.0+1.5.4/download -> spirv-0.2.0+1.5.4.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/stdweb/0.1.3/download -> stdweb-0.1.3.crate https://crates.io/api/v1/crates/strength_reduce/0.2.3/download -> strength_reduce-0.2.3.crate https://crates.io/api/v1/crates/strsim/0.10.0/download -> strsim-0.10.0.crate https://crates.io/api/v1/crates/strsim/0.9.3/download -> strsim-0.9.3.crate https://crates.io/api/v1/crates/svg/0.10.0/download -> svg-0.10.0.crate https://crates.io/api/v1/crates/symphonia/0.4.0/download -> symphonia-0.4.0.crate https://crates.io/api/v1/crates/symphonia-bundle-mp3/0.4.0/download -> symphonia-bundle-mp3-0.4.0.crate https://crates.io/api/v1/crates/symphonia-core/0.4.0/download -> symphonia-core-0.4.0.crate https://crates.io/api/v1/crates/symphonia-metadata/0.4.0/download -> symphonia-metadata-0.4.0.crate https://crates.io/api/v1/crates/syn/1.0.82/download -> syn-1.0.82.crate https://crates.io/api/v1/crates/synstructure/0.12.6/download -> synstructure-0.12.6.crate https://crates.io/api/v1/crates/tap/1.0.1/download -> tap-1.0.1.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/terminal_size/0.1.17/download -> terminal_size-0.1.17.crate https://crates.io/api/v1/crates/textwrap/0.14.2/download -> textwrap-0.14.2.crate https://crates.io/api/v1/crates/thiserror/1.0.30/download -> thiserror-1.0.30.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.30/download -> thiserror-impl-1.0.30.crate https://crates.io/api/v1/crates/tiff/0.6.1/download -> tiff-0.6.1.crate https://crates.io/api/v1/crates/time/0.1.43/download -> time-0.1.43.crate https://crates.io/api/v1/crates/tinyfiledialogs/3.8.3/download -> tinyfiledialogs-3.8.3.crate https://crates.io/api/v1/crates/tinyvec/1.5.1/download -> tinyvec-1.5.1.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.0/download -> tinyvec_macros-0.1.0.crate https://crates.io/api/v1/crates/toml/0.5.8/download -> toml-0.5.8.crate https://crates.io/api/v1/crates/tracing/0.1.29/download -> tracing-0.1.29.crate https://crates.io/api/v1/crates/tracing-attributes/0.1.18/download -> tracing-attributes-0.1.18.crate https://crates.io/api/v1/crates/tracing-core/0.1.21/download -> tracing-core-0.1.21.crate https://crates.io/api/v1/crates/tracing-futures/0.2.5/download -> tracing-futures-0.2.5.crate https://crates.io/api/v1/crates/transpose/0.2.1/download -> transpose-0.2.1.crate https://crates.io/api/v1/crates/typenum/1.14.0/download -> typenum-1.14.0.crate https://crates.io/api/v1/crates/unicase/2.6.0/download -> unicase-2.6.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.7/download -> unicode-bidi-0.3.7.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.19/download -> unicode-normalization-0.1.19.crate https://crates.io/api/v1/crates/unicode-segmentation/1.8.0/download -> unicode-segmentation-1.8.0.crate https://crates.io/api/v1/crates/unicode-width/0.1.9/download -> unicode-width-0.1.9.crate https://crates.io/api/v1/crates/unicode-xid/0.2.2/download -> unicode-xid-0.2.2.crate https://crates.io/api/v1/crates/url/2.2.2/download -> url-2.2.2.crate https://crates.io/api/v1/crates/vcpkg/0.2.15/download -> vcpkg-0.2.15.crate https://crates.io/api/v1/crates/version_check/0.9.3/download -> version_check-0.9.3.crate https://crates.io/api/v1/crates/vswhom/0.1.0/download -> vswhom-0.1.0.crate https://crates.io/api/v1/crates/vswhom-sys/0.1.0/download -> vswhom-sys-0.1.0.crate https://crates.io/api/v1/crates/waker-fn/1.1.0/download -> waker-fn-1.1.0.crate https://crates.io/api/v1/crates/walkdir/2.3.2/download -> walkdir-2.3.2.crate https://crates.io/api/v1/crates/wasi/0.10.2+wasi-snapshot-preview1/download -> wasi-0.10.2+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.78/download -> wasm-bindgen-0.2.78.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.78/download -> wasm-bindgen-backend-0.2.78.crate https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.28/download -> wasm-bindgen-futures-0.4.28.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.78/download -> wasm-bindgen-macro-0.2.78.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.78/download -> wasm-bindgen-macro-support-0.2.78.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.78/download -> wasm-bindgen-shared-0.2.78.crate https://crates.io/api/v1/crates/wayland-client/0.29.1/download -> wayland-client-0.29.1.crate https://crates.io/api/v1/crates/wayland-commons/0.29.1/download -> wayland-commons-0.29.1.crate https://crates.io/api/v1/crates/wayland-cursor/0.29.1/download -> wayland-cursor-0.29.1.crate https://crates.io/api/v1/crates/wayland-protocols/0.29.1/download -> wayland-protocols-0.29.1.crate https://crates.io/api/v1/crates/wayland-scanner/0.29.1/download -> wayland-scanner-0.29.1.crate https://crates.io/api/v1/crates/wayland-sys/0.29.1/download -> wayland-sys-0.29.1.crate https://crates.io/api/v1/crates/weak-table/0.3.2/download -> weak-table-0.3.2.crate https://crates.io/api/v1/crates/web-sys/0.3.55/download -> web-sys-0.3.55.crate https://crates.io/api/v1/crates/webbrowser/0.5.5/download -> webbrowser-0.5.5.crate https://crates.io/api/v1/crates/weezl/0.1.5/download -> weezl-0.1.5.crate https://crates.io/api/v1/crates/wepoll-ffi/0.1.2/download -> wepoll-ffi-0.1.2.crate https://crates.io/api/v1/crates/wgpu/0.11.1/download -> wgpu-0.11.1.crate https://crates.io/api/v1/crates/wgpu-core/0.11.3/download -> wgpu-core-0.11.3.crate https://crates.io/api/v1/crates/wgpu-hal/0.11.5/download -> wgpu-hal-0.11.5.crate https://crates.io/api/v1/crates/wgpu-types/0.11.0/download -> wgpu-types-0.11.0.crate https://crates.io/api/v1/crates/widestring/0.4.3/download -> widestring-0.4.3.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.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.5/download -> winapi-util-0.1.5.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/winit/0.26.0/download -> winit-0.26.0.crate https://crates.io/api/v1/crates/winreg/0.10.1/download -> winreg-0.10.1.crate https://crates.io/api/v1/crates/wyz/0.2.0/download -> wyz-0.2.0.crate https://crates.io/api/v1/crates/x11-clipboard/0.3.3/download -> x11-clipboard-0.3.3.crate https://crates.io/api/v1/crates/x11-dl/2.19.1/download -> x11-dl-2.19.1.crate https://crates.io/api/v1/crates/xcb/0.8.2/download -> xcb-0.8.2.crate https://crates.io/api/v1/crates/xcursor/0.3.4/download -> xcursor-0.3.4.crate https://crates.io/api/v1/crates/xml-rs/0.8.4/download -> xml-rs-0.8.4.crate https://github.com/RustAudio/dasp/archive/f05a703d247bb504d7e812b51e95f3765d9c5e94.tar.gz -> dasp-f05a703d247bb504d7e812b51e95f3765d9c5e94.tar.gz https://github.com/ruffle-rs/gc-arena/archive/4931b3bc25b2b74174ff5eb9c34ae0dda732778b.tar.gz -> gc-arena-4931b3bc25b2b74174ff5eb9c34ae0dda732778b.tar.gz https://github.com/ruffle-rs/h263-rs/archive/03dcd486e88381635647a7386105cb802921b69c.tar.gz -> h263-rs-03dcd486e88381635647a7386105cb802921b69c.tar.gz https://github.com/ruffle-rs/nellymoser/archive/77000f763b58021295429ca5740e3dc3b5228cbd.tar.gz -> nellymoser-77000f763b58021295429ca5740e3dc3b5228cbd.tar.gz https://github.com/ruffle-rs/nihav-vp6/archive/9416fcc9fc8aab8f4681aa9093b42922214abbd3.tar.gz -> nihav-vp6-9416fcc9fc8aab8f4681aa9093b42922214abbd3.tar.gz https://github.com/ruffle-rs/quick-xml/archive/8496365ec1412eb5ba5de350937b6bce352fa0ba.tar.gz -> quick-xml-8496365ec1412eb5ba5de350937b6bce352fa0ba.tar.gz https://github.com/ruffle-rs/rust-flash-lso/archive/19fecd07b9888c4bdaa66771c468095783b52bed.tar.gz -> rust-flash-lso-19fecd07b9888c4bdaa66771c468095783b52bed.tar.gz -_eclasses_=cargo c7fefacaebdcb455d2a7b59429eb47a6 desktop c0d27bf73aa08ca05b663dbd31fbef28 flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 13f6d423c5c5bc519a9b552654cc745f python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=faef2abb6fcec4b1744c070f4cb25c05 diff --git a/metadata/md5-cache/app-i18n/Manifest.gz b/metadata/md5-cache/app-i18n/Manifest.gz index 82d8debfc14e..c42f9e67b4c8 100644 Binary files a/metadata/md5-cache/app-i18n/Manifest.gz and b/metadata/md5-cache/app-i18n/Manifest.gz differ diff --git a/metadata/md5-cache/app-i18n/transifex-client-0.14.3 b/metadata/md5-cache/app-i18n/transifex-client-0.14.3 index c4819c23176e..7fe12959ffdd 100644 --- a/metadata/md5-cache/app-i18n/transifex-client-0.14.3 +++ b/metadata/md5-cache/app-i18n/transifex-client-0.14.3 @@ -1,4 +1,4 @@ -BDEPEND=test? ( dev-python/mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) test? ( dev-python/GitPython[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +BDEPEND=test? ( dev-python/mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-python/smmap-5*[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) test? ( dev-python/GitPython[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=A command line interface for Transifex EAPI=7 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://pypi/t/transifex-client/transifex-client-0.14.3.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=adaccca1c8f570791b9b91bbe613f063 +_md5_=0ace04c47662145ec8480d925f8f948d diff --git a/metadata/md5-cache/app-misc/Manifest.gz b/metadata/md5-cache/app-misc/Manifest.gz index 8e233fd61c32..6911be5e6e3c 100644 Binary files a/metadata/md5-cache/app-misc/Manifest.gz and b/metadata/md5-cache/app-misc/Manifest.gz differ diff --git a/metadata/md5-cache/app-misc/evtest-1.34 b/metadata/md5-cache/app-misc/evtest-1.34 index bcf9c3e08d05..1253757109b7 100644 --- a/metadata/md5-cache/app-misc/evtest-1.34 +++ b/metadata/md5-cache/app-misc/evtest-1.34 @@ -1,6 +1,5 @@ -BDEPEND=virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +BDEPEND=app-text/asciidoc app-text/xmlto virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=prepare -DEPEND=app-text/asciidoc app-text/xmlto DESCRIPTION=test program for capturing input device events EAPI=7 HOMEPAGE=https://cgit.freedesktop.org/evtest/ @@ -9,4 +8,4 @@ LICENSE=GPL-2 SLOT=0 SRC_URI=https://cgit.freedesktop.org/evtest/snapshot/evtest-evtest-1.34.tar.gz -> evtest-1.34.tar.gz _eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=2476627c0926f257efed28117f8a5d20 +_md5_=66b9058aa206e4dcfc1d43181fd417da diff --git a/metadata/md5-cache/app-misc/freewvs-0.1.1 b/metadata/md5-cache/app-misc/freewvs-0.1.1 index eb1bf84dbc6a..a3c004547694 100644 --- a/metadata/md5-cache/app-misc/freewvs-0.1.1 +++ b/metadata/md5-cache/app-misc/freewvs-0.1.1 @@ -8,7 +8,8 @@ KEYWORDS=~amd64 LICENSE=CC0-1.0 RDEPEND=python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) +RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/f/freewvs/freewvs-0.1.1.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=6d057e45d13906950b3481941a42c882 +_md5_=c6b88b1195cbb0f2fa122da0518b71e4 diff --git a/metadata/md5-cache/app-misc/tty-clock-2.3 b/metadata/md5-cache/app-misc/tty-clock-2.3 new file mode 100644 index 000000000000..eeb64b8aecef --- /dev/null +++ b/metadata/md5-cache/app-misc/tty-clock-2.3 @@ -0,0 +1,13 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=compile install +DEPEND=sys-libs/ncurses:=[unicode(+)] +DESCRIPTION=Displays a simple digital clock on the terminal +EAPI=8 +HOMEPAGE=https://github.com/xorg62/tty-clock +KEYWORDS=~amd64 ~ppc64 +LICENSE=BSD +RDEPEND=sys-libs/ncurses:=[unicode(+)] +SLOT=0 +SRC_URI=https://github.com/xorg62/tty-clock/archive/refs/tags/v2.3.tar.gz -> tty-clock-2.3.tar.gz +_eclasses_=multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=904b3d86ee9f4722cd2b8369108a76f7 diff --git a/metadata/md5-cache/app-shells/Manifest.gz b/metadata/md5-cache/app-shells/Manifest.gz index 0c1b0b4702f8..9d0c960c47c5 100644 Binary files a/metadata/md5-cache/app-shells/Manifest.gz and b/metadata/md5-cache/app-shells/Manifest.gz differ diff --git a/metadata/md5-cache/app-shells/nushell-0.32.0-r1 b/metadata/md5-cache/app-shells/nushell-0.32.0-r1 deleted file mode 100644 index 61aaf6f59fa3..000000000000 --- a/metadata/md5-cache/app-shells/nushell-0.32.0-r1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=>=virtual/rust-1.51 virtual/pkgconfig >=virtual/rust-1.37.0 -DEFINED_PHASES=compile configure install test unpack -DEPEND=>=dev-libs/libgit2-0.99:= dev-libs/oniguruma:= dev-libs/openssl:0= net-libs/libssh2:= net-libs/nghttp2:= net-misc/curl extra? ( dev-db/sqlite:3= x11-libs/libX11 x11-libs/libxcb ) -DESCRIPTION=A new type of shell, written in Rust -EAPI=7 -HOMEPAGE=https://www.nushell.sh -IUSE=+extra debug -KEYWORDS=~amd64 ~arm64 ~ppc64 -LICENSE=Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD Boost-1.0 CC0-1.0 ISC LGPL-3+ MIT MPL-2.0 Unlicense ZLIB -RDEPEND=>=dev-libs/libgit2-0.99:= dev-libs/oniguruma:= dev-libs/openssl:0= net-libs/libssh2:= net-libs/nghttp2:= net-misc/curl extra? ( dev-db/sqlite:3= x11-libs/libX11 x11-libs/libxcb ) -SLOT=0 -SRC_URI=https://github.com/nushell/nushell/archive/0.32.0.tar.gz -> nushell-0.32.0.tar.gz https://crates.io/api/v1/crates/addr2line/0.14.1/download -> addr2line-0.14.1.crate https://crates.io/api/v1/crates/adler/1.0.2/download -> adler-1.0.2.crate https://crates.io/api/v1/crates/adler32/1.2.0/download -> adler32-1.2.0.crate https://crates.io/api/v1/crates/aead/0.3.2/download -> aead-0.3.2.crate https://crates.io/api/v1/crates/aes/0.6.0/download -> aes-0.6.0.crate https://crates.io/api/v1/crates/aes-gcm/0.8.0/download -> aes-gcm-0.8.0.crate https://crates.io/api/v1/crates/aesni/0.10.0/download -> aesni-0.10.0.crate https://crates.io/api/v1/crates/aes-soft/0.6.4/download -> aes-soft-0.6.4.crate https://crates.io/api/v1/crates/ahash/0.7.2/download -> ahash-0.7.2.crate https://crates.io/api/v1/crates/aho-corasick/0.6.10/download -> aho-corasick-0.6.10.crate https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/alloc-no-stdlib/2.0.1/download -> alloc-no-stdlib-2.0.1.crate https://crates.io/api/v1/crates/alloc-stdlib/0.2.1/download -> alloc-stdlib-0.2.1.crate https://crates.io/api/v1/crates/ansi_colours/1.0.2/download -> ansi_colours-1.0.2.crate https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/anyhow/1.0.40/download -> anyhow-1.0.40.crate https://crates.io/api/v1/crates/arboard/1.2.0/download -> arboard-1.2.0.crate https://crates.io/api/v1/crates/arrayref/0.3.6/download -> arrayref-0.3.6.crate https://crates.io/api/v1/crates/arrayvec/0.4.12/download -> arrayvec-0.4.12.crate https://crates.io/api/v1/crates/arrayvec/0.5.2/download -> arrayvec-0.5.2.crate https://crates.io/api/v1/crates/arrow/4.1.0/download -> arrow-4.1.0.crate https://crates.io/api/v1/crates/as-slice/0.1.5/download -> as-slice-0.1.5.crate https://crates.io/api/v1/crates/async-channel/1.6.1/download -> async-channel-1.6.1.crate https://crates.io/api/v1/crates/async-executor/1.4.1/download -> async-executor-1.4.1.crate https://crates.io/api/v1/crates/async-global-executor/2.0.2/download -> async-global-executor-2.0.2.crate https://crates.io/api/v1/crates/async-io/1.4.1/download -> async-io-1.4.1.crate https://crates.io/api/v1/crates/async-lock/2.4.0/download -> async-lock-2.4.0.crate https://crates.io/api/v1/crates/async-mutex/1.4.0/download -> async-mutex-1.4.0.crate https://crates.io/api/v1/crates/async-recursion/0.3.2/download -> async-recursion-0.3.2.crate https://crates.io/api/v1/crates/async-std/1.9.0/download -> async-std-1.9.0.crate https://crates.io/api/v1/crates/async-task/4.0.3/download -> async-task-4.0.3.crate https://crates.io/api/v1/crates/async-trait/0.1.50/download -> async-trait-0.1.50.crate https://crates.io/api/v1/crates/atomic-waker/1.0.0/download -> atomic-waker-1.0.0.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/backtrace/0.3.58/download -> backtrace-0.3.58.crate https://crates.io/api/v1/crates/base64/0.13.0/download -> base64-0.13.0.crate https://crates.io/api/v1/crates/base64/0.6.0/download -> base64-0.6.0.crate https://crates.io/api/v1/crates/base64/0.9.3/download -> base64-0.9.3.crate https://crates.io/api/v1/crates/base-x/0.2.8/download -> base-x-0.2.8.crate https://crates.io/api/v1/crates/bat/0.17.1/download -> bat-0.17.1.crate https://crates.io/api/v1/crates/bigdecimal/0.2.0/download -> bigdecimal-0.2.0.crate https://crates.io/api/v1/crates/bincode/1.3.3/download -> bincode-1.3.3.crate https://crates.io/api/v1/crates/bitflags/1.2.1/download -> bitflags-1.2.1.crate https://crates.io/api/v1/crates/bit-set/0.5.2/download -> bit-set-0.5.2.crate https://crates.io/api/v1/crates/bit-vec/0.6.3/download -> bit-vec-0.6.3.crate https://crates.io/api/v1/crates/blake2b_simd/0.5.11/download -> blake2b_simd-0.5.11.crate https://crates.io/api/v1/crates/block/0.1.6/download -> block-0.1.6.crate https://crates.io/api/v1/crates/block-buffer/0.2.0/download -> block-buffer-0.2.0.crate https://crates.io/api/v1/crates/block-buffer/0.9.0/download -> block-buffer-0.9.0.crate https://crates.io/api/v1/crates/blocking/1.0.2/download -> blocking-1.0.2.crate https://crates.io/api/v1/crates/brotli/3.3.0/download -> brotli-3.3.0.crate https://crates.io/api/v1/crates/brotli-decompressor/2.3.1/download -> brotli-decompressor-2.3.1.crate https://crates.io/api/v1/crates/bson/0.14.1/download -> bson-0.14.1.crate https://crates.io/api/v1/crates/bstr/0.2.16/download -> bstr-0.2.16.crate https://crates.io/api/v1/crates/bumpalo/3.6.1/download -> bumpalo-3.6.1.crate https://crates.io/api/v1/crates/bytemuck/1.5.1/download -> bytemuck-1.5.1.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes/0.4.12/download -> bytes-0.4.12.crate https://crates.io/api/v1/crates/bytes/0.5.6/download -> bytes-0.5.6.crate https://crates.io/api/v1/crates/bytes/1.0.1/download -> bytes-1.0.1.crate https://crates.io/api/v1/crates/byte-tools/0.2.0/download -> byte-tools-0.2.0.crate https://crates.io/api/v1/crates/byte-unit/4.0.11/download -> byte-unit-4.0.11.crate https://crates.io/api/v1/crates/bzip2/0.3.3/download -> bzip2-0.3.3.crate https://crates.io/api/v1/crates/bzip2-sys/0.1.10+1.0.8/download -> bzip2-sys-0.1.10+1.0.8.crate https://crates.io/api/v1/crates/cache-padded/1.1.1/download -> cache-padded-1.1.1.crate https://crates.io/api/v1/crates/calamine/0.17.0/download -> calamine-0.17.0.crate https://crates.io/api/v1/crates/cassowary/0.3.0/download -> cassowary-0.3.0.crate https://crates.io/api/v1/crates/cc/1.0.67/download -> cc-1.0.67.crate https://crates.io/api/v1/crates/cfg_aliases/0.1.1/download -> cfg_aliases-0.1.1.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/chrono-tz/0.5.3/download -> chrono-tz-0.5.3.crate https://crates.io/api/v1/crates/cipher/0.2.5/download -> cipher-0.2.5.crate https://crates.io/api/v1/crates/clap/2.33.3/download -> clap-2.33.3.crate https://crates.io/api/v1/crates/clipboard-win/4.1.0/download -> clipboard-win-4.1.0.crate https://crates.io/api/v1/crates/cloudabi/0.0.3/download -> cloudabi-0.0.3.crate https://crates.io/api/v1/crates/codepage/0.1.1/download -> codepage-0.1.1.crate https://crates.io/api/v1/crates/codespan-reporting/0.11.1/download -> codespan-reporting-0.11.1.crate https://crates.io/api/v1/crates/colored/1.9.3/download -> colored-1.9.3.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/common-path/1.0.0/download -> common-path-1.0.0.crate https://crates.io/api/v1/crates/concurrent-queue/1.2.2/download -> concurrent-queue-1.2.2.crate https://crates.io/api/v1/crates/config/0.10.1/download -> config-0.10.1.crate https://crates.io/api/v1/crates/console/0.13.0/download -> console-0.13.0.crate https://crates.io/api/v1/crates/constant_time_eq/0.1.5/download -> constant_time_eq-0.1.5.crate https://crates.io/api/v1/crates/const_fn/0.4.7/download -> const_fn-0.4.7.crate https://crates.io/api/v1/crates/content_inspector/0.2.4/download -> content_inspector-0.2.4.crate https://crates.io/api/v1/crates/convert_case/0.4.0/download -> convert_case-0.4.0.crate https://crates.io/api/v1/crates/cookie/0.14.4/download -> cookie-0.14.4.crate https://crates.io/api/v1/crates/core-foundation/0.9.1/download -> core-foundation-0.9.1.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.2/download -> core-foundation-sys-0.8.2.crate https://crates.io/api/v1/crates/core-graphics/0.21.0/download -> core-graphics-0.21.0.crate https://crates.io/api/v1/crates/cpuid-bool/0.1.2/download -> cpuid-bool-0.1.2.crate https://crates.io/api/v1/crates/cpuid-bool/0.2.0/download -> cpuid-bool-0.2.0.crate https://crates.io/api/v1/crates/crc32fast/1.2.1/download -> crc32fast-1.2.1.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.1/download -> crossbeam-channel-0.5.1.crate https://crates.io/api/v1/crates/crossbeam-deque/0.7.3/download -> crossbeam-deque-0.7.3.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.0/download -> crossbeam-deque-0.8.0.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.8.2/download -> crossbeam-epoch-0.8.2.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.4/download -> crossbeam-epoch-0.9.4.crate https://crates.io/api/v1/crates/crossbeam-queue/0.2.3/download -> crossbeam-queue-0.2.3.crate https://crates.io/api/v1/crates/crossbeam-utils/0.7.2/download -> crossbeam-utils-0.7.2.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.4/download -> crossbeam-utils-0.8.4.crate https://crates.io/api/v1/crates/crossterm/0.18.2/download -> crossterm-0.18.2.crate https://crates.io/api/v1/crates/crossterm/0.19.0/download -> crossterm-0.19.0.crate https://crates.io/api/v1/crates/crossterm_winapi/0.6.2/download -> crossterm_winapi-0.6.2.crate https://crates.io/api/v1/crates/crossterm_winapi/0.7.0/download -> crossterm_winapi-0.7.0.crate https://crates.io/api/v1/crates/crypto-mac/0.10.0/download -> crypto-mac-0.10.0.crate https://crates.io/api/v1/crates/crypto-mac/0.4.0/download -> crypto-mac-0.4.0.crate https://crates.io/api/v1/crates/cssparser/0.27.2/download -> cssparser-0.27.2.crate https://crates.io/api/v1/crates/cssparser-macros/0.6.0/download -> cssparser-macros-0.6.0.crate https://crates.io/api/v1/crates/cstr_core/0.2.3/download -> cstr_core-0.2.3.crate https://crates.io/api/v1/crates/csv/1.1.6/download -> csv-1.1.6.crate https://crates.io/api/v1/crates/csv-core/0.1.10/download -> csv-core-0.1.10.crate https://crates.io/api/v1/crates/ctor/0.1.20/download -> ctor-0.1.20.crate https://crates.io/api/v1/crates/ctr/0.6.0/download -> ctr-0.6.0.crate https://crates.io/api/v1/crates/ctrlc/3.1.9/download -> ctrlc-3.1.9.crate https://crates.io/api/v1/crates/cty/0.2.1/download -> cty-0.2.1.crate https://crates.io/api/v1/crates/curl/0.4.36/download -> curl-0.4.36.crate https://crates.io/api/v1/crates/curl-sys/0.4.42+curl-7.76.0/download -> curl-sys-0.4.42+curl-7.76.0.crate https://crates.io/api/v1/crates/dashmap/4.0.2/download -> dashmap-4.0.2.crate https://crates.io/api/v1/crates/data-encoding/2.3.2/download -> data-encoding-2.3.2.crate https://crates.io/api/v1/crates/decimal/2.1.0/download -> decimal-2.1.0.crate https://crates.io/api/v1/crates/deflate/0.7.20/download -> deflate-0.7.20.crate https://crates.io/api/v1/crates/deflate/0.8.6/download -> deflate-0.8.6.crate https://crates.io/api/v1/crates/derive_is_enum_variant/0.1.1/download -> derive_is_enum_variant-0.1.1.crate https://crates.io/api/v1/crates/derive_more/0.99.13/download -> derive_more-0.99.13.crate https://crates.io/api/v1/crates/derive-new/0.5.9/download -> derive-new-0.5.9.crate https://crates.io/api/v1/crates/digest/0.6.2/download -> digest-0.6.2.crate https://crates.io/api/v1/crates/digest/0.9.0/download -> digest-0.9.0.crate https://crates.io/api/v1/crates/directories/3.0.2/download -> directories-3.0.2.crate https://crates.io/api/v1/crates/directories-next/2.0.0/download -> directories-next-2.0.0.crate https://crates.io/api/v1/crates/dirs/1.0.5/download -> dirs-1.0.5.crate https://crates.io/api/v1/crates/dirs/3.0.2/download -> dirs-3.0.2.crate https://crates.io/api/v1/crates/dirs-next/2.0.0/download -> dirs-next-2.0.0.crate https://crates.io/api/v1/crates/dirs-sys/0.3.6/download -> dirs-sys-0.3.6.crate https://crates.io/api/v1/crates/dirs-sys-next/0.1.2/download -> dirs-sys-next-0.1.2.crate https://crates.io/api/v1/crates/discard/1.0.4/download -> discard-1.0.4.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/dtoa/0.4.8/download -> dtoa-0.4.8.crate https://crates.io/api/v1/crates/dtoa-short/0.3.3/download -> dtoa-short-0.3.3.crate https://crates.io/api/v1/crates/dtparse/1.2.0/download -> dtparse-1.2.0.crate https://crates.io/api/v1/crates/dunce/1.0.1/download -> dunce-1.0.1.crate https://crates.io/api/v1/crates/dyn-clone/1.0.4/download -> dyn-clone-1.0.4.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/eml-parser/0.1.2/download -> eml-parser-0.1.2.crate https://crates.io/api/v1/crates/encode_unicode/0.3.6/download -> encode_unicode-0.3.6.crate https://crates.io/api/v1/crates/encoding/0.2.33/download -> encoding-0.2.33.crate https://crates.io/api/v1/crates/encoding-index-japanese/1.20141219.5/download -> encoding-index-japanese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-korean/1.20141219.5/download -> encoding-index-korean-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-simpchinese/1.20141219.5/download -> encoding-index-simpchinese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-singlebyte/1.20141219.5/download -> encoding-index-singlebyte-1.20141219.5.crate https://crates.io/api/v1/crates/encoding_index_tests/0.1.4/download -> encoding_index_tests-0.1.4.crate https://crates.io/api/v1/crates/encoding-index-tradchinese/1.20141219.5/download -> encoding-index-tradchinese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding_rs/0.8.28/download -> encoding_rs-0.8.28.crate https://crates.io/api/v1/crates/endian-type/0.1.2/download -> endian-type-0.1.2.crate https://crates.io/api/v1/crates/env_logger/0.7.1/download -> env_logger-0.7.1.crate https://crates.io/api/v1/crates/env_logger/0.8.3/download -> env_logger-0.8.3.crate https://crates.io/api/v1/crates/error-chain/0.12.4/download -> error-chain-0.12.4.crate https://crates.io/api/v1/crates/error-code/2.2.0/download -> error-code-2.2.0.crate https://crates.io/api/v1/crates/event-listener/2.5.1/download -> event-listener-2.5.1.crate https://crates.io/api/v1/crates/failure/0.1.8/download -> failure-0.1.8.crate https://crates.io/api/v1/crates/failure_derive/0.1.8/download -> failure_derive-0.1.8.crate https://crates.io/api/v1/crates/fake-simd/0.1.2/download -> fake-simd-0.1.2.crate https://crates.io/api/v1/crates/fallible-iterator/0.2.0/download -> fallible-iterator-0.2.0.crate https://crates.io/api/v1/crates/fallible-streaming-iterator/0.1.9/download -> fallible-streaming-iterator-0.1.9.crate https://crates.io/api/v1/crates/fancy-regex/0.3.5/download -> fancy-regex-0.3.5.crate https://crates.io/api/v1/crates/fast-float/0.2.0/download -> fast-float-0.2.0.crate https://crates.io/api/v1/crates/fastrand/1.4.1/download -> fastrand-1.4.1.crate https://crates.io/api/v1/crates/fd-lock/2.0.0/download -> fd-lock-2.0.0.crate https://crates.io/api/v1/crates/filesize/0.2.0/download -> filesize-0.2.0.crate https://crates.io/api/v1/crates/fixedbitset/0.2.0/download -> fixedbitset-0.2.0.crate https://crates.io/api/v1/crates/flatbuffers/0.8.4/download -> flatbuffers-0.8.4.crate https://crates.io/api/v1/crates/flate2/1.0.20/download -> flate2-1.0.20.crate https://crates.io/api/v1/crates/flume/0.9.2/download -> flume-0.9.2.crate https://crates.io/api/v1/crates/fnv/1.0.7/download -> fnv-1.0.7.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/foreign-types-shared/0.1.1/download -> foreign-types-shared-0.1.1.crate https://crates.io/api/v1/crates/form_urlencoded/1.0.1/download -> form_urlencoded-1.0.1.crate https://crates.io/api/v1/crates/fs_extra/1.2.0/download -> fs_extra-1.2.0.crate https://crates.io/api/v1/crates/fuchsia-cprng/0.1.1/download -> fuchsia-cprng-0.1.1.crate https://crates.io/api/v1/crates/fuchsia-zircon/0.3.3/download -> fuchsia-zircon-0.3.3.crate https://crates.io/api/v1/crates/fuchsia-zircon-sys/0.3.3/download -> fuchsia-zircon-sys-0.3.3.crate https://crates.io/api/v1/crates/futf/0.1.4/download -> futf-0.1.4.crate https://crates.io/api/v1/crates/futures/0.1.31/download -> futures-0.1.31.crate https://crates.io/api/v1/crates/futures/0.3.14/download -> futures-0.3.14.crate https://crates.io/api/v1/crates/futures-channel/0.3.14/download -> futures-channel-0.3.14.crate https://crates.io/api/v1/crates/futures_codec/0.4.1/download -> futures_codec-0.4.1.crate https://crates.io/api/v1/crates/futures-core/0.3.14/download -> futures-core-0.3.14.crate https://crates.io/api/v1/crates/futures-cpupool/0.1.8/download -> futures-cpupool-0.1.8.crate https://crates.io/api/v1/crates/futures-executor/0.3.14/download -> futures-executor-0.3.14.crate https://crates.io/api/v1/crates/futures-io/0.3.14/download -> futures-io-0.3.14.crate https://crates.io/api/v1/crates/futures-lite/1.11.3/download -> futures-lite-1.11.3.crate https://crates.io/api/v1/crates/futures-macro/0.3.14/download -> futures-macro-0.3.14.crate https://crates.io/api/v1/crates/futures-sink/0.3.14/download -> futures-sink-0.3.14.crate https://crates.io/api/v1/crates/futures-task/0.3.14/download -> futures-task-0.3.14.crate https://crates.io/api/v1/crates/futures-timer/3.0.2/download -> futures-timer-3.0.2.crate https://crates.io/api/v1/crates/futures-util/0.3.14/download -> futures-util-0.3.14.crate https://crates.io/api/v1/crates/fxhash/0.2.1/download -> fxhash-0.2.1.crate https://crates.io/api/v1/crates/gcc/0.3.55/download -> gcc-0.3.55.crate https://crates.io/api/v1/crates/generic-array/0.12.4/download -> generic-array-0.12.4.crate https://crates.io/api/v1/crates/generic-array/0.13.3/download -> generic-array-0.13.3.crate https://crates.io/api/v1/crates/generic-array/0.14.4/download -> generic-array-0.14.4.crate https://crates.io/api/v1/crates/generic-array/0.8.4/download -> generic-array-0.8.4.crate https://crates.io/api/v1/crates/gethostname/0.2.1/download -> gethostname-0.2.1.crate https://crates.io/api/v1/crates/getrandom/0.1.16/download -> getrandom-0.1.16.crate https://crates.io/api/v1/crates/getrandom/0.2.2/download -> getrandom-0.2.2.crate https://crates.io/api/v1/crates/getset/0.1.1/download -> getset-0.1.1.crate https://crates.io/api/v1/crates/ghash/0.3.1/download -> ghash-0.3.1.crate https://crates.io/api/v1/crates/gimli/0.23.0/download -> gimli-0.23.0.crate https://crates.io/api/v1/crates/git2/0.13.18/download -> git2-0.13.18.crate https://crates.io/api/v1/crates/gjson/0.7.5/download -> gjson-0.7.5.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.crate https://crates.io/api/v1/crates/globset/0.4.6/download -> globset-0.4.6.crate https://crates.io/api/v1/crates/gloo-timers/0.2.1/download -> gloo-timers-0.2.1.crate https://crates.io/api/v1/crates/h2/0.2.7/download -> h2-0.2.7.crate https://crates.io/api/v1/crates/hamcrest2/0.3.0/download -> hamcrest2-0.3.0.crate https://crates.io/api/v1/crates/hash32/0.1.1/download -> hash32-0.1.1.crate https://crates.io/api/v1/crates/hashbrown/0.11.2/download -> hashbrown-0.11.2.crate https://crates.io/api/v1/crates/hashbrown/0.9.1/download -> hashbrown-0.9.1.crate https://crates.io/api/v1/crates/hashlink/0.7.0/download -> hashlink-0.7.0.crate https://crates.io/api/v1/crates/heapless/0.6.1/download -> heapless-0.6.1.crate https://crates.io/api/v1/crates/heck/0.3.2/download -> heck-0.3.2.crate https://crates.io/api/v1/crates/hermit-abi/0.1.18/download -> hermit-abi-0.1.18.crate https://crates.io/api/v1/crates/hex/0.3.2/download -> hex-0.3.2.crate https://crates.io/api/v1/crates/hex/0.4.3/download -> hex-0.4.3.crate https://crates.io/api/v1/crates/hkdf/0.10.0/download -> hkdf-0.10.0.crate https://crates.io/api/v1/crates/hmac/0.10.1/download -> hmac-0.10.1.crate https://crates.io/api/v1/crates/hmac/0.4.2/download -> hmac-0.4.2.crate https://crates.io/api/v1/crates/hmac-sha1/0.1.3/download -> hmac-sha1-0.1.3.crate https://crates.io/api/v1/crates/html5ever/0.25.1/download -> html5ever-0.25.1.crate https://crates.io/api/v1/crates/htmlescape/0.3.1/download -> htmlescape-0.3.1.crate https://crates.io/api/v1/crates/http/0.2.4/download -> http-0.2.4.crate https://crates.io/api/v1/crates/httparse/1.4.0/download -> httparse-1.4.0.crate https://crates.io/api/v1/crates/http-body/0.3.1/download -> http-body-0.3.1.crate https://crates.io/api/v1/crates/http-client/6.3.5/download -> http-client-6.3.5.crate https://crates.io/api/v1/crates/httpdate/0.3.2/download -> httpdate-0.3.2.crate https://crates.io/api/v1/crates/http-types/2.11.0/download -> http-types-2.11.0.crate https://crates.io/api/v1/crates/humantime/1.3.0/download -> humantime-1.3.0.crate https://crates.io/api/v1/crates/hyper/0.11.27/download -> hyper-0.11.27.crate https://crates.io/api/v1/crates/hyper/0.13.10/download -> hyper-0.13.10.crate https://crates.io/api/v1/crates/hyper-tls/0.4.3/download -> hyper-tls-0.4.3.crate https://crates.io/api/v1/crates/ical/0.7.0/download -> ical-0.7.0.crate https://crates.io/api/v1/crates/idna/0.2.3/download -> idna-0.2.3.crate https://crates.io/api/v1/crates/image/0.22.5/download -> image-0.22.5.crate https://crates.io/api/v1/crates/image/0.23.14/download -> image-0.23.14.crate https://crates.io/api/v1/crates/indexmap/1.6.2/download -> indexmap-1.6.2.crate https://crates.io/api/v1/crates/infer/0.2.3/download -> infer-0.2.3.crate https://crates.io/api/v1/crates/inflate/0.4.5/download -> inflate-0.4.5.crate https://crates.io/api/v1/crates/Inflector/0.11.4/download -> Inflector-0.11.4.crate https://crates.io/api/v1/crates/instant/0.1.9/download -> instant-0.1.9.crate https://crates.io/api/v1/crates/integer-encoding/1.1.7/download -> integer-encoding-1.1.7.crate https://crates.io/api/v1/crates/iovec/0.1.4/download -> iovec-0.1.4.crate https://crates.io/api/v1/crates/ipnet/2.3.0/download -> ipnet-2.3.0.crate https://crates.io/api/v1/crates/isahc/0.9.14/download -> isahc-0.9.14.crate https://crates.io/api/v1/crates/itertools/0.10.0/download -> itertools-0.10.0.crate https://crates.io/api/v1/crates/itoa/0.4.7/download -> itoa-0.4.7.crate https://crates.io/api/v1/crates/jobserver/0.1.22/download -> jobserver-0.1.22.crate https://crates.io/api/v1/crates/jpeg-decoder/0.1.22/download -> jpeg-decoder-0.1.22.crate https://crates.io/api/v1/crates/js-sys/0.3.50/download -> js-sys-0.3.50.crate https://crates.io/api/v1/crates/kernel32-sys/0.2.2/download -> kernel32-sys-0.2.2.crate https://crates.io/api/v1/crates/kv-log-macro/1.0.7/download -> kv-log-macro-1.0.7.crate https://crates.io/api/v1/crates/language-tags/0.2.2/download -> language-tags-0.2.2.crate https://crates.io/api/v1/crates/lazycell/1.3.0/download -> lazycell-1.3.0.crate https://crates.io/api/v1/crates/lazy_static/0.2.11/download -> lazy_static-0.2.11.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/lexical/5.2.2/download -> lexical-5.2.2.crate https://crates.io/api/v1/crates/lexical-core/0.7.6/download -> lexical-core-0.7.6.crate https://crates.io/api/v1/crates/libc/0.2.94/download -> libc-0.2.94.crate https://crates.io/api/v1/crates/libgit2-sys/0.12.19+1.1.0/download -> libgit2-sys-0.12.19+1.1.0.crate https://crates.io/api/v1/crates/libm/0.2.1/download -> libm-0.2.1.crate https://crates.io/api/v1/crates/libnghttp2-sys/0.1.6+1.43.0/download -> libnghttp2-sys-0.1.6+1.43.0.crate https://crates.io/api/v1/crates/libsqlite3-sys/0.22.2/download -> libsqlite3-sys-0.22.2.crate https://crates.io/api/v1/crates/libz-sys/1.1.3/download -> libz-sys-1.1.3.crate https://crates.io/api/v1/crates/line-wrap/0.1.1/download -> line-wrap-0.1.1.crate https://crates.io/api/v1/crates/linked-hash-map/0.3.0/download -> linked-hash-map-0.3.0.crate https://crates.io/api/v1/crates/linked-hash-map/0.5.4/download -> linked-hash-map-0.5.4.crate https://crates.io/api/v1/crates/lock_api/0.3.4/download -> lock_api-0.3.4.crate https://crates.io/api/v1/crates/lock_api/0.4.4/download -> lock_api-0.4.4.crate https://crates.io/api/v1/crates/log/0.3.9/download -> log-0.3.9.crate https://crates.io/api/v1/crates/log/0.4.14/download -> log-0.4.14.crate https://crates.io/api/v1/crates/lz4/1.23.2/download -> lz4-1.23.2.crate https://crates.io/api/v1/crates/lz4-sys/1.9.2/download -> lz4-sys-1.9.2.crate https://crates.io/api/v1/crates/mac/0.1.1/download -> mac-0.1.1.crate https://crates.io/api/v1/crates/malloc_buf/0.0.6/download -> malloc_buf-0.0.6.crate https://crates.io/api/v1/crates/markup5ever/0.10.1/download -> markup5ever-0.10.1.crate https://crates.io/api/v1/crates/matches/0.1.8/download -> matches-0.1.8.crate https://crates.io/api/v1/crates/maybe-uninit/2.0.0/download -> maybe-uninit-2.0.0.crate https://crates.io/api/v1/crates/md5/0.3.8/download -> md5-0.3.8.crate https://crates.io/api/v1/crates/md5/0.6.1/download -> md5-0.6.1.crate https://crates.io/api/v1/crates/md5/0.7.0/download -> md5-0.7.0.crate https://crates.io/api/v1/crates/memchr/2.4.0/download -> memchr-2.4.0.crate https://crates.io/api/v1/crates/memmap2/0.2.2/download -> memmap2-0.2.2.crate https://crates.io/api/v1/crates/memoffset/0.5.6/download -> memoffset-0.5.6.crate https://crates.io/api/v1/crates/memoffset/0.6.3/download -> memoffset-0.6.3.crate https://crates.io/api/v1/crates/meval/0.2.0/download -> meval-0.2.0.crate https://crates.io/api/v1/crates/mime/0.3.16/download -> mime-0.3.16.crate https://crates.io/api/v1/crates/mime_guess/2.0.3/download -> mime_guess-2.0.3.crate https://crates.io/api/v1/crates/miniz_oxide/0.3.7/download -> miniz_oxide-0.3.7.crate https://crates.io/api/v1/crates/miniz_oxide/0.4.4/download -> miniz_oxide-0.4.4.crate https://crates.io/api/v1/crates/minus/3.3.3/download -> minus-3.3.3.crate https://crates.io/api/v1/crates/mio/0.6.23/download -> mio-0.6.23.crate https://crates.io/api/v1/crates/mio/0.7.11/download -> mio-0.7.11.crate https://crates.io/api/v1/crates/mio-uds/0.6.8/download -> mio-uds-0.6.8.crate https://crates.io/api/v1/crates/miow/0.2.2/download -> miow-0.2.2.crate https://crates.io/api/v1/crates/miow/0.3.7/download -> miow-0.3.7.crate https://crates.io/api/v1/crates/multiversion/0.6.1/download -> multiversion-0.6.1.crate https://crates.io/api/v1/crates/multiversion-macros/0.6.1/download -> multiversion-macros-0.6.1.crate https://crates.io/api/v1/crates/native-tls/0.2.7/download -> native-tls-0.2.7.crate https://crates.io/api/v1/crates/neso/0.5.0/download -> neso-0.5.0.crate https://crates.io/api/v1/crates/net2/0.2.37/download -> net2-0.2.37.crate https://crates.io/api/v1/crates/new_debug_unreachable/1.0.4/download -> new_debug_unreachable-1.0.4.crate https://crates.io/api/v1/crates/nibble_vec/0.1.0/download -> nibble_vec-0.1.0.crate https://crates.io/api/v1/crates/nipper/0.1.9/download -> nipper-0.1.9.crate https://crates.io/api/v1/crates/nix/0.20.0/download -> nix-0.20.0.crate https://crates.io/api/v1/crates/nodrop/0.1.14/download -> nodrop-0.1.14.crate https://crates.io/api/v1/crates/nom/1.2.4/download -> nom-1.2.4.crate https://crates.io/api/v1/crates/nom/5.1.2/download -> nom-5.1.2.crate https://crates.io/api/v1/crates/ntapi/0.3.6/download -> ntapi-0.3.6.crate https://crates.io/api/v1/crates/num/0.2.1/download -> num-0.2.1.crate https://crates.io/api/v1/crates/num/0.4.0/download -> num-0.4.0.crate https://crates.io/api/v1/crates/num-bigint/0.2.6/download -> num-bigint-0.2.6.crate https://crates.io/api/v1/crates/num-bigint/0.3.2/download -> num-bigint-0.3.2.crate https://crates.io/api/v1/crates/num-bigint/0.4.0/download -> num-bigint-0.4.0.crate https://crates.io/api/v1/crates/num-complex/0.2.4/download -> num-complex-0.2.4.crate https://crates.io/api/v1/crates/num-complex/0.4.0/download -> num-complex-0.4.0.crate https://crates.io/api/v1/crates/num_cpus/1.13.0/download -> num_cpus-1.13.0.crate https://crates.io/api/v1/crates/num-format/0.4.0/download -> num-format-0.4.0.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-iter/0.1.42/download -> num-iter-0.1.42.crate https://crates.io/api/v1/crates/num-rational/0.2.4/download -> num-rational-0.2.4.crate https://crates.io/api/v1/crates/num-rational/0.3.2/download -> num-rational-0.3.2.crate https://crates.io/api/v1/crates/num-rational/0.4.0/download -> num-rational-0.4.0.crate https://crates.io/api/v1/crates/num-traits/0.1.43/download -> num-traits-0.1.43.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/objc/0.2.7/download -> objc-0.2.7.crate https://crates.io/api/v1/crates/objc-foundation/0.1.1/download -> objc-foundation-0.1.1.crate https://crates.io/api/v1/crates/objc_id/0.1.1/download -> objc_id-0.1.1.crate https://crates.io/api/v1/crates/object/0.23.0/download -> object-0.23.0.crate https://crates.io/api/v1/crates/once_cell/1.7.2/download -> once_cell-1.7.2.crate https://crates.io/api/v1/crates/onig/6.1.1/download -> onig-6.1.1.crate https://crates.io/api/v1/crates/onig_sys/69.6.0/download -> onig_sys-69.6.0.crate https://crates.io/api/v1/crates/opaque-debug/0.3.0/download -> opaque-debug-0.3.0.crate https://crates.io/api/v1/crates/open/1.7.0/download -> open-1.7.0.crate https://crates.io/api/v1/crates/openssl/0.10.34/download -> openssl-0.10.34.crate https://crates.io/api/v1/crates/openssl-probe/0.1.2/download -> openssl-probe-0.1.2.crate https://crates.io/api/v1/crates/openssl-sys/0.9.62/download -> openssl-sys-0.9.62.crate https://crates.io/api/v1/crates/ordered-float/1.1.1/download -> ordered-float-1.1.1.crate https://crates.io/api/v1/crates/parking/2.0.0/download -> parking-2.0.0.crate https://crates.io/api/v1/crates/parking_lot/0.11.1/download -> parking_lot-0.11.1.crate https://crates.io/api/v1/crates/parking_lot/0.9.0/download -> parking_lot-0.9.0.crate https://crates.io/api/v1/crates/parking_lot_core/0.6.2/download -> parking_lot_core-0.6.2.crate https://crates.io/api/v1/crates/parking_lot_core/0.8.3/download -> parking_lot_core-0.8.3.crate https://crates.io/api/v1/crates/parquet/4.1.0/download -> parquet-4.1.0.crate https://crates.io/api/v1/crates/parquet-format/2.6.1/download -> parquet-format-2.6.1.crate https://crates.io/api/v1/crates/parse-zoneinfo/0.3.0/download -> parse-zoneinfo-0.3.0.crate https://crates.io/api/v1/crates/path_abs/0.5.1/download -> path_abs-0.5.1.crate https://crates.io/api/v1/crates/percent-encoding/1.0.1/download -> percent-encoding-1.0.1.crate https://crates.io/api/v1/crates/percent-encoding/2.1.0/download -> percent-encoding-2.1.0.crate https://crates.io/api/v1/crates/peresil/0.3.0/download -> peresil-0.3.0.crate https://crates.io/api/v1/crates/pest/2.1.3/download -> pest-2.1.3.crate https://crates.io/api/v1/crates/petgraph/0.5.1/download -> petgraph-0.5.1.crate https://crates.io/api/v1/crates/phf/0.8.0/download -> phf-0.8.0.crate https://crates.io/api/v1/crates/phf_codegen/0.8.0/download -> phf_codegen-0.8.0.crate https://crates.io/api/v1/crates/phf_generator/0.8.0/download -> phf_generator-0.8.0.crate https://crates.io/api/v1/crates/phf_macros/0.8.0/download -> phf_macros-0.8.0.crate https://crates.io/api/v1/crates/phf_shared/0.8.0/download -> phf_shared-0.8.0.crate https://crates.io/api/v1/crates/pin-project/0.4.28/download -> pin-project-0.4.28.crate https://crates.io/api/v1/crates/pin-project/1.0.7/download -> pin-project-1.0.7.crate https://crates.io/api/v1/crates/pin-project-internal/0.4.28/download -> pin-project-internal-0.4.28.crate https://crates.io/api/v1/crates/pin-project-internal/1.0.7/download -> pin-project-internal-1.0.7.crate https://crates.io/api/v1/crates/pin-project-lite/0.1.12/download -> pin-project-lite-0.1.12.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.6/download -> pin-project-lite-0.2.6.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/pkg-config/0.3.19/download -> pkg-config-0.3.19.crate https://crates.io/api/v1/crates/plist/1.1.0/download -> plist-1.1.0.crate https://crates.io/api/v1/crates/png/0.15.3/download -> png-0.15.3.crate https://crates.io/api/v1/crates/png/0.16.8/download -> png-0.16.8.crate https://crates.io/api/v1/crates/polars/0.13.4/download -> polars-0.13.4.crate https://crates.io/api/v1/crates/polars-arrow/0.13.4/download -> polars-arrow-0.13.4.crate https://crates.io/api/v1/crates/polars-core/0.13.4/download -> polars-core-0.13.4.crate https://crates.io/api/v1/crates/polars-io/0.13.4/download -> polars-io-0.13.4.crate https://crates.io/api/v1/crates/polars-lazy/0.13.4/download -> polars-lazy-0.13.4.crate https://crates.io/api/v1/crates/polling/2.0.3/download -> polling-2.0.3.crate https://crates.io/api/v1/crates/polyval/0.4.5/download -> polyval-0.4.5.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.10/download -> ppv-lite86-0.2.10.crate https://crates.io/api/v1/crates/precomputed-hash/0.1.1/download -> precomputed-hash-0.1.1.crate https://crates.io/api/v1/crates/pretty/0.5.2/download -> pretty-0.5.2.crate https://crates.io/api/v1/crates/pretty_env_logger/0.4.0/download -> pretty_env_logger-0.4.0.crate https://crates.io/api/v1/crates/prettytable-rs/0.8.0/download -> prettytable-rs-0.8.0.crate https://crates.io/api/v1/crates/proc-macro2/1.0.26/download -> proc-macro2-1.0.26.crate https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download -> proc-macro-error-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download -> proc-macro-error-attr-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-hack/0.5.19/download -> proc-macro-hack-0.5.19.crate https://crates.io/api/v1/crates/proc-macro-nested/0.1.7/download -> proc-macro-nested-0.1.7.crate https://crates.io/api/v1/crates/ptree/0.3.2/download -> ptree-0.3.2.crate https://crates.io/api/v1/crates/query_interface/0.3.5/download -> query_interface-0.3.5.crate https://crates.io/api/v1/crates/quickcheck/1.0.3/download -> quickcheck-1.0.3.crate https://crates.io/api/v1/crates/quickcheck_macros/1.0.0/download -> quickcheck_macros-1.0.0.crate https://crates.io/api/v1/crates/quick-error/1.2.3/download -> quick-error-1.2.3.crate https://crates.io/api/v1/crates/quick-xml/0.12.4/download -> quick-xml-0.12.4.crate https://crates.io/api/v1/crates/quick-xml/0.19.0/download -> quick-xml-0.19.0.crate https://crates.io/api/v1/crates/quick-xml/0.21.0/download -> quick-xml-0.21.0.crate https://crates.io/api/v1/crates/quote/0.3.15/download -> quote-0.3.15.crate https://crates.io/api/v1/crates/quote/1.0.9/download -> quote-1.0.9.crate https://crates.io/api/v1/crates/radix_trie/0.2.1/download -> radix_trie-0.2.1.crate https://crates.io/api/v1/crates/rand/0.3.23/download -> rand-0.3.23.crate https://crates.io/api/v1/crates/rand/0.4.6/download -> rand-0.4.6.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand/0.8.3/download -> rand-0.8.3.crate https://crates.io/api/v1/crates/rand_chacha/0.2.2/download -> rand_chacha-0.2.2.crate https://crates.io/api/v1/crates/rand_chacha/0.3.0/download -> rand_chacha-0.3.0.crate https://crates.io/api/v1/crates/rand_core/0.3.1/download -> rand_core-0.3.1.crate https://crates.io/api/v1/crates/rand_core/0.4.2/download -> rand_core-0.4.2.crate https://crates.io/api/v1/crates/rand_core/0.5.1/download -> rand_core-0.5.1.crate https://crates.io/api/v1/crates/rand_core/0.6.2/download -> rand_core-0.6.2.crate https://crates.io/api/v1/crates/rand_distr/0.3.0/download -> rand_distr-0.3.0.crate https://crates.io/api/v1/crates/rand_hc/0.2.0/download -> rand_hc-0.2.0.crate https://crates.io/api/v1/crates/rand_hc/0.3.0/download -> rand_hc-0.3.0.crate https://crates.io/api/v1/crates/rand_pcg/0.2.1/download -> rand_pcg-0.2.1.crate https://crates.io/api/v1/crates/rawkey/0.1.3/download -> rawkey-0.1.3.crate https://crates.io/api/v1/crates/rayon/1.5.0/download -> rayon-1.5.0.crate https://crates.io/api/v1/crates/rayon-core/1.9.0/download -> rayon-core-1.9.0.crate https://crates.io/api/v1/crates/rdrand/0.4.0/download -> rdrand-0.4.0.crate https://crates.io/api/v1/crates/readkey/0.1.7/download -> readkey-0.1.7.crate https://crates.io/api/v1/crates/redox_syscall/0.1.57/download -> redox_syscall-0.1.57.crate https://crates.io/api/v1/crates/redox_syscall/0.2.7/download -> redox_syscall-0.2.7.crate https://crates.io/api/v1/crates/redox_users/0.3.5/download -> redox_users-0.3.5.crate https://crates.io/api/v1/crates/redox_users/0.4.0/download -> redox_users-0.4.0.crate https://crates.io/api/v1/crates/regex/0.2.11/download -> regex-0.2.11.crate https://crates.io/api/v1/crates/regex/1.5.3/download -> regex-1.5.3.crate https://crates.io/api/v1/crates/regex-automata/0.1.9/download -> regex-automata-0.1.9.crate https://crates.io/api/v1/crates/regex-syntax/0.5.6/download -> regex-syntax-0.5.6.crate https://crates.io/api/v1/crates/regex-syntax/0.6.25/download -> regex-syntax-0.6.25.crate https://crates.io/api/v1/crates/relay/0.1.1/download -> relay-0.1.1.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/reqwest/0.10.10/download -> reqwest-0.10.10.crate https://crates.io/api/v1/crates/result/1.0.0/download -> result-1.0.0.crate https://crates.io/api/v1/crates/roxmltree/0.14.1/download -> roxmltree-0.14.1.crate https://crates.io/api/v1/crates/rusqlite/0.25.3/download -> rusqlite-0.25.3.crate https://crates.io/api/v1/crates/rust-argon2/0.8.3/download -> rust-argon2-0.8.3.crate https://crates.io/api/v1/crates/rustc-demangle/0.1.18/download -> rustc-demangle-0.1.18.crate https://crates.io/api/v1/crates/rust-crypto/0.2.36/download -> rust-crypto-0.2.36.crate https://crates.io/api/v1/crates/rustc-serialize/0.3.24/download -> rustc-serialize-0.3.24.crate https://crates.io/api/v1/crates/rustc_version/0.2.3/download -> rustc_version-0.2.3.crate https://crates.io/api/v1/crates/rust_decimal/0.10.2/download -> rust_decimal-0.10.2.crate https://crates.io/api/v1/crates/rust-embed/5.9.0/download -> rust-embed-5.9.0.crate https://crates.io/api/v1/crates/rust-embed-impl/5.9.0/download -> rust-embed-impl-5.9.0.crate https://crates.io/api/v1/crates/rust-embed-utils/5.1.0/download -> rust-embed-utils-5.1.0.crate https://crates.io/api/v1/crates/rust-ini/0.13.0/download -> rust-ini-0.13.0.crate https://crates.io/api/v1/crates/rustversion/1.0.4/download -> rustversion-1.0.4.crate https://crates.io/api/v1/crates/rustyline/8.1.0/download -> rustyline-8.1.0.crate https://crates.io/api/v1/crates/ryu/1.0.5/download -> ryu-1.0.5.crate https://crates.io/api/v1/crates/s3handler/0.6.6/download -> s3handler-0.6.6.crate https://crates.io/api/v1/crates/safemem/0.2.0/download -> safemem-0.2.0.crate https://crates.io/api/v1/crates/safemem/0.3.3/download -> safemem-0.3.3.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.19/download -> schannel-0.1.19.crate https://crates.io/api/v1/crates/scoped-tls/0.1.2/download -> scoped-tls-0.1.2.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/security-framework/2.2.0/download -> security-framework-2.2.0.crate https://crates.io/api/v1/crates/security-framework-sys/2.2.0/download -> security-framework-sys-2.2.0.crate https://crates.io/api/v1/crates/selectors/0.22.0/download -> selectors-0.22.0.crate https://crates.io/api/v1/crates/semver/0.11.0/download -> semver-0.11.0.crate https://crates.io/api/v1/crates/semver/0.9.0/download -> semver-0.9.0.crate https://crates.io/api/v1/crates/semver-parser/0.10.2/download -> semver-parser-0.10.2.crate https://crates.io/api/v1/crates/semver-parser/0.7.0/download -> semver-parser-0.7.0.crate https://crates.io/api/v1/crates/serde/0.8.23/download -> serde-0.8.23.crate https://crates.io/api/v1/crates/serde/1.0.125/download -> serde-1.0.125.crate https://crates.io/api/v1/crates/serde_bytes/0.11.5/download -> serde_bytes-0.11.5.crate https://crates.io/api/v1/crates/serde_derive/1.0.125/download -> serde_derive-1.0.125.crate https://crates.io/api/v1/crates/serde-hjson/0.9.1/download -> serde-hjson-0.9.1.crate https://crates.io/api/v1/crates/serde_ini/0.2.0/download -> serde_ini-0.2.0.crate https://crates.io/api/v1/crates/serde_json/1.0.64/download -> serde_json-1.0.64.crate https://crates.io/api/v1/crates/serde_qs/0.7.2/download -> serde_qs-0.7.2.crate https://crates.io/api/v1/crates/serde_test/0.8.23/download -> serde_test-0.8.23.crate https://crates.io/api/v1/crates/serde_test/1.0.125/download -> serde_test-1.0.125.crate https://crates.io/api/v1/crates/serde_urlencoded/0.7.0/download -> serde_urlencoded-0.7.0.crate https://crates.io/api/v1/crates/serde-value/0.6.0/download -> serde-value-0.6.0.crate https://crates.io/api/v1/crates/serde_yaml/0.8.17/download -> serde_yaml-0.8.17.crate https://crates.io/api/v1/crates/serial_test/0.5.1/download -> serial_test-0.5.1.crate https://crates.io/api/v1/crates/serial_test_derive/0.5.1/download -> serial_test_derive-0.5.1.crate https://crates.io/api/v1/crates/servo_arc/0.1.1/download -> servo_arc-0.1.1.crate https://crates.io/api/v1/crates/sha1/0.2.0/download -> sha1-0.2.0.crate https://crates.io/api/v1/crates/sha1/0.6.0/download -> sha1-0.6.0.crate https://crates.io/api/v1/crates/sha2/0.6.0/download -> sha2-0.6.0.crate https://crates.io/api/v1/crates/sha2/0.9.3/download -> sha2-0.9.3.crate https://crates.io/api/v1/crates/shadow-rs/0.5.25/download -> shadow-rs-0.5.25.crate https://crates.io/api/v1/crates/shellexpand/2.1.0/download -> shellexpand-2.1.0.crate https://crates.io/api/v1/crates/shell-words/1.0.0/download -> shell-words-1.0.0.crate https://crates.io/api/v1/crates/signal-hook/0.1.17/download -> signal-hook-0.1.17.crate https://crates.io/api/v1/crates/signal-hook-registry/1.3.0/download -> signal-hook-registry-1.3.0.crate https://crates.io/api/v1/crates/siphasher/0.3.5/download -> siphasher-0.3.5.crate https://crates.io/api/v1/crates/slab/0.3.0/download -> slab-0.3.0.crate https://crates.io/api/v1/crates/slab/0.4.3/download -> slab-0.4.3.crate https://crates.io/api/v1/crates/sluice/0.5.4/download -> sluice-0.5.4.crate https://crates.io/api/v1/crates/smallvec/0.2.1/download -> smallvec-0.2.1.crate https://crates.io/api/v1/crates/smallvec/0.6.14/download -> smallvec-0.6.14.crate https://crates.io/api/v1/crates/smallvec/1.6.1/download -> smallvec-1.6.1.crate https://crates.io/api/v1/crates/smart-default/0.6.0/download -> smart-default-0.6.0.crate https://crates.io/api/v1/crates/snap/1.0.5/download -> snap-1.0.5.crate https://crates.io/api/v1/crates/socket2/0.3.19/download -> socket2-0.3.19.crate https://crates.io/api/v1/crates/socket2/0.4.0/download -> socket2-0.4.0.crate https://crates.io/api/v1/crates/spinning_top/0.2.3/download -> spinning_top-0.2.3.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/standback/0.2.17/download -> standback-0.2.17.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/std_prelude/0.2.12/download -> std_prelude-0.2.12.crate https://crates.io/api/v1/crates/stdweb/0.4.20/download -> stdweb-0.4.20.crate https://crates.io/api/v1/crates/stdweb-derive/0.5.3/download -> stdweb-derive-0.5.3.crate https://crates.io/api/v1/crates/stdweb-internal-macros/0.2.9/download -> stdweb-internal-macros-0.2.9.crate https://crates.io/api/v1/crates/stdweb-internal-runtime/0.1.5/download -> stdweb-internal-runtime-0.1.5.crate https://crates.io/api/v1/crates/str-buf/2.0.0/download -> str-buf-2.0.0.crate https://crates.io/api/v1/crates/string_cache/0.8.1/download -> string_cache-0.8.1.crate https://crates.io/api/v1/crates/string_cache_codegen/0.5.1/download -> string_cache_codegen-0.5.1.crate https://crates.io/api/v1/crates/strip-ansi-escapes/0.1.0/download -> strip-ansi-escapes-0.1.0.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/subtle/2.4.0/download -> subtle-2.4.0.crate https://crates.io/api/v1/crates/surf/2.2.0/download -> surf-2.2.0.crate https://crates.io/api/v1/crates/sxd-document/0.3.2/download -> sxd-document-0.3.2.crate https://crates.io/api/v1/crates/sxd-xpath/0.4.2/download -> sxd-xpath-0.4.2.crate https://crates.io/api/v1/crates/syn/0.11.11/download -> syn-0.11.11.crate https://crates.io/api/v1/crates/syn/1.0.71/download -> syn-1.0.71.crate https://crates.io/api/v1/crates/synom/0.11.3/download -> synom-0.11.3.crate https://crates.io/api/v1/crates/synstructure/0.12.4/download -> synstructure-0.12.4.crate https://crates.io/api/v1/crates/syntect/4.5.0/download -> syntect-4.5.0.crate https://crates.io/api/v1/crates/sysinfo/0.16.5/download -> sysinfo-0.16.5.crate https://crates.io/api/v1/crates/sys-locale/0.1.0/download -> sys-locale-0.1.0.crate https://crates.io/api/v1/crates/take/0.1.0/download -> take-0.1.0.crate https://crates.io/api/v1/crates/tempfile/3.2.0/download -> tempfile-3.2.0.crate https://crates.io/api/v1/crates/tendril/0.4.2/download -> tendril-0.4.2.crate https://crates.io/api/v1/crates/term/0.5.2/download -> term-0.5.2.crate https://crates.io/api/v1/crates/term/0.7.0/download -> term-0.7.0.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/terminal_size/0.1.16/download -> terminal_size-0.1.16.crate https://crates.io/api/v1/crates/term_size/0.3.2/download -> term_size-0.3.2.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thin-slice/0.1.1/download -> thin-slice-0.1.1.crate https://crates.io/api/v1/crates/thiserror/1.0.24/download -> thiserror-1.0.24.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.24/download -> thiserror-impl-1.0.24.crate https://crates.io/api/v1/crates/thread_local/0.3.6/download -> thread_local-0.3.6.crate https://crates.io/api/v1/crates/threadpool/1.8.1/download -> threadpool-1.8.1.crate https://crates.io/api/v1/crates/thrift/0.13.0/download -> thrift-0.13.0.crate https://crates.io/api/v1/crates/tiff/0.6.1/download -> tiff-0.6.1.crate https://crates.io/api/v1/crates/time/0.1.44/download -> time-0.1.44.crate https://crates.io/api/v1/crates/time/0.2.26/download -> time-0.2.26.crate https://crates.io/api/v1/crates/time-macros/0.1.1/download -> time-macros-0.1.1.crate https://crates.io/api/v1/crates/time-macros-impl/0.1.1/download -> time-macros-impl-0.1.1.crate https://crates.io/api/v1/crates/tint/1.0.1/download -> tint-1.0.1.crate https://crates.io/api/v1/crates/tinyvec/1.2.0/download -> tinyvec-1.2.0.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.0/download -> tinyvec_macros-0.1.0.crate https://crates.io/api/v1/crates/titlecase/1.1.0/download -> titlecase-1.1.0.crate https://crates.io/api/v1/crates/tokio/0.1.22/download -> tokio-0.1.22.crate https://crates.io/api/v1/crates/tokio/0.2.25/download -> tokio-0.2.25.crate https://crates.io/api/v1/crates/tokio-codec/0.1.2/download -> tokio-codec-0.1.2.crate https://crates.io/api/v1/crates/tokio-core/0.1.18/download -> tokio-core-0.1.18.crate https://crates.io/api/v1/crates/tokio-current-thread/0.1.7/download -> tokio-current-thread-0.1.7.crate https://crates.io/api/v1/crates/tokio-executor/0.1.10/download -> tokio-executor-0.1.10.crate https://crates.io/api/v1/crates/tokio-fs/0.1.7/download -> tokio-fs-0.1.7.crate https://crates.io/api/v1/crates/tokio-io/0.1.13/download -> tokio-io-0.1.13.crate https://crates.io/api/v1/crates/tokio-macros/0.2.6/download -> tokio-macros-0.2.6.crate https://crates.io/api/v1/crates/tokio-proto/0.1.1/download -> tokio-proto-0.1.1.crate https://crates.io/api/v1/crates/tokio-reactor/0.1.12/download -> tokio-reactor-0.1.12.crate https://crates.io/api/v1/crates/tokio-service/0.1.0/download -> tokio-service-0.1.0.crate https://crates.io/api/v1/crates/tokio-sync/0.1.8/download -> tokio-sync-0.1.8.crate https://crates.io/api/v1/crates/tokio-tcp/0.1.4/download -> tokio-tcp-0.1.4.crate https://crates.io/api/v1/crates/tokio-threadpool/0.1.18/download -> tokio-threadpool-0.1.18.crate https://crates.io/api/v1/crates/tokio-timer/0.2.13/download -> tokio-timer-0.2.13.crate https://crates.io/api/v1/crates/tokio-tls/0.3.1/download -> tokio-tls-0.3.1.crate https://crates.io/api/v1/crates/tokio-udp/0.1.6/download -> tokio-udp-0.1.6.crate https://crates.io/api/v1/crates/tokio-uds/0.2.7/download -> tokio-uds-0.2.7.crate https://crates.io/api/v1/crates/tokio-util/0.3.1/download -> tokio-util-0.3.1.crate https://crates.io/api/v1/crates/toml/0.5.8/download -> toml-0.5.8.crate https://crates.io/api/v1/crates/tower-service/0.3.1/download -> tower-service-0.3.1.crate https://crates.io/api/v1/crates/tracing/0.1.26/download -> tracing-0.1.26.crate https://crates.io/api/v1/crates/tracing-attributes/0.1.15/download -> tracing-attributes-0.1.15.crate https://crates.io/api/v1/crates/tracing-core/0.1.18/download -> tracing-core-0.1.18.crate https://crates.io/api/v1/crates/tracing-futures/0.2.5/download -> tracing-futures-0.2.5.crate https://crates.io/api/v1/crates/trash/1.3.0/download -> trash-1.3.0.crate https://crates.io/api/v1/crates/try-lock/0.1.0/download -> try-lock-0.1.0.crate https://crates.io/api/v1/crates/try-lock/0.2.3/download -> try-lock-0.2.3.crate https://crates.io/api/v1/crates/tui/0.14.0/download -> tui-0.14.0.crate https://crates.io/api/v1/crates/typed-arena/1.7.0/download -> typed-arena-1.7.0.crate https://crates.io/api/v1/crates/typenum/1.13.0/download -> typenum-1.13.0.crate https://crates.io/api/v1/crates/ucd-trie/0.1.3/download -> ucd-trie-0.1.3.crate https://crates.io/api/v1/crates/ucd-util/0.1.8/download -> ucd-util-0.1.8.crate https://crates.io/api/v1/crates/umask/1.0.0/download -> umask-1.0.0.crate https://crates.io/api/v1/crates/unicase/2.6.0/download -> unicase-2.6.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.5/download -> unicode-bidi-0.3.5.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.17/download -> unicode-normalization-0.1.17.crate https://crates.io/api/v1/crates/unicode-segmentation/1.7.1/download -> unicode-segmentation-1.7.1.crate https://crates.io/api/v1/crates/unicode-width/0.1.8/download -> unicode-width-0.1.8.crate https://crates.io/api/v1/crates/unicode-xid/0.0.4/download -> unicode-xid-0.0.4.crate https://crates.io/api/v1/crates/unicode-xid/0.2.2/download -> unicode-xid-0.2.2.crate https://crates.io/api/v1/crates/universal-hash/0.4.0/download -> universal-hash-0.4.0.crate https://crates.io/api/v1/crates/unsafe_unwrap/0.1.0/download -> unsafe_unwrap-0.1.0.crate https://crates.io/api/v1/crates/url/2.2.1/download -> url-2.2.1.crate https://crates.io/api/v1/crates/user32-sys/0.2.0/download -> user32-sys-0.2.0.crate https://crates.io/api/v1/crates/users/0.11.0/download -> users-0.11.0.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/utf8parse/0.1.1/download -> utf8parse-0.1.1.crate https://crates.io/api/v1/crates/utf8parse/0.2.0/download -> utf8parse-0.2.0.crate https://crates.io/api/v1/crates/utf8-ranges/1.0.4/download -> utf8-ranges-1.0.4.crate https://crates.io/api/v1/crates/utf8-width/0.1.5/download -> utf8-width-0.1.5.crate https://crates.io/api/v1/crates/uuid/0.8.2/download -> uuid-0.8.2.crate https://crates.io/api/v1/crates/value-bag/1.0.0-alpha.6/download -> value-bag-1.0.0-alpha.6.crate https://crates.io/api/v1/crates/vcpkg/0.2.12/download -> vcpkg-0.2.12.crate https://crates.io/api/v1/crates/vec_map/0.8.2/download -> vec_map-0.8.2.crate https://crates.io/api/v1/crates/version_check/0.9.3/download -> version_check-0.9.3.crate https://crates.io/api/v1/crates/void/1.0.2/download -> void-1.0.2.crate https://crates.io/api/v1/crates/vte/0.3.3/download -> vte-0.3.3.crate https://crates.io/api/v1/crates/waker-fn/1.1.0/download -> waker-fn-1.1.0.crate https://crates.io/api/v1/crates/walkdir/2.3.2/download -> walkdir-2.3.2.crate https://crates.io/api/v1/crates/want/0.0.4/download -> want-0.0.4.crate https://crates.io/api/v1/crates/want/0.3.0/download -> want-0.3.0.crate https://crates.io/api/v1/crates/wasi/0.10.0+wasi-snapshot-preview1/download -> wasi-0.10.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.73/download -> wasm-bindgen-0.2.73.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.73/download -> wasm-bindgen-backend-0.2.73.crate https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.23/download -> wasm-bindgen-futures-0.4.23.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.73/download -> wasm-bindgen-macro-0.2.73.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.73/download -> wasm-bindgen-macro-support-0.2.73.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.73/download -> wasm-bindgen-shared-0.2.73.crate https://crates.io/api/v1/crates/webbrowser/0.5.5/download -> webbrowser-0.5.5.crate https://crates.io/api/v1/crates/web-sys/0.3.50/download -> web-sys-0.3.50.crate https://crates.io/api/v1/crates/weezl/0.1.5/download -> weezl-0.1.5.crate https://crates.io/api/v1/crates/wepoll-sys/3.0.1/download -> wepoll-sys-3.0.1.crate https://crates.io/api/v1/crates/which/4.1.0/download -> which-4.1.0.crate https://crates.io/api/v1/crates/widestring/0.4.3/download -> widestring-0.4.3.crate https://crates.io/api/v1/crates/wild/2.0.4/download -> wild-2.0.4.crate https://crates.io/api/v1/crates/winapi/0.2.8/download -> winapi-0.2.8.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-build/0.1.1/download -> winapi-build-0.1.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.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-wsapoll/0.1.1/download -> winapi-wsapoll-0.1.1.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/winreg/0.7.0/download -> winreg-0.7.0.crate https://crates.io/api/v1/crates/ws2_32-sys/0.2.1/download -> ws2_32-sys-0.2.1.crate https://crates.io/api/v1/crates/x11/2.18.2/download -> x11-2.18.2.crate https://crates.io/api/v1/crates/x11rb/0.8.1/download -> x11rb-0.8.1.crate https://crates.io/api/v1/crates/xmlparser/0.13.3/download -> xmlparser-0.13.3.crate https://crates.io/api/v1/crates/xml-rs/0.8.3/download -> xml-rs-0.8.3.crate https://crates.io/api/v1/crates/yaml-rust/0.4.5/download -> yaml-rust-0.4.5.crate https://crates.io/api/v1/crates/zip/0.5.12/download -> zip-0.5.12.crate https://crates.io/api/v1/crates/zstd/0.8.1+zstd.1.5.0/download -> zstd-0.8.1+zstd.1.5.0.crate https://crates.io/api/v1/crates/zstd-safe/4.1.0+zstd.1.5.0/download -> zstd-safe-4.1.0+zstd.1.5.0.crate https://crates.io/api/v1/crates/zstd-sys/1.6.0+zstd.1.5.0/download -> zstd-sys-1.6.0+zstd.1.5.0.crate -_eclasses_=cargo c7fefacaebdcb455d2a7b59429eb47a6 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=7a36ff681d84a790d730d2ef6bb9bf88 diff --git a/metadata/md5-cache/app-shells/nushell-0.39.0 b/metadata/md5-cache/app-shells/nushell-0.39.0 deleted file mode 100644 index b6fbb624482e..000000000000 --- a/metadata/md5-cache/app-shells/nushell-0.39.0 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=>=virtual/rust-1.51 virtual/pkgconfig >=virtual/rust-1.37.0 -DEFINED_PHASES=compile configure install test unpack -DEPEND=>=dev-libs/libgit2-0.99:= dev-libs/oniguruma:= dev-libs/openssl:0= net-libs/libssh2:= net-libs/nghttp2:= net-misc/curl extra? ( dev-db/sqlite:3= x11-libs/libX11 x11-libs/libxcb ) -DESCRIPTION=A new type of shell, written in Rust -EAPI=7 -HOMEPAGE=https://www.nushell.sh -IUSE=+extra debug -KEYWORDS=~amd64 ~arm64 ~ppc64 -LICENSE=Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD Boost-1.0 CC0-1.0 ISC LGPL-3+ MIT MPL-2.0 Unlicense ZLIB -RDEPEND=>=dev-libs/libgit2-0.99:= dev-libs/oniguruma:= dev-libs/openssl:0= net-libs/libssh2:= net-libs/nghttp2:= net-misc/curl extra? ( dev-db/sqlite:3= x11-libs/libX11 x11-libs/libxcb ) -SLOT=0 -SRC_URI=https://github.com/nushell/nushell/archive/0.39.0.tar.gz -> nushell-0.39.0.tar.gz https://crates.io/api/v1/crates/Inflector/0.11.4/download -> Inflector-0.11.4.crate https://crates.io/api/v1/crates/addr2line/0.16.0/download -> addr2line-0.16.0.crate https://crates.io/api/v1/crates/adler32/1.2.0/download -> adler32-1.2.0.crate https://crates.io/api/v1/crates/adler/1.0.2/download -> adler-1.0.2.crate https://crates.io/api/v1/crates/ahash/0.7.4/download -> ahash-0.7.4.crate https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/alloc-no-stdlib/2.0.3/download -> alloc-no-stdlib-2.0.3.crate https://crates.io/api/v1/crates/alloc-stdlib/0.2.1/download -> alloc-stdlib-0.2.1.crate https://crates.io/api/v1/crates/ansi_colours/1.0.4/download -> ansi_colours-1.0.4.crate https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/anyhow/1.0.43/download -> anyhow-1.0.43.crate https://crates.io/api/v1/crates/arboard/1.2.1/download -> arboard-1.2.1.crate https://crates.io/api/v1/crates/arrayref/0.3.6/download -> arrayref-0.3.6.crate https://crates.io/api/v1/crates/arrayvec/0.4.12/download -> arrayvec-0.4.12.crate https://crates.io/api/v1/crates/arrayvec/0.5.2/download -> arrayvec-0.5.2.crate https://crates.io/api/v1/crates/arrow2/0.5.3/download -> arrow2-0.5.3.crate https://crates.io/api/v1/crates/async-stream/0.3.2/download -> async-stream-0.3.2.crate https://crates.io/api/v1/crates/async-stream-impl/0.3.2/download -> async-stream-impl-0.3.2.crate https://crates.io/api/v1/crates/async-trait/0.1.51/download -> async-trait-0.1.51.crate https://crates.io/api/v1/crates/as-slice/0.1.5/download -> as-slice-0.1.5.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/backtrace/0.3.61/download -> backtrace-0.3.61.crate https://crates.io/api/v1/crates/base64/0.13.0/download -> base64-0.13.0.crate https://crates.io/api/v1/crates/bat/0.18.3/download -> bat-0.18.3.crate https://crates.io/api/v1/crates/bigdecimal-rs/0.2.1/download -> bigdecimal-rs-0.2.1.crate https://crates.io/api/v1/crates/bincode/1.3.3/download -> bincode-1.3.3.crate https://crates.io/api/v1/crates/bitflags/1.2.1/download -> bitflags-1.2.1.crate https://crates.io/api/v1/crates/bitpacking/0.8.4/download -> bitpacking-0.8.4.crate https://crates.io/api/v1/crates/bit-set/0.5.2/download -> bit-set-0.5.2.crate https://crates.io/api/v1/crates/bit-vec/0.6.3/download -> bit-vec-0.6.3.crate https://crates.io/api/v1/crates/blake2b_simd/0.5.11/download -> blake2b_simd-0.5.11.crate https://crates.io/api/v1/crates/block/0.1.6/download -> block-0.1.6.crate https://crates.io/api/v1/crates/block-buffer/0.9.0/download -> block-buffer-0.9.0.crate https://crates.io/api/v1/crates/brotli/3.3.2/download -> brotli-3.3.2.crate https://crates.io/api/v1/crates/brotli-decompressor/2.3.2/download -> brotli-decompressor-2.3.2.crate https://crates.io/api/v1/crates/bson/0.14.1/download -> bson-0.14.1.crate https://crates.io/api/v1/crates/bstr/0.2.16/download -> bstr-0.2.16.crate https://crates.io/api/v1/crates/bugreport/0.4.1/download -> bugreport-0.4.1.crate https://crates.io/api/v1/crates/bumpalo/3.7.0/download -> bumpalo-3.7.0.crate https://crates.io/api/v1/crates/bytemuck/1.7.2/download -> bytemuck-1.7.2.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes/0.4.12/download -> bytes-0.4.12.crate https://crates.io/api/v1/crates/bytes/0.5.6/download -> bytes-0.5.6.crate https://crates.io/api/v1/crates/bytes/1.1.0/download -> bytes-1.1.0.crate https://crates.io/api/v1/crates/byte-unit/4.0.12/download -> byte-unit-4.0.12.crate https://crates.io/api/v1/crates/bzip2/0.4.3/download -> bzip2-0.4.3.crate https://crates.io/api/v1/crates/bzip2-sys/0.1.11+1.0.8/download -> bzip2-sys-0.1.11+1.0.8.crate https://crates.io/api/v1/crates/calamine/0.18.0/download -> calamine-0.18.0.crate https://crates.io/api/v1/crates/cassowary/0.3.0/download -> cassowary-0.3.0.crate https://crates.io/api/v1/crates/cc/1.0.69/download -> cc-1.0.69.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/chrono-humanize/0.2.1/download -> chrono-humanize-0.2.1.crate https://crates.io/api/v1/crates/chrono-tz/0.5.3/download -> chrono-tz-0.5.3.crate https://crates.io/api/v1/crates/clap/2.33.3/download -> clap-2.33.3.crate https://crates.io/api/v1/crates/clipboard-win/4.2.1/download -> clipboard-win-4.2.1.crate https://crates.io/api/v1/crates/clircle/0.3.0/download -> clircle-0.3.0.crate https://crates.io/api/v1/crates/codepage/0.1.1/download -> codepage-0.1.1.crate https://crates.io/api/v1/crates/codespan-reporting/0.11.1/download -> codespan-reporting-0.11.1.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/common-path/1.0.0/download -> common-path-1.0.0.crate https://crates.io/api/v1/crates/console/0.14.1/download -> console-0.14.1.crate https://crates.io/api/v1/crates/constant_time_eq/0.1.5/download -> constant_time_eq-0.1.5.crate https://crates.io/api/v1/crates/content_inspector/0.2.4/download -> content_inspector-0.2.4.crate https://crates.io/api/v1/crates/convert_case/0.4.0/download -> convert_case-0.4.0.crate https://crates.io/api/v1/crates/core-foundation/0.9.1/download -> core-foundation-0.9.1.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.2/download -> core-foundation-sys-0.8.2.crate https://crates.io/api/v1/crates/core-graphics/0.21.0/download -> core-graphics-0.21.0.crate https://crates.io/api/v1/crates/cpufeatures/0.2.1/download -> cpufeatures-0.2.1.crate https://crates.io/api/v1/crates/crc32fast/1.2.1/download -> crc32fast-1.2.1.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.1/download -> crossbeam-channel-0.5.1.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.1/download -> crossbeam-deque-0.8.1.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.5/download -> crossbeam-epoch-0.9.5.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.5/download -> crossbeam-utils-0.8.5.crate https://crates.io/api/v1/crates/crossterm/0.19.0/download -> crossterm-0.19.0.crate https://crates.io/api/v1/crates/crossterm_winapi/0.7.0/download -> crossterm_winapi-0.7.0.crate https://crates.io/api/v1/crates/crunchy/0.2.2/download -> crunchy-0.2.2.crate https://crates.io/api/v1/crates/crypto-mac/0.11.1/download -> crypto-mac-0.11.1.crate https://crates.io/api/v1/crates/cssparser/0.27.2/download -> cssparser-0.27.2.crate https://crates.io/api/v1/crates/cssparser-macros/0.6.0/download -> cssparser-macros-0.6.0.crate https://crates.io/api/v1/crates/cstr_core/0.2.4/download -> cstr_core-0.2.4.crate https://crates.io/api/v1/crates/csv/1.1.6/download -> csv-1.1.6.crate https://crates.io/api/v1/crates/csv-core/0.1.10/download -> csv-core-0.1.10.crate https://crates.io/api/v1/crates/ctrlc/3.2.0/download -> ctrlc-3.2.0.crate https://crates.io/api/v1/crates/cty/0.2.1/download -> cty-0.2.1.crate https://crates.io/api/v1/crates/decimal/2.1.0/download -> decimal-2.1.0.crate https://crates.io/api/v1/crates/deflate/0.7.20/download -> deflate-0.7.20.crate https://crates.io/api/v1/crates/deflate/0.8.6/download -> deflate-0.8.6.crate https://crates.io/api/v1/crates/derive-new/0.5.9/download -> derive-new-0.5.9.crate https://crates.io/api/v1/crates/derive_more/0.99.16/download -> derive_more-0.99.16.crate https://crates.io/api/v1/crates/digest/0.9.0/download -> digest-0.9.0.crate https://crates.io/api/v1/crates/directories-next/2.0.0/download -> directories-next-2.0.0.crate https://crates.io/api/v1/crates/dirs/1.0.5/download -> dirs-1.0.5.crate https://crates.io/api/v1/crates/dirs/3.0.2/download -> dirs-3.0.2.crate https://crates.io/api/v1/crates/dirs-next/2.0.0/download -> dirs-next-2.0.0.crate https://crates.io/api/v1/crates/dirs-sys/0.3.6/download -> dirs-sys-0.3.6.crate https://crates.io/api/v1/crates/dirs-sys-next/0.1.2/download -> dirs-sys-next-0.1.2.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/dtoa/0.4.8/download -> dtoa-0.4.8.crate https://crates.io/api/v1/crates/dtoa-short/0.3.3/download -> dtoa-short-0.3.3.crate https://crates.io/api/v1/crates/dtparse/1.2.0/download -> dtparse-1.2.0.crate https://crates.io/api/v1/crates/dunce/1.0.2/download -> dunce-1.0.2.crate https://crates.io/api/v1/crates/dyn-clone/1.0.4/download -> dyn-clone-1.0.4.crate https://crates.io/api/v1/crates/ego-tree/0.6.2/download -> ego-tree-0.6.2.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/eml-parser/0.1.2/download -> eml-parser-0.1.2.crate https://crates.io/api/v1/crates/encode_unicode/0.3.6/download -> encode_unicode-0.3.6.crate https://crates.io/api/v1/crates/encoding/0.2.33/download -> encoding-0.2.33.crate https://crates.io/api/v1/crates/encoding-index-japanese/1.20141219.5/download -> encoding-index-japanese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-korean/1.20141219.5/download -> encoding-index-korean-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-simpchinese/1.20141219.5/download -> encoding-index-simpchinese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-singlebyte/1.20141219.5/download -> encoding-index-singlebyte-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-tradchinese/1.20141219.5/download -> encoding-index-tradchinese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding_index_tests/0.1.4/download -> encoding_index_tests-0.1.4.crate https://crates.io/api/v1/crates/encoding_rs/0.8.28/download -> encoding_rs-0.8.28.crate https://crates.io/api/v1/crates/endian-type/0.1.2/download -> endian-type-0.1.2.crate https://crates.io/api/v1/crates/env_logger/0.7.1/download -> env_logger-0.7.1.crate https://crates.io/api/v1/crates/env_logger/0.8.4/download -> env_logger-0.8.4.crate https://crates.io/api/v1/crates/error-chain/0.12.4/download -> error-chain-0.12.4.crate https://crates.io/api/v1/crates/error-code/2.3.0/download -> error-code-2.3.0.crate https://crates.io/api/v1/crates/failure/0.1.8/download -> failure-0.1.8.crate https://crates.io/api/v1/crates/failure_derive/0.1.8/download -> failure_derive-0.1.8.crate https://crates.io/api/v1/crates/fallible-iterator/0.2.0/download -> fallible-iterator-0.2.0.crate https://crates.io/api/v1/crates/fallible-streaming-iterator/0.1.9/download -> fallible-streaming-iterator-0.1.9.crate https://crates.io/api/v1/crates/fancy-regex/0.7.1/download -> fancy-regex-0.7.1.crate https://crates.io/api/v1/crates/fd-lock/3.0.0/download -> fd-lock-3.0.0.crate https://crates.io/api/v1/crates/filesize/0.2.0/download -> filesize-0.2.0.crate https://crates.io/api/v1/crates/flatbuffers/2.0.0/download -> flatbuffers-2.0.0.crate https://crates.io/api/v1/crates/flate2/1.0.20/download -> flate2-1.0.20.crate https://crates.io/api/v1/crates/fnv/1.0.7/download -> fnv-1.0.7.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/foreign-types-shared/0.1.1/download -> foreign-types-shared-0.1.1.crate https://crates.io/api/v1/crates/form_urlencoded/1.0.1/download -> form_urlencoded-1.0.1.crate https://crates.io/api/v1/crates/fs_extra/1.2.0/download -> fs_extra-1.2.0.crate https://crates.io/api/v1/crates/fuchsia-cprng/0.1.1/download -> fuchsia-cprng-0.1.1.crate https://crates.io/api/v1/crates/futf/0.1.4/download -> futf-0.1.4.crate https://crates.io/api/v1/crates/futures/0.1.31/download -> futures-0.1.31.crate https://crates.io/api/v1/crates/futures/0.3.16/download -> futures-0.3.16.crate https://crates.io/api/v1/crates/futures-channel/0.3.16/download -> futures-channel-0.3.16.crate https://crates.io/api/v1/crates/futures-core/0.3.16/download -> futures-core-0.3.16.crate https://crates.io/api/v1/crates/futures-executor/0.3.16/download -> futures-executor-0.3.16.crate https://crates.io/api/v1/crates/futures-io/0.3.16/download -> futures-io-0.3.16.crate https://crates.io/api/v1/crates/futures-macro/0.3.16/download -> futures-macro-0.3.16.crate https://crates.io/api/v1/crates/futures-sink/0.3.16/download -> futures-sink-0.3.16.crate https://crates.io/api/v1/crates/futures-task/0.3.16/download -> futures-task-0.3.16.crate https://crates.io/api/v1/crates/futures-util/0.3.16/download -> futures-util-0.3.16.crate https://crates.io/api/v1/crates/fxhash/0.2.1/download -> fxhash-0.2.1.crate https://crates.io/api/v1/crates/gcc/0.3.55/download -> gcc-0.3.55.crate https://crates.io/api/v1/crates/generic-array/0.12.4/download -> generic-array-0.12.4.crate https://crates.io/api/v1/crates/generic-array/0.13.3/download -> generic-array-0.13.3.crate https://crates.io/api/v1/crates/generic-array/0.14.4/download -> generic-array-0.14.4.crate https://crates.io/api/v1/crates/gethostname/0.2.1/download -> gethostname-0.2.1.crate https://crates.io/api/v1/crates/getopts/0.2.21/download -> getopts-0.2.21.crate https://crates.io/api/v1/crates/getrandom/0.1.16/download -> getrandom-0.1.16.crate https://crates.io/api/v1/crates/getrandom/0.2.3/download -> getrandom-0.2.3.crate https://crates.io/api/v1/crates/getset/0.1.1/download -> getset-0.1.1.crate https://crates.io/api/v1/crates/gimli/0.25.0/download -> gimli-0.25.0.crate https://crates.io/api/v1/crates/git2/0.13.21/download -> git2-0.13.21.crate https://crates.io/api/v1/crates/git-version/0.3.5/download -> git-version-0.3.5.crate https://crates.io/api/v1/crates/git-version-macro/0.3.5/download -> git-version-macro-0.3.5.crate https://crates.io/api/v1/crates/gjson/0.7.5/download -> gjson-0.7.5.crate https://crates.io/api/v1/crates/globset/0.4.8/download -> globset-0.4.8.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.crate https://crates.io/api/v1/crates/grep-cli/0.1.6/download -> grep-cli-0.1.6.crate https://crates.io/api/v1/crates/h2/0.3.4/download -> h2-0.3.4.crate https://crates.io/api/v1/crates/hamcrest2/0.3.0/download -> hamcrest2-0.3.0.crate https://crates.io/api/v1/crates/hash32/0.1.1/download -> hash32-0.1.1.crate https://crates.io/api/v1/crates/hashbrown/0.11.2/download -> hashbrown-0.11.2.crate https://crates.io/api/v1/crates/hashlink/0.7.0/download -> hashlink-0.7.0.crate https://crates.io/api/v1/crates/hash_hasher/2.0.3/download -> hash_hasher-2.0.3.crate https://crates.io/api/v1/crates/heapless/0.6.1/download -> heapless-0.6.1.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/hex/0.3.2/download -> hex-0.3.2.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.11.0/download -> hmac-0.11.0.crate https://crates.io/api/v1/crates/hmac-sha1/0.1.3/download -> hmac-sha1-0.1.3.crate https://crates.io/api/v1/crates/html5ever/0.25.1/download -> html5ever-0.25.1.crate https://crates.io/api/v1/crates/htmlescape/0.3.1/download -> htmlescape-0.3.1.crate https://crates.io/api/v1/crates/httparse/1.5.1/download -> httparse-1.5.1.crate https://crates.io/api/v1/crates/httpdate/1.0.1/download -> httpdate-1.0.1.crate https://crates.io/api/v1/crates/http/0.2.4/download -> http-0.2.4.crate https://crates.io/api/v1/crates/http-body/0.4.3/download -> http-body-0.4.3.crate https://crates.io/api/v1/crates/humantime/1.3.0/download -> humantime-1.3.0.crate https://crates.io/api/v1/crates/hyper/0.14.12/download -> hyper-0.14.12.crate https://crates.io/api/v1/crates/hyper-tls/0.5.0/download -> hyper-tls-0.5.0.crate https://crates.io/api/v1/crates/ical/0.7.0/download -> ical-0.7.0.crate https://crates.io/api/v1/crates/idna/0.2.3/download -> idna-0.2.3.crate https://crates.io/api/v1/crates/image/0.22.5/download -> image-0.22.5.crate https://crates.io/api/v1/crates/image/0.23.14/download -> image-0.23.14.crate https://crates.io/api/v1/crates/indexmap/1.7.0/download -> indexmap-1.7.0.crate https://crates.io/api/v1/crates/inflate/0.4.5/download -> inflate-0.4.5.crate https://crates.io/api/v1/crates/instant/0.1.10/download -> instant-0.1.10.crate https://crates.io/api/v1/crates/insta/1.7.2/download -> insta-1.7.2.crate https://crates.io/api/v1/crates/integer-encoding/3.0.2/download -> integer-encoding-3.0.2.crate https://crates.io/api/v1/crates/iovec/0.1.4/download -> iovec-0.1.4.crate https://crates.io/api/v1/crates/ipnet/2.3.1/download -> ipnet-2.3.1.crate https://crates.io/api/v1/crates/is_executable/1.0.1/download -> is_executable-1.0.1.crate https://crates.io/api/v1/crates/itertools/0.10.1/download -> itertools-0.10.1.crate https://crates.io/api/v1/crates/itoa/0.4.8/download -> itoa-0.4.8.crate https://crates.io/api/v1/crates/jobserver/0.1.24/download -> jobserver-0.1.24.crate https://crates.io/api/v1/crates/jpeg-decoder/0.1.22/download -> jpeg-decoder-0.1.22.crate https://crates.io/api/v1/crates/js-sys/0.3.53/download -> js-sys-0.3.53.crate https://crates.io/api/v1/crates/lazycell/1.3.0/download -> lazycell-1.3.0.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/lexical/6.0.0/download -> lexical-6.0.0.crate https://crates.io/api/v1/crates/lexical-core/0.8.0/download -> lexical-core-0.8.0.crate https://crates.io/api/v1/crates/lexical-parse-float/0.8.0/download -> lexical-parse-float-0.8.0.crate https://crates.io/api/v1/crates/lexical-parse-integer/0.8.0/download -> lexical-parse-integer-0.8.0.crate https://crates.io/api/v1/crates/lexical-util/0.8.1/download -> lexical-util-0.8.1.crate https://crates.io/api/v1/crates/lexical-write-float/0.8.0/download -> lexical-write-float-0.8.0.crate https://crates.io/api/v1/crates/lexical-write-integer/0.8.0/download -> lexical-write-integer-0.8.0.crate https://crates.io/api/v1/crates/libc/0.2.101/download -> libc-0.2.101.crate https://crates.io/api/v1/crates/libgit2-sys/0.12.22+1.1.0/download -> libgit2-sys-0.12.22+1.1.0.crate https://crates.io/api/v1/crates/libm/0.2.1/download -> libm-0.2.1.crate https://crates.io/api/v1/crates/libsqlite3-sys/0.22.2/download -> libsqlite3-sys-0.22.2.crate https://crates.io/api/v1/crates/libz-sys/1.1.3/download -> libz-sys-1.1.3.crate https://crates.io/api/v1/crates/line-wrap/0.1.1/download -> line-wrap-0.1.1.crate https://crates.io/api/v1/crates/linked-hash-map/0.5.4/download -> linked-hash-map-0.5.4.crate https://crates.io/api/v1/crates/lock_api/0.4.5/download -> lock_api-0.4.5.crate https://crates.io/api/v1/crates/log/0.4.14/download -> log-0.4.14.crate https://crates.io/api/v1/crates/lz4/1.23.2/download -> lz4-1.23.2.crate https://crates.io/api/v1/crates/lz4-sys/1.9.2/download -> lz4-sys-1.9.2.crate https://crates.io/api/v1/crates/mac/0.1.1/download -> mac-0.1.1.crate https://crates.io/api/v1/crates/malloc_buf/0.0.6/download -> malloc_buf-0.0.6.crate https://crates.io/api/v1/crates/markup5ever/0.10.1/download -> markup5ever-0.10.1.crate https://crates.io/api/v1/crates/matches/0.1.9/download -> matches-0.1.9.crate https://crates.io/api/v1/crates/md5/0.6.1/download -> md5-0.6.1.crate https://crates.io/api/v1/crates/md5/0.7.0/download -> md5-0.7.0.crate https://crates.io/api/v1/crates/md-5/0.9.1/download -> md-5-0.9.1.crate https://crates.io/api/v1/crates/memchr/2.4.1/download -> memchr-2.4.1.crate https://crates.io/api/v1/crates/memmap2/0.2.3/download -> memmap2-0.2.3.crate https://crates.io/api/v1/crates/memoffset/0.6.4/download -> memoffset-0.6.4.crate https://crates.io/api/v1/crates/meval/0.2.0/download -> meval-0.2.0.crate https://crates.io/api/v1/crates/mime/0.3.16/download -> mime-0.3.16.crate https://crates.io/api/v1/crates/mime_guess/2.0.3/download -> mime_guess-2.0.3.crate https://crates.io/api/v1/crates/miniz_oxide/0.3.7/download -> miniz_oxide-0.3.7.crate https://crates.io/api/v1/crates/miniz_oxide/0.4.4/download -> miniz_oxide-0.4.4.crate https://crates.io/api/v1/crates/miow/0.3.7/download -> miow-0.3.7.crate https://crates.io/api/v1/crates/mio/0.7.13/download -> mio-0.7.13.crate https://crates.io/api/v1/crates/mp4/0.8.3/download -> mp4-0.8.3.crate https://crates.io/api/v1/crates/multiversion/0.6.1/download -> multiversion-0.6.1.crate https://crates.io/api/v1/crates/multiversion-macros/0.6.1/download -> multiversion-macros-0.6.1.crate https://crates.io/api/v1/crates/native-tls/0.2.8/download -> native-tls-0.2.8.crate https://crates.io/api/v1/crates/neso/0.5.0/download -> neso-0.5.0.crate https://crates.io/api/v1/crates/new_debug_unreachable/1.0.4/download -> new_debug_unreachable-1.0.4.crate https://crates.io/api/v1/crates/nibble_vec/0.1.0/download -> nibble_vec-0.1.0.crate https://crates.io/api/v1/crates/nix/0.20.1/download -> nix-0.20.1.crate https://crates.io/api/v1/crates/nix/0.22.1/download -> nix-0.22.1.crate https://crates.io/api/v1/crates/nodrop/0.1.14/download -> nodrop-0.1.14.crate https://crates.io/api/v1/crates/nom/1.2.4/download -> nom-1.2.4.crate https://crates.io/api/v1/crates/ntapi/0.3.6/download -> ntapi-0.3.6.crate https://crates.io/api/v1/crates/num/0.2.1/download -> num-0.2.1.crate https://crates.io/api/v1/crates/num/0.4.0/download -> num-0.4.0.crate https://crates.io/api/v1/crates/num-bigint/0.2.6/download -> num-bigint-0.2.6.crate https://crates.io/api/v1/crates/num-bigint/0.3.3/download -> num-bigint-0.3.3.crate https://crates.io/api/v1/crates/num-bigint/0.4.2/download -> num-bigint-0.4.2.crate https://crates.io/api/v1/crates/num-complex/0.2.4/download -> num-complex-0.2.4.crate https://crates.io/api/v1/crates/num-complex/0.4.0/download -> num-complex-0.4.0.crate https://crates.io/api/v1/crates/num-format/0.4.0/download -> num-format-0.4.0.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-iter/0.1.42/download -> num-iter-0.1.42.crate https://crates.io/api/v1/crates/num-rational/0.2.4/download -> num-rational-0.2.4.crate https://crates.io/api/v1/crates/num-rational/0.3.2/download -> num-rational-0.3.2.crate https://crates.io/api/v1/crates/num-rational/0.4.0/download -> num-rational-0.4.0.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/num_cpus/1.13.0/download -> num_cpus-1.13.0.crate https://crates.io/api/v1/crates/nu/0.39.0/download -> nu-0.39.0.crate https://crates.io/api/v1/crates/nu-ansi-term/0.39.0/download -> nu-ansi-term-0.39.0.crate https://crates.io/api/v1/crates/nu-cli/0.39.0/download -> nu-cli-0.39.0.crate https://crates.io/api/v1/crates/nu-command/0.39.0/download -> nu-command-0.39.0.crate https://crates.io/api/v1/crates/nu-completion/0.39.0/download -> nu-completion-0.39.0.crate https://crates.io/api/v1/crates/nu-data/0.39.0/download -> nu-data-0.39.0.crate https://crates.io/api/v1/crates/nu-engine/0.39.0/download -> nu-engine-0.39.0.crate https://crates.io/api/v1/crates/nu-errors/0.39.0/download -> nu-errors-0.39.0.crate https://crates.io/api/v1/crates/nu-json/0.39.0/download -> nu-json-0.39.0.crate https://crates.io/api/v1/crates/nu-parser/0.39.0/download -> nu-parser-0.39.0.crate https://crates.io/api/v1/crates/nu-path/0.39.0/download -> nu-path-0.39.0.crate https://crates.io/api/v1/crates/nu-plugin/0.39.0/download -> nu-plugin-0.39.0.crate https://crates.io/api/v1/crates/nu-pretty-hex/0.39.0/download -> nu-pretty-hex-0.39.0.crate https://crates.io/api/v1/crates/nu-protocol/0.39.0/download -> nu-protocol-0.39.0.crate https://crates.io/api/v1/crates/nu-serde/0.39.0/download -> nu-serde-0.39.0.crate https://crates.io/api/v1/crates/nu-source/0.39.0/download -> nu-source-0.39.0.crate https://crates.io/api/v1/crates/nu-stream/0.39.0/download -> nu-stream-0.39.0.crate https://crates.io/api/v1/crates/nu-table/0.39.0/download -> nu-table-0.39.0.crate https://crates.io/api/v1/crates/nu-test-support/0.39.0/download -> nu-test-support-0.39.0.crate https://crates.io/api/v1/crates/nu-value-ext/0.39.0/download -> nu-value-ext-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_binaryview/0.39.0/download -> nu_plugin_binaryview-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_chart/0.39.0/download -> nu_plugin_chart-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_from_bson/0.39.0/download -> nu_plugin_from_bson-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_from_mp4/0.1.0/download -> nu_plugin_from_mp4-0.1.0.crate https://crates.io/api/v1/crates/nu_plugin_from_sqlite/0.39.0/download -> nu_plugin_from_sqlite-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_inc/0.39.0/download -> nu_plugin_inc-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_match/0.39.0/download -> nu_plugin_match-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_query_json/0.39.0/download -> nu_plugin_query_json-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_s3/0.39.0/download -> nu_plugin_s3-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_selector/0.39.0/download -> nu_plugin_selector-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_start/0.39.0/download -> nu_plugin_start-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_textview/0.39.0/download -> nu_plugin_textview-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_to_bson/0.39.0/download -> nu_plugin_to_bson-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_to_sqlite/0.39.0/download -> nu_plugin_to_sqlite-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_tree/0.39.0/download -> nu_plugin_tree-0.39.0.crate https://crates.io/api/v1/crates/nu_plugin_xpath/0.39.0/download -> nu_plugin_xpath-0.39.0.crate https://crates.io/api/v1/crates/objc/0.2.7/download -> objc-0.2.7.crate https://crates.io/api/v1/crates/objc-foundation/0.1.1/download -> objc-foundation-0.1.1.crate https://crates.io/api/v1/crates/objc_id/0.1.1/download -> objc_id-0.1.1.crate https://crates.io/api/v1/crates/object/0.26.2/download -> object-0.26.2.crate https://crates.io/api/v1/crates/once_cell/1.8.0/download -> once_cell-1.8.0.crate https://crates.io/api/v1/crates/onig/6.2.0/download -> onig-6.2.0.crate https://crates.io/api/v1/crates/onig_sys/69.7.0/download -> onig_sys-69.7.0.crate https://crates.io/api/v1/crates/opaque-debug/0.3.0/download -> opaque-debug-0.3.0.crate https://crates.io/api/v1/crates/openssl/0.10.36/download -> openssl-0.10.36.crate https://crates.io/api/v1/crates/openssl-probe/0.1.4/download -> openssl-probe-0.1.4.crate https://crates.io/api/v1/crates/openssl-sys/0.9.66/download -> openssl-sys-0.9.66.crate https://crates.io/api/v1/crates/open/1.7.1/download -> open-1.7.1.crate https://crates.io/api/v1/crates/ordered-float/1.1.1/download -> ordered-float-1.1.1.crate https://crates.io/api/v1/crates/overload/0.1.1/download -> overload-0.1.1.crate https://crates.io/api/v1/crates/parking_lot/0.11.2/download -> parking_lot-0.11.2.crate https://crates.io/api/v1/crates/parking_lot_core/0.8.4/download -> parking_lot_core-0.8.4.crate https://crates.io/api/v1/crates/parquet2/0.4.0/download -> parquet2-0.4.0.crate https://crates.io/api/v1/crates/parquet-format-async-temp/0.2.0/download -> parquet-format-async-temp-0.2.0.crate https://crates.io/api/v1/crates/parse-zoneinfo/0.3.0/download -> parse-zoneinfo-0.3.0.crate https://crates.io/api/v1/crates/pathdiff/0.2.0/download -> pathdiff-0.2.0.crate https://crates.io/api/v1/crates/path_abs/0.5.1/download -> path_abs-0.5.1.crate https://crates.io/api/v1/crates/percent-encoding/2.1.0/download -> percent-encoding-2.1.0.crate https://crates.io/api/v1/crates/peresil/0.3.0/download -> peresil-0.3.0.crate https://crates.io/api/v1/crates/pest/2.1.3/download -> pest-2.1.3.crate https://crates.io/api/v1/crates/phf/0.8.0/download -> phf-0.8.0.crate https://crates.io/api/v1/crates/phf_codegen/0.8.0/download -> phf_codegen-0.8.0.crate https://crates.io/api/v1/crates/phf_generator/0.8.0/download -> phf_generator-0.8.0.crate https://crates.io/api/v1/crates/phf_macros/0.8.0/download -> phf_macros-0.8.0.crate https://crates.io/api/v1/crates/phf_shared/0.8.0/download -> phf_shared-0.8.0.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.7/download -> pin-project-lite-0.2.7.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/pkg-config/0.3.19/download -> pkg-config-0.3.19.crate https://crates.io/api/v1/crates/plist/1.2.1/download -> plist-1.2.1.crate https://crates.io/api/v1/crates/png/0.15.3/download -> png-0.15.3.crate https://crates.io/api/v1/crates/png/0.16.8/download -> png-0.16.8.crate https://crates.io/api/v1/crates/polars/0.16.0/download -> polars-0.16.0.crate https://crates.io/api/v1/crates/polars-arrow/0.16.0/download -> polars-arrow-0.16.0.crate https://crates.io/api/v1/crates/polars-core/0.16.0/download -> polars-core-0.16.0.crate https://crates.io/api/v1/crates/polars-io/0.16.0/download -> polars-io-0.16.0.crate https://crates.io/api/v1/crates/polars-lazy/0.16.0/download -> polars-lazy-0.16.0.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.10/download -> ppv-lite86-0.2.10.crate https://crates.io/api/v1/crates/precomputed-hash/0.1.1/download -> precomputed-hash-0.1.1.crate https://crates.io/api/v1/crates/prettytable-rs/0.8.0/download -> prettytable-rs-0.8.0.crate https://crates.io/api/v1/crates/pretty/0.5.2/download -> pretty-0.5.2.crate https://crates.io/api/v1/crates/pretty_env_logger/0.4.0/download -> pretty_env_logger-0.4.0.crate https://crates.io/api/v1/crates/proc-macro2/1.0.28/download -> proc-macro2-1.0.28.crate https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download -> proc-macro-error-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download -> proc-macro-error-attr-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-hack/0.5.19/download -> proc-macro-hack-0.5.19.crate https://crates.io/api/v1/crates/proc-macro-nested/0.1.7/download -> proc-macro-nested-0.1.7.crate https://crates.io/api/v1/crates/ptree/0.3.2/download -> ptree-0.3.2.crate https://crates.io/api/v1/crates/quickcheck/1.0.3/download -> quickcheck-1.0.3.crate https://crates.io/api/v1/crates/quickcheck_macros/1.0.0/download -> quickcheck_macros-1.0.0.crate https://crates.io/api/v1/crates/quick-error/1.2.3/download -> quick-error-1.2.3.crate https://crates.io/api/v1/crates/quick-xml/0.19.0/download -> quick-xml-0.19.0.crate https://crates.io/api/v1/crates/quick-xml/0.22.0/download -> quick-xml-0.22.0.crate https://crates.io/api/v1/crates/quote/1.0.9/download -> quote-1.0.9.crate https://crates.io/api/v1/crates/radix_trie/0.2.1/download -> radix_trie-0.2.1.crate https://crates.io/api/v1/crates/rand/0.3.23/download -> rand-0.3.23.crate https://crates.io/api/v1/crates/rand/0.4.6/download -> rand-0.4.6.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand/0.8.4/download -> rand-0.8.4.crate https://crates.io/api/v1/crates/rand_chacha/0.2.2/download -> rand_chacha-0.2.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_core/0.3.1/download -> rand_core-0.3.1.crate https://crates.io/api/v1/crates/rand_core/0.4.2/download -> rand_core-0.4.2.crate https://crates.io/api/v1/crates/rand_core/0.5.1/download -> rand_core-0.5.1.crate https://crates.io/api/v1/crates/rand_core/0.6.3/download -> rand_core-0.6.3.crate https://crates.io/api/v1/crates/rand_distr/0.3.0/download -> rand_distr-0.3.0.crate https://crates.io/api/v1/crates/rand_hc/0.2.0/download -> rand_hc-0.2.0.crate https://crates.io/api/v1/crates/rand_hc/0.3.1/download -> rand_hc-0.3.1.crate https://crates.io/api/v1/crates/rand_pcg/0.2.1/download -> rand_pcg-0.2.1.crate https://crates.io/api/v1/crates/rawkey/0.1.3/download -> rawkey-0.1.3.crate https://crates.io/api/v1/crates/rayon/1.5.1/download -> rayon-1.5.1.crate https://crates.io/api/v1/crates/rayon-core/1.9.1/download -> rayon-core-1.9.1.crate https://crates.io/api/v1/crates/rdrand/0.4.0/download -> rdrand-0.4.0.crate https://crates.io/api/v1/crates/readkey/0.1.7/download -> readkey-0.1.7.crate https://crates.io/api/v1/crates/redox_syscall/0.1.57/download -> redox_syscall-0.1.57.crate https://crates.io/api/v1/crates/redox_syscall/0.2.10/download -> redox_syscall-0.2.10.crate https://crates.io/api/v1/crates/redox_users/0.3.5/download -> redox_users-0.3.5.crate https://crates.io/api/v1/crates/redox_users/0.4.0/download -> redox_users-0.4.0.crate https://crates.io/api/v1/crates/regex/1.5.4/download -> regex-1.5.4.crate https://crates.io/api/v1/crates/regex-automata/0.1.10/download -> regex-automata-0.1.10.crate https://crates.io/api/v1/crates/regex-syntax/0.6.25/download -> regex-syntax-0.6.25.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/reqwest/0.11.4/download -> reqwest-0.11.4.crate https://crates.io/api/v1/crates/result/1.0.0/download -> result-1.0.0.crate https://crates.io/api/v1/crates/roxmltree/0.14.1/download -> roxmltree-0.14.1.crate https://crates.io/api/v1/crates/rstest/0.10.0/download -> rstest-0.10.0.crate https://crates.io/api/v1/crates/rusqlite/0.25.3/download -> rusqlite-0.25.3.crate https://crates.io/api/v1/crates/rustc-demangle/0.1.21/download -> rustc-demangle-0.1.21.crate https://crates.io/api/v1/crates/rustc-serialize/0.3.24/download -> rustc-serialize-0.3.24.crate https://crates.io/api/v1/crates/rustc_version/0.3.3/download -> rustc_version-0.3.3.crate https://crates.io/api/v1/crates/rustversion/1.0.5/download -> rustversion-1.0.5.crate https://crates.io/api/v1/crates/rustyline/9.0.0/download -> rustyline-9.0.0.crate https://crates.io/api/v1/crates/rust-argon2/0.8.3/download -> rust-argon2-0.8.3.crate https://crates.io/api/v1/crates/rust-crypto/0.2.36/download -> rust-crypto-0.2.36.crate https://crates.io/api/v1/crates/rust-embed/5.9.0/download -> rust-embed-5.9.0.crate https://crates.io/api/v1/crates/rust-embed-impl/5.9.0/download -> rust-embed-impl-5.9.0.crate https://crates.io/api/v1/crates/rust-embed-utils/5.1.0/download -> rust-embed-utils-5.1.0.crate https://crates.io/api/v1/crates/rust_decimal/0.10.2/download -> rust_decimal-0.10.2.crate https://crates.io/api/v1/crates/ryu/1.0.5/download -> ryu-1.0.5.crate https://crates.io/api/v1/crates/s3handler/0.7.4/download -> s3handler-0.7.4.crate https://crates.io/api/v1/crates/safemem/0.3.3/download -> safemem-0.3.3.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.19/download -> schannel-0.1.19.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/scraper/0.12.0/download -> scraper-0.12.0.crate https://crates.io/api/v1/crates/security-framework/2.3.1/download -> security-framework-2.3.1.crate https://crates.io/api/v1/crates/security-framework-sys/2.4.0/download -> security-framework-sys-2.4.0.crate https://crates.io/api/v1/crates/selectors/0.22.0/download -> selectors-0.22.0.crate https://crates.io/api/v1/crates/semver/0.11.0/download -> semver-0.11.0.crate https://crates.io/api/v1/crates/semver-parser/0.10.2/download -> semver-parser-0.10.2.crate https://crates.io/api/v1/crates/serde/1.0.129/download -> serde-1.0.129.crate https://crates.io/api/v1/crates/serde_bytes/0.11.5/download -> serde_bytes-0.11.5.crate https://crates.io/api/v1/crates/serde_derive/1.0.129/download -> serde_derive-1.0.129.crate https://crates.io/api/v1/crates/serde_ini/0.2.0/download -> serde_ini-0.2.0.crate https://crates.io/api/v1/crates/serde_json/1.0.66/download -> serde_json-1.0.66.crate https://crates.io/api/v1/crates/serde_test/1.0.129/download -> serde_test-1.0.129.crate https://crates.io/api/v1/crates/serde_urlencoded/0.7.0/download -> serde_urlencoded-0.7.0.crate https://crates.io/api/v1/crates/serde_yaml/0.8.20/download -> serde_yaml-0.8.20.crate https://crates.io/api/v1/crates/serial_test/0.5.1/download -> serial_test-0.5.1.crate https://crates.io/api/v1/crates/serial_test_derive/0.5.1/download -> serial_test_derive-0.5.1.crate https://crates.io/api/v1/crates/servo_arc/0.1.1/download -> servo_arc-0.1.1.crate https://crates.io/api/v1/crates/sha1/0.2.0/download -> sha1-0.2.0.crate https://crates.io/api/v1/crates/sha2/0.9.6/download -> sha2-0.9.6.crate https://crates.io/api/v1/crates/shadow-rs/0.6.13/download -> shadow-rs-0.6.13.crate https://crates.io/api/v1/crates/shell-escape/0.1.5/download -> shell-escape-0.1.5.crate https://crates.io/api/v1/crates/shell-words/1.0.0/download -> shell-words-1.0.0.crate https://crates.io/api/v1/crates/signal-hook/0.1.17/download -> signal-hook-0.1.17.crate https://crates.io/api/v1/crates/signal-hook-registry/1.4.0/download -> signal-hook-registry-1.4.0.crate https://crates.io/api/v1/crates/similar/1.3.0/download -> similar-1.3.0.crate https://crates.io/api/v1/crates/siphasher/0.3.6/download -> siphasher-0.3.6.crate https://crates.io/api/v1/crates/slab/0.4.4/download -> slab-0.4.4.crate https://crates.io/api/v1/crates/smallvec/1.6.1/download -> smallvec-1.6.1.crate https://crates.io/api/v1/crates/smart-default/0.6.0/download -> smart-default-0.6.0.crate https://crates.io/api/v1/crates/snap/1.0.5/download -> snap-1.0.5.crate https://crates.io/api/v1/crates/socket2/0.4.1/download -> socket2-0.4.1.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/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/std_prelude/0.2.12/download -> std_prelude-0.2.12.crate https://crates.io/api/v1/crates/streaming-iterator/0.1.5/download -> streaming-iterator-0.1.5.crate https://crates.io/api/v1/crates/strength_reduce/0.2.3/download -> strength_reduce-0.2.3.crate https://crates.io/api/v1/crates/string_cache/0.8.1/download -> string_cache-0.8.1.crate https://crates.io/api/v1/crates/string_cache_codegen/0.5.1/download -> string_cache_codegen-0.5.1.crate https://crates.io/api/v1/crates/strip-ansi-escapes/0.1.1/download -> strip-ansi-escapes-0.1.1.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/str-buf/1.0.5/download -> str-buf-1.0.5.crate https://crates.io/api/v1/crates/subtle/2.4.1/download -> subtle-2.4.1.crate https://crates.io/api/v1/crates/sxd-document/0.3.2/download -> sxd-document-0.3.2.crate https://crates.io/api/v1/crates/sxd-xpath/0.4.2/download -> sxd-xpath-0.4.2.crate https://crates.io/api/v1/crates/synstructure/0.12.5/download -> synstructure-0.12.5.crate https://crates.io/api/v1/crates/syntect/4.6.0/download -> syntect-4.6.0.crate https://crates.io/api/v1/crates/syn/1.0.75/download -> syn-1.0.75.crate https://crates.io/api/v1/crates/sysinfo/0.20.2/download -> sysinfo-0.20.2.crate https://crates.io/api/v1/crates/sys-info/0.9.0/download -> sys-info-0.9.0.crate https://crates.io/api/v1/crates/sys-locale/0.1.0/download -> sys-locale-0.1.0.crate https://crates.io/api/v1/crates/tempfile/3.2.0/download -> tempfile-3.2.0.crate https://crates.io/api/v1/crates/tendril/0.4.2/download -> tendril-0.4.2.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/terminal_size/0.1.17/download -> terminal_size-0.1.17.crate https://crates.io/api/v1/crates/term/0.5.2/download -> term-0.5.2.crate https://crates.io/api/v1/crates/term/0.7.0/download -> term-0.7.0.crate https://crates.io/api/v1/crates/term_size/0.3.2/download -> term_size-0.3.2.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thin-slice/0.1.1/download -> thin-slice-0.1.1.crate https://crates.io/api/v1/crates/thiserror/1.0.26/download -> thiserror-1.0.26.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.26/download -> thiserror-impl-1.0.26.crate https://crates.io/api/v1/crates/tiff/0.6.1/download -> tiff-0.6.1.crate https://crates.io/api/v1/crates/time/0.1.44/download -> time-0.1.44.crate https://crates.io/api/v1/crates/tinyvec/1.3.1/download -> tinyvec-1.3.1.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.0/download -> tinyvec_macros-0.1.0.crate https://crates.io/api/v1/crates/titlecase/1.1.0/download -> titlecase-1.1.0.crate https://crates.io/api/v1/crates/tokio/1.10.1/download -> tokio-1.10.1.crate https://crates.io/api/v1/crates/tokio-io/0.1.13/download -> tokio-io-0.1.13.crate https://crates.io/api/v1/crates/tokio-macros/1.3.0/download -> tokio-macros-1.3.0.crate https://crates.io/api/v1/crates/tokio-native-tls/0.3.0/download -> tokio-native-tls-0.3.0.crate https://crates.io/api/v1/crates/tokio-util/0.6.7/download -> tokio-util-0.6.7.crate https://crates.io/api/v1/crates/toml/0.5.8/download -> toml-0.5.8.crate https://crates.io/api/v1/crates/tower-service/0.3.1/download -> tower-service-0.3.1.crate https://crates.io/api/v1/crates/tracing/0.1.26/download -> tracing-0.1.26.crate https://crates.io/api/v1/crates/tracing-core/0.1.19/download -> tracing-core-0.1.19.crate https://crates.io/api/v1/crates/trash/1.3.0/download -> trash-1.3.0.crate https://crates.io/api/v1/crates/try-lock/0.2.3/download -> try-lock-0.2.3.crate https://crates.io/api/v1/crates/tui/0.15.0/download -> tui-0.15.0.crate https://crates.io/api/v1/crates/typed-arena/1.7.0/download -> typed-arena-1.7.0.crate https://crates.io/api/v1/crates/typenum/1.13.0/download -> typenum-1.13.0.crate https://crates.io/api/v1/crates/ucd-trie/0.1.3/download -> ucd-trie-0.1.3.crate https://crates.io/api/v1/crates/umask/1.0.0/download -> umask-1.0.0.crate https://crates.io/api/v1/crates/unicase/2.6.0/download -> unicase-2.6.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.6/download -> unicode-bidi-0.3.6.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.19/download -> unicode-normalization-0.1.19.crate https://crates.io/api/v1/crates/unicode-segmentation/1.8.0/download -> unicode-segmentation-1.8.0.crate https://crates.io/api/v1/crates/unicode-width/0.1.8/download -> unicode-width-0.1.8.crate https://crates.io/api/v1/crates/unicode-xid/0.2.2/download -> unicode-xid-0.2.2.crate https://crates.io/api/v1/crates/unsafe_unwrap/0.1.0/download -> unsafe_unwrap-0.1.0.crate https://crates.io/api/v1/crates/url/2.2.2/download -> url-2.2.2.crate https://crates.io/api/v1/crates/user32-sys/0.2.0/download -> user32-sys-0.2.0.crate https://crates.io/api/v1/crates/users/0.11.0/download -> users-0.11.0.crate https://crates.io/api/v1/crates/utf8parse/0.2.0/download -> utf8parse-0.2.0.crate https://crates.io/api/v1/crates/utf8-width/0.1.5/download -> utf8-width-0.1.5.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/uuid/0.8.2/download -> uuid-0.8.2.crate https://crates.io/api/v1/crates/vcpkg/0.2.15/download -> vcpkg-0.2.15.crate https://crates.io/api/v1/crates/vec_map/0.8.2/download -> vec_map-0.8.2.crate https://crates.io/api/v1/crates/version_check/0.9.3/download -> version_check-0.9.3.crate https://crates.io/api/v1/crates/void/1.0.2/download -> void-1.0.2.crate https://crates.io/api/v1/crates/vte/0.10.1/download -> vte-0.10.1.crate https://crates.io/api/v1/crates/vte_generate_state_changes/0.1.1/download -> vte_generate_state_changes-0.1.1.crate https://crates.io/api/v1/crates/walkdir/2.3.2/download -> walkdir-2.3.2.crate https://crates.io/api/v1/crates/want/0.3.0/download -> want-0.3.0.crate https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.10.0+wasi-snapshot-preview1/download -> wasi-0.10.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.76/download -> wasm-bindgen-0.2.76.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.76/download -> wasm-bindgen-backend-0.2.76.crate https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.26/download -> wasm-bindgen-futures-0.4.26.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.76/download -> wasm-bindgen-macro-0.2.76.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.76/download -> wasm-bindgen-macro-support-0.2.76.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.76/download -> wasm-bindgen-shared-0.2.76.crate https://crates.io/api/v1/crates/webbrowser/0.5.5/download -> webbrowser-0.5.5.crate https://crates.io/api/v1/crates/web-sys/0.3.53/download -> web-sys-0.3.53.crate https://crates.io/api/v1/crates/weezl/0.1.5/download -> weezl-0.1.5.crate https://crates.io/api/v1/crates/which/4.2.2/download -> which-4.2.2.crate https://crates.io/api/v1/crates/widestring/0.4.3/download -> widestring-0.4.3.crate https://crates.io/api/v1/crates/wild/2.0.4/download -> wild-2.0.4.crate https://crates.io/api/v1/crates/winapi/0.2.8/download -> winapi-0.2.8.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-build/0.1.1/download -> winapi-build-0.1.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.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-wsapoll/0.1.1/download -> winapi-wsapoll-0.1.1.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/winreg/0.7.0/download -> winreg-0.7.0.crate https://crates.io/api/v1/crates/x11rb/0.8.1/download -> x11rb-0.8.1.crate https://crates.io/api/v1/crates/x11/2.18.2/download -> x11-2.18.2.crate https://crates.io/api/v1/crates/xmlparser/0.13.3/download -> xmlparser-0.13.3.crate https://crates.io/api/v1/crates/xml-rs/0.8.4/download -> xml-rs-0.8.4.crate https://crates.io/api/v1/crates/yaml-rust/0.4.5/download -> yaml-rust-0.4.5.crate https://crates.io/api/v1/crates/zip/0.5.13/download -> zip-0.5.13.crate https://crates.io/api/v1/crates/zstd/0.9.0+zstd.1.5.0/download -> zstd-0.9.0+zstd.1.5.0.crate https://crates.io/api/v1/crates/zstd-safe/4.1.1+zstd.1.5.0/download -> zstd-safe-4.1.1+zstd.1.5.0.crate https://crates.io/api/v1/crates/zstd-sys/1.6.1+zstd.1.5.0/download -> zstd-sys-1.6.1+zstd.1.5.0.crate -_eclasses_=cargo c7fefacaebdcb455d2a7b59429eb47a6 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=b505b4feff754b30e105055ab0b8e8c9 diff --git a/metadata/md5-cache/app-shells/nushell-0.40.0 b/metadata/md5-cache/app-shells/nushell-0.40.0 deleted file mode 100644 index bc81803f97c7..000000000000 --- a/metadata/md5-cache/app-shells/nushell-0.40.0 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=>=virtual/rust-1.51 virtual/pkgconfig >=virtual/rust-1.37.0 -DEFINED_PHASES=compile configure install test unpack -DEPEND=>=dev-libs/libgit2-0.99:= dev-libs/oniguruma:= dev-libs/openssl:0= net-libs/libssh2:= net-libs/nghttp2:= net-misc/curl extra? ( dev-db/sqlite:3= x11-libs/libX11 x11-libs/libxcb ) -DESCRIPTION=A new type of shell, written in Rust -EAPI=7 -HOMEPAGE=https://www.nushell.sh -IUSE=+extra debug -KEYWORDS=~amd64 ~arm64 ~ppc64 -LICENSE=Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD Boost-1.0 CC0-1.0 ISC LGPL-3+ MIT MPL-2.0 Unlicense ZLIB -RDEPEND=>=dev-libs/libgit2-0.99:= dev-libs/oniguruma:= dev-libs/openssl:0= net-libs/libssh2:= net-libs/nghttp2:= net-misc/curl extra? ( dev-db/sqlite:3= x11-libs/libX11 x11-libs/libxcb ) -SLOT=0 -SRC_URI=https://github.com/nushell/nushell/archive/0.40.0.tar.gz -> nushell-0.40.0.tar.gz https://crates.io/api/v1/crates/Inflector/0.11.4/download -> Inflector-0.11.4.crate https://crates.io/api/v1/crates/addr2line/0.16.0/download -> addr2line-0.16.0.crate https://crates.io/api/v1/crates/adler32/1.2.0/download -> adler32-1.2.0.crate https://crates.io/api/v1/crates/adler/1.0.2/download -> adler-1.0.2.crate https://crates.io/api/v1/crates/ahash/0.7.4/download -> ahash-0.7.4.crate https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/alloc-no-stdlib/2.0.3/download -> alloc-no-stdlib-2.0.3.crate https://crates.io/api/v1/crates/alloc-stdlib/0.2.1/download -> alloc-stdlib-0.2.1.crate https://crates.io/api/v1/crates/ansi_colours/1.0.4/download -> ansi_colours-1.0.4.crate https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/anyhow/1.0.43/download -> anyhow-1.0.43.crate https://crates.io/api/v1/crates/arboard/1.2.1/download -> arboard-1.2.1.crate https://crates.io/api/v1/crates/arrayref/0.3.6/download -> arrayref-0.3.6.crate https://crates.io/api/v1/crates/arrayvec/0.4.12/download -> arrayvec-0.4.12.crate https://crates.io/api/v1/crates/arrayvec/0.5.2/download -> arrayvec-0.5.2.crate https://crates.io/api/v1/crates/arrow2/0.7.0/download -> arrow2-0.7.0.crate https://crates.io/api/v1/crates/arrow-format/0.3.0/download -> arrow-format-0.3.0.crate https://crates.io/api/v1/crates/async-stream/0.3.2/download -> async-stream-0.3.2.crate https://crates.io/api/v1/crates/async-stream-impl/0.3.2/download -> async-stream-impl-0.3.2.crate https://crates.io/api/v1/crates/async-trait/0.1.51/download -> async-trait-0.1.51.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/backtrace/0.3.61/download -> backtrace-0.3.61.crate https://crates.io/api/v1/crates/base64/0.13.0/download -> base64-0.13.0.crate https://crates.io/api/v1/crates/bat/0.18.3/download -> bat-0.18.3.crate https://crates.io/api/v1/crates/bigdecimal-rs/0.2.1/download -> bigdecimal-rs-0.2.1.crate https://crates.io/api/v1/crates/bincode/1.3.3/download -> bincode-1.3.3.crate https://crates.io/api/v1/crates/bitflags/1.2.1/download -> bitflags-1.2.1.crate https://crates.io/api/v1/crates/bitpacking/0.8.4/download -> bitpacking-0.8.4.crate https://crates.io/api/v1/crates/bit-set/0.5.2/download -> bit-set-0.5.2.crate https://crates.io/api/v1/crates/bit-vec/0.6.3/download -> bit-vec-0.6.3.crate https://crates.io/api/v1/crates/blake2b_simd/0.5.11/download -> blake2b_simd-0.5.11.crate https://crates.io/api/v1/crates/block/0.1.6/download -> block-0.1.6.crate https://crates.io/api/v1/crates/block-buffer/0.9.0/download -> block-buffer-0.9.0.crate https://crates.io/api/v1/crates/brotli/3.3.2/download -> brotli-3.3.2.crate https://crates.io/api/v1/crates/brotli-decompressor/2.3.2/download -> brotli-decompressor-2.3.2.crate https://crates.io/api/v1/crates/bson/2.0.1/download -> bson-2.0.1.crate https://crates.io/api/v1/crates/bstr/0.2.16/download -> bstr-0.2.16.crate https://crates.io/api/v1/crates/bugreport/0.4.1/download -> bugreport-0.4.1.crate https://crates.io/api/v1/crates/bumpalo/3.7.0/download -> bumpalo-3.7.0.crate https://crates.io/api/v1/crates/bytemuck/1.7.2/download -> bytemuck-1.7.2.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes/0.4.12/download -> bytes-0.4.12.crate https://crates.io/api/v1/crates/bytes/0.5.6/download -> bytes-0.5.6.crate https://crates.io/api/v1/crates/bytes/1.1.0/download -> bytes-1.1.0.crate https://crates.io/api/v1/crates/byte-unit/4.0.12/download -> byte-unit-4.0.12.crate https://crates.io/api/v1/crates/bzip2/0.4.3/download -> bzip2-0.4.3.crate https://crates.io/api/v1/crates/bzip2-sys/0.1.11+1.0.8/download -> bzip2-sys-0.1.11+1.0.8.crate https://crates.io/api/v1/crates/calamine/0.18.0/download -> calamine-0.18.0.crate https://crates.io/api/v1/crates/cassowary/0.3.0/download -> cassowary-0.3.0.crate https://crates.io/api/v1/crates/cc/1.0.69/download -> cc-1.0.69.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/chrono-humanize/0.2.1/download -> chrono-humanize-0.2.1.crate https://crates.io/api/v1/crates/chrono-tz/0.5.3/download -> chrono-tz-0.5.3.crate https://crates.io/api/v1/crates/clap/2.33.3/download -> clap-2.33.3.crate https://crates.io/api/v1/crates/clipboard-win/4.2.1/download -> clipboard-win-4.2.1.crate https://crates.io/api/v1/crates/clircle/0.3.0/download -> clircle-0.3.0.crate https://crates.io/api/v1/crates/codepage/0.1.1/download -> codepage-0.1.1.crate https://crates.io/api/v1/crates/codespan-reporting/0.11.1/download -> codespan-reporting-0.11.1.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/common-path/1.0.0/download -> common-path-1.0.0.crate https://crates.io/api/v1/crates/console/0.14.1/download -> console-0.14.1.crate https://crates.io/api/v1/crates/constant_time_eq/0.1.5/download -> constant_time_eq-0.1.5.crate https://crates.io/api/v1/crates/content_inspector/0.2.4/download -> content_inspector-0.2.4.crate https://crates.io/api/v1/crates/convert_case/0.4.0/download -> convert_case-0.4.0.crate https://crates.io/api/v1/crates/core-foundation/0.9.1/download -> core-foundation-0.9.1.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.2/download -> core-foundation-sys-0.8.2.crate https://crates.io/api/v1/crates/core-graphics/0.21.0/download -> core-graphics-0.21.0.crate https://crates.io/api/v1/crates/cpufeatures/0.2.1/download -> cpufeatures-0.2.1.crate https://crates.io/api/v1/crates/crc32fast/1.2.1/download -> crc32fast-1.2.1.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.1/download -> crossbeam-channel-0.5.1.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.1/download -> crossbeam-deque-0.8.1.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.5/download -> crossbeam-epoch-0.9.5.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.5/download -> crossbeam-utils-0.8.5.crate https://crates.io/api/v1/crates/crossterm/0.19.0/download -> crossterm-0.19.0.crate https://crates.io/api/v1/crates/crossterm_winapi/0.7.0/download -> crossterm_winapi-0.7.0.crate https://crates.io/api/v1/crates/crunchy/0.2.2/download -> crunchy-0.2.2.crate https://crates.io/api/v1/crates/crypto-mac/0.11.1/download -> crypto-mac-0.11.1.crate https://crates.io/api/v1/crates/cssparser/0.27.2/download -> cssparser-0.27.2.crate https://crates.io/api/v1/crates/cssparser-macros/0.6.0/download -> cssparser-macros-0.6.0.crate https://crates.io/api/v1/crates/cstr_core/0.2.4/download -> cstr_core-0.2.4.crate https://crates.io/api/v1/crates/csv/1.1.6/download -> csv-1.1.6.crate https://crates.io/api/v1/crates/csv-core/0.1.10/download -> csv-core-0.1.10.crate https://crates.io/api/v1/crates/ctrlc/3.2.0/download -> ctrlc-3.2.0.crate https://crates.io/api/v1/crates/cty/0.2.1/download -> cty-0.2.1.crate https://crates.io/api/v1/crates/deflate/0.8.6/download -> deflate-0.8.6.crate https://crates.io/api/v1/crates/derive-new/0.5.9/download -> derive-new-0.5.9.crate https://crates.io/api/v1/crates/derive_more/0.99.16/download -> derive_more-0.99.16.crate https://crates.io/api/v1/crates/digest/0.9.0/download -> digest-0.9.0.crate https://crates.io/api/v1/crates/directories-next/2.0.0/download -> directories-next-2.0.0.crate https://crates.io/api/v1/crates/dirs/1.0.5/download -> dirs-1.0.5.crate https://crates.io/api/v1/crates/dirs/3.0.2/download -> dirs-3.0.2.crate https://crates.io/api/v1/crates/dirs-next/2.0.0/download -> dirs-next-2.0.0.crate https://crates.io/api/v1/crates/dirs-sys/0.3.6/download -> dirs-sys-0.3.6.crate https://crates.io/api/v1/crates/dirs-sys-next/0.1.2/download -> dirs-sys-next-0.1.2.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/dtoa/0.4.8/download -> dtoa-0.4.8.crate https://crates.io/api/v1/crates/dtoa-short/0.3.3/download -> dtoa-short-0.3.3.crate https://crates.io/api/v1/crates/dtparse/1.2.0/download -> dtparse-1.2.0.crate https://crates.io/api/v1/crates/dunce/1.0.2/download -> dunce-1.0.2.crate https://crates.io/api/v1/crates/dyn-clone/1.0.4/download -> dyn-clone-1.0.4.crate https://crates.io/api/v1/crates/ego-tree/0.6.2/download -> ego-tree-0.6.2.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/eml-parser/0.1.2/download -> eml-parser-0.1.2.crate https://crates.io/api/v1/crates/encode_unicode/0.3.6/download -> encode_unicode-0.3.6.crate https://crates.io/api/v1/crates/encoding/0.2.33/download -> encoding-0.2.33.crate https://crates.io/api/v1/crates/encoding-index-japanese/1.20141219.5/download -> encoding-index-japanese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-korean/1.20141219.5/download -> encoding-index-korean-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-simpchinese/1.20141219.5/download -> encoding-index-simpchinese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-singlebyte/1.20141219.5/download -> encoding-index-singlebyte-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-tradchinese/1.20141219.5/download -> encoding-index-tradchinese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding_index_tests/0.1.4/download -> encoding_index_tests-0.1.4.crate https://crates.io/api/v1/crates/encoding_rs/0.8.28/download -> encoding_rs-0.8.28.crate https://crates.io/api/v1/crates/endian-type/0.1.2/download -> endian-type-0.1.2.crate https://crates.io/api/v1/crates/env_logger/0.7.1/download -> env_logger-0.7.1.crate https://crates.io/api/v1/crates/env_logger/0.8.4/download -> env_logger-0.8.4.crate https://crates.io/api/v1/crates/error-chain/0.12.4/download -> error-chain-0.12.4.crate https://crates.io/api/v1/crates/error-code/2.3.0/download -> error-code-2.3.0.crate https://crates.io/api/v1/crates/failure/0.1.8/download -> failure-0.1.8.crate https://crates.io/api/v1/crates/failure_derive/0.1.8/download -> failure_derive-0.1.8.crate https://crates.io/api/v1/crates/fallible-iterator/0.2.0/download -> fallible-iterator-0.2.0.crate https://crates.io/api/v1/crates/fallible-streaming-iterator/0.1.9/download -> fallible-streaming-iterator-0.1.9.crate https://crates.io/api/v1/crates/fancy-regex/0.7.1/download -> fancy-regex-0.7.1.crate https://crates.io/api/v1/crates/fd-lock/3.0.0/download -> fd-lock-3.0.0.crate https://crates.io/api/v1/crates/filesize/0.2.0/download -> filesize-0.2.0.crate https://crates.io/api/v1/crates/flatbuffers/2.0.0/download -> flatbuffers-2.0.0.crate https://crates.io/api/v1/crates/flate2/1.0.20/download -> flate2-1.0.20.crate https://crates.io/api/v1/crates/fnv/1.0.7/download -> fnv-1.0.7.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/foreign-types-shared/0.1.1/download -> foreign-types-shared-0.1.1.crate https://crates.io/api/v1/crates/form_urlencoded/1.0.1/download -> form_urlencoded-1.0.1.crate https://crates.io/api/v1/crates/fs_extra/1.2.0/download -> fs_extra-1.2.0.crate https://crates.io/api/v1/crates/fuchsia-cprng/0.1.1/download -> fuchsia-cprng-0.1.1.crate https://crates.io/api/v1/crates/futf/0.1.4/download -> futf-0.1.4.crate https://crates.io/api/v1/crates/futures/0.1.31/download -> futures-0.1.31.crate https://crates.io/api/v1/crates/futures/0.3.16/download -> futures-0.3.16.crate https://crates.io/api/v1/crates/futures-channel/0.3.16/download -> futures-channel-0.3.16.crate https://crates.io/api/v1/crates/futures-core/0.3.16/download -> futures-core-0.3.16.crate https://crates.io/api/v1/crates/futures-executor/0.3.16/download -> futures-executor-0.3.16.crate https://crates.io/api/v1/crates/futures-io/0.3.16/download -> futures-io-0.3.16.crate https://crates.io/api/v1/crates/futures-macro/0.3.16/download -> futures-macro-0.3.16.crate https://crates.io/api/v1/crates/futures-sink/0.3.16/download -> futures-sink-0.3.16.crate https://crates.io/api/v1/crates/futures-task/0.3.16/download -> futures-task-0.3.16.crate https://crates.io/api/v1/crates/futures-util/0.3.16/download -> futures-util-0.3.16.crate https://crates.io/api/v1/crates/fxhash/0.2.1/download -> fxhash-0.2.1.crate https://crates.io/api/v1/crates/gcc/0.3.55/download -> gcc-0.3.55.crate https://crates.io/api/v1/crates/generic-array/0.14.4/download -> generic-array-0.14.4.crate https://crates.io/api/v1/crates/gethostname/0.2.1/download -> gethostname-0.2.1.crate https://crates.io/api/v1/crates/getopts/0.2.21/download -> getopts-0.2.21.crate https://crates.io/api/v1/crates/getrandom/0.1.16/download -> getrandom-0.1.16.crate https://crates.io/api/v1/crates/getrandom/0.2.3/download -> getrandom-0.2.3.crate https://crates.io/api/v1/crates/getset/0.1.1/download -> getset-0.1.1.crate https://crates.io/api/v1/crates/gimli/0.25.0/download -> gimli-0.25.0.crate https://crates.io/api/v1/crates/git2/0.13.21/download -> git2-0.13.21.crate https://crates.io/api/v1/crates/git-version/0.3.5/download -> git-version-0.3.5.crate https://crates.io/api/v1/crates/git-version-macro/0.3.5/download -> git-version-macro-0.3.5.crate https://crates.io/api/v1/crates/gjson/0.7.5/download -> gjson-0.7.5.crate https://crates.io/api/v1/crates/globset/0.4.8/download -> globset-0.4.8.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.crate https://crates.io/api/v1/crates/grep-cli/0.1.6/download -> grep-cli-0.1.6.crate https://crates.io/api/v1/crates/h2/0.3.4/download -> h2-0.3.4.crate https://crates.io/api/v1/crates/hamcrest2/0.3.0/download -> hamcrest2-0.3.0.crate https://crates.io/api/v1/crates/hash32/0.2.1/download -> hash32-0.2.1.crate https://crates.io/api/v1/crates/hashbrown/0.11.2/download -> hashbrown-0.11.2.crate https://crates.io/api/v1/crates/hashlink/0.7.0/download -> hashlink-0.7.0.crate https://crates.io/api/v1/crates/hash_hasher/2.0.3/download -> hash_hasher-2.0.3.crate https://crates.io/api/v1/crates/heapless/0.7.8/download -> heapless-0.7.8.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.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.11.0/download -> hmac-0.11.0.crate https://crates.io/api/v1/crates/hmac-sha1/0.1.3/download -> hmac-sha1-0.1.3.crate https://crates.io/api/v1/crates/html5ever/0.25.1/download -> html5ever-0.25.1.crate https://crates.io/api/v1/crates/htmlescape/0.3.1/download -> htmlescape-0.3.1.crate https://crates.io/api/v1/crates/httparse/1.5.1/download -> httparse-1.5.1.crate https://crates.io/api/v1/crates/httpdate/1.0.1/download -> httpdate-1.0.1.crate https://crates.io/api/v1/crates/http/0.2.4/download -> http-0.2.4.crate https://crates.io/api/v1/crates/http-body/0.4.3/download -> http-body-0.4.3.crate https://crates.io/api/v1/crates/humantime/1.3.0/download -> humantime-1.3.0.crate https://crates.io/api/v1/crates/hyper/0.14.12/download -> hyper-0.14.12.crate https://crates.io/api/v1/crates/hyper-tls/0.5.0/download -> hyper-tls-0.5.0.crate https://crates.io/api/v1/crates/ical/0.7.0/download -> ical-0.7.0.crate https://crates.io/api/v1/crates/idna/0.2.3/download -> idna-0.2.3.crate https://crates.io/api/v1/crates/image/0.23.14/download -> image-0.23.14.crate https://crates.io/api/v1/crates/indexmap/1.7.0/download -> indexmap-1.7.0.crate https://crates.io/api/v1/crates/instant/0.1.10/download -> instant-0.1.10.crate https://crates.io/api/v1/crates/insta/1.7.2/download -> insta-1.7.2.crate https://crates.io/api/v1/crates/integer-encoding/3.0.2/download -> integer-encoding-3.0.2.crate https://crates.io/api/v1/crates/iovec/0.1.4/download -> iovec-0.1.4.crate https://crates.io/api/v1/crates/ipnet/2.3.1/download -> ipnet-2.3.1.crate https://crates.io/api/v1/crates/is_executable/1.0.1/download -> is_executable-1.0.1.crate https://crates.io/api/v1/crates/itertools/0.10.1/download -> itertools-0.10.1.crate https://crates.io/api/v1/crates/itoa/0.4.8/download -> itoa-0.4.8.crate https://crates.io/api/v1/crates/jobserver/0.1.24/download -> jobserver-0.1.24.crate https://crates.io/api/v1/crates/jpeg-decoder/0.1.22/download -> jpeg-decoder-0.1.22.crate https://crates.io/api/v1/crates/js-sys/0.3.53/download -> js-sys-0.3.53.crate https://crates.io/api/v1/crates/lazycell/1.3.0/download -> lazycell-1.3.0.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/lexical/6.0.0/download -> lexical-6.0.0.crate https://crates.io/api/v1/crates/lexical-core/0.8.0/download -> lexical-core-0.8.0.crate https://crates.io/api/v1/crates/lexical-parse-float/0.8.0/download -> lexical-parse-float-0.8.0.crate https://crates.io/api/v1/crates/lexical-parse-integer/0.8.0/download -> lexical-parse-integer-0.8.0.crate https://crates.io/api/v1/crates/lexical-util/0.8.1/download -> lexical-util-0.8.1.crate https://crates.io/api/v1/crates/lexical-write-float/0.8.0/download -> lexical-write-float-0.8.0.crate https://crates.io/api/v1/crates/lexical-write-integer/0.8.0/download -> lexical-write-integer-0.8.0.crate https://crates.io/api/v1/crates/libc/0.2.101/download -> libc-0.2.101.crate https://crates.io/api/v1/crates/libgit2-sys/0.12.22+1.1.0/download -> libgit2-sys-0.12.22+1.1.0.crate https://crates.io/api/v1/crates/libm/0.2.1/download -> libm-0.2.1.crate https://crates.io/api/v1/crates/libsqlite3-sys/0.22.2/download -> libsqlite3-sys-0.22.2.crate https://crates.io/api/v1/crates/libz-sys/1.1.3/download -> libz-sys-1.1.3.crate https://crates.io/api/v1/crates/line-wrap/0.1.1/download -> line-wrap-0.1.1.crate https://crates.io/api/v1/crates/linked-hash-map/0.5.4/download -> linked-hash-map-0.5.4.crate https://crates.io/api/v1/crates/lock_api/0.4.5/download -> lock_api-0.4.5.crate https://crates.io/api/v1/crates/log/0.4.14/download -> log-0.4.14.crate https://crates.io/api/v1/crates/lz4/1.23.2/download -> lz4-1.23.2.crate https://crates.io/api/v1/crates/lz4-sys/1.9.2/download -> lz4-sys-1.9.2.crate https://crates.io/api/v1/crates/mac/0.1.1/download -> mac-0.1.1.crate https://crates.io/api/v1/crates/malloc_buf/0.0.6/download -> malloc_buf-0.0.6.crate https://crates.io/api/v1/crates/markup5ever/0.10.1/download -> markup5ever-0.10.1.crate https://crates.io/api/v1/crates/matches/0.1.9/download -> matches-0.1.9.crate https://crates.io/api/v1/crates/md5/0.7.0/download -> md5-0.7.0.crate https://crates.io/api/v1/crates/md-5/0.9.1/download -> md-5-0.9.1.crate https://crates.io/api/v1/crates/memchr/2.4.1/download -> memchr-2.4.1.crate https://crates.io/api/v1/crates/memmap2/0.5.0/download -> memmap2-0.5.0.crate https://crates.io/api/v1/crates/memoffset/0.6.4/download -> memoffset-0.6.4.crate https://crates.io/api/v1/crates/meval/0.2.0/download -> meval-0.2.0.crate https://crates.io/api/v1/crates/mime/0.3.16/download -> mime-0.3.16.crate https://crates.io/api/v1/crates/mime_guess/2.0.3/download -> mime_guess-2.0.3.crate https://crates.io/api/v1/crates/miniz_oxide/0.3.7/download -> miniz_oxide-0.3.7.crate https://crates.io/api/v1/crates/miniz_oxide/0.4.4/download -> miniz_oxide-0.4.4.crate https://crates.io/api/v1/crates/miow/0.3.7/download -> miow-0.3.7.crate https://crates.io/api/v1/crates/mio/0.7.13/download -> mio-0.7.13.crate https://crates.io/api/v1/crates/mp4/0.9.0/download -> mp4-0.9.0.crate https://crates.io/api/v1/crates/multiversion/0.6.1/download -> multiversion-0.6.1.crate https://crates.io/api/v1/crates/multiversion-macros/0.6.1/download -> multiversion-macros-0.6.1.crate https://crates.io/api/v1/crates/native-tls/0.2.8/download -> native-tls-0.2.8.crate https://crates.io/api/v1/crates/neso/0.5.0/download -> neso-0.5.0.crate https://crates.io/api/v1/crates/new_debug_unreachable/1.0.4/download -> new_debug_unreachable-1.0.4.crate https://crates.io/api/v1/crates/nibble_vec/0.1.0/download -> nibble_vec-0.1.0.crate https://crates.io/api/v1/crates/nix/0.20.1/download -> nix-0.20.1.crate https://crates.io/api/v1/crates/nix/0.22.1/download -> nix-0.22.1.crate https://crates.io/api/v1/crates/nodrop/0.1.14/download -> nodrop-0.1.14.crate https://crates.io/api/v1/crates/nom/1.2.4/download -> nom-1.2.4.crate https://crates.io/api/v1/crates/ntapi/0.3.6/download -> ntapi-0.3.6.crate https://crates.io/api/v1/crates/num/0.2.1/download -> num-0.2.1.crate https://crates.io/api/v1/crates/num/0.4.0/download -> num-0.4.0.crate https://crates.io/api/v1/crates/num-bigint/0.2.6/download -> num-bigint-0.2.6.crate https://crates.io/api/v1/crates/num-bigint/0.3.3/download -> num-bigint-0.3.3.crate https://crates.io/api/v1/crates/num-bigint/0.4.2/download -> num-bigint-0.4.2.crate https://crates.io/api/v1/crates/num-complex/0.2.4/download -> num-complex-0.2.4.crate https://crates.io/api/v1/crates/num-complex/0.4.0/download -> num-complex-0.4.0.crate https://crates.io/api/v1/crates/num-format/0.4.0/download -> num-format-0.4.0.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-iter/0.1.42/download -> num-iter-0.1.42.crate https://crates.io/api/v1/crates/num-rational/0.2.4/download -> num-rational-0.2.4.crate https://crates.io/api/v1/crates/num-rational/0.3.2/download -> num-rational-0.3.2.crate https://crates.io/api/v1/crates/num-rational/0.4.0/download -> num-rational-0.4.0.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/num_cpus/1.13.0/download -> num_cpus-1.13.0.crate https://crates.io/api/v1/crates/nu/0.40.0/download -> nu-0.40.0.crate https://crates.io/api/v1/crates/nu-ansi-term/0.40.0/download -> nu-ansi-term-0.40.0.crate https://crates.io/api/v1/crates/nu-cli/0.40.0/download -> nu-cli-0.40.0.crate https://crates.io/api/v1/crates/nu-command/0.40.0/download -> nu-command-0.40.0.crate https://crates.io/api/v1/crates/nu-completion/0.40.0/download -> nu-completion-0.40.0.crate https://crates.io/api/v1/crates/nu-data/0.40.0/download -> nu-data-0.40.0.crate https://crates.io/api/v1/crates/nu-engine/0.40.0/download -> nu-engine-0.40.0.crate https://crates.io/api/v1/crates/nu-errors/0.40.0/download -> nu-errors-0.40.0.crate https://crates.io/api/v1/crates/nu-json/0.40.0/download -> nu-json-0.40.0.crate https://crates.io/api/v1/crates/nu-parser/0.40.0/download -> nu-parser-0.40.0.crate https://crates.io/api/v1/crates/nu-path/0.40.0/download -> nu-path-0.40.0.crate https://crates.io/api/v1/crates/nu-plugin/0.40.0/download -> nu-plugin-0.40.0.crate https://crates.io/api/v1/crates/nu-pretty-hex/0.40.0/download -> nu-pretty-hex-0.40.0.crate https://crates.io/api/v1/crates/nu-protocol/0.40.0/download -> nu-protocol-0.40.0.crate https://crates.io/api/v1/crates/nu-serde/0.40.0/download -> nu-serde-0.40.0.crate https://crates.io/api/v1/crates/nu-source/0.40.0/download -> nu-source-0.40.0.crate https://crates.io/api/v1/crates/nu-stream/0.40.0/download -> nu-stream-0.40.0.crate https://crates.io/api/v1/crates/nu-table/0.40.0/download -> nu-table-0.40.0.crate https://crates.io/api/v1/crates/nu-test-support/0.40.0/download -> nu-test-support-0.40.0.crate https://crates.io/api/v1/crates/nu-value-ext/0.40.0/download -> nu-value-ext-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_binaryview/0.40.0/download -> nu_plugin_binaryview-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_chart/0.40.0/download -> nu_plugin_chart-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_from_bson/0.40.0/download -> nu_plugin_from_bson-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_from_mp4/0.1.0/download -> nu_plugin_from_mp4-0.1.0.crate https://crates.io/api/v1/crates/nu_plugin_from_sqlite/0.40.0/download -> nu_plugin_from_sqlite-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_inc/0.40.0/download -> nu_plugin_inc-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_match/0.40.0/download -> nu_plugin_match-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_query_json/0.40.0/download -> nu_plugin_query_json-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_s3/0.40.0/download -> nu_plugin_s3-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_selector/0.40.0/download -> nu_plugin_selector-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_start/0.40.0/download -> nu_plugin_start-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_textview/0.40.0/download -> nu_plugin_textview-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_to_bson/0.40.0/download -> nu_plugin_to_bson-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_to_sqlite/0.40.0/download -> nu_plugin_to_sqlite-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_tree/0.40.0/download -> nu_plugin_tree-0.40.0.crate https://crates.io/api/v1/crates/nu_plugin_xpath/0.40.0/download -> nu_plugin_xpath-0.40.0.crate https://crates.io/api/v1/crates/objc/0.2.7/download -> objc-0.2.7.crate https://crates.io/api/v1/crates/objc-foundation/0.1.1/download -> objc-foundation-0.1.1.crate https://crates.io/api/v1/crates/objc_id/0.1.1/download -> objc_id-0.1.1.crate https://crates.io/api/v1/crates/object/0.26.2/download -> object-0.26.2.crate https://crates.io/api/v1/crates/once_cell/1.8.0/download -> once_cell-1.8.0.crate https://crates.io/api/v1/crates/onig/6.2.0/download -> onig-6.2.0.crate https://crates.io/api/v1/crates/onig_sys/69.7.0/download -> onig_sys-69.7.0.crate https://crates.io/api/v1/crates/opaque-debug/0.3.0/download -> opaque-debug-0.3.0.crate https://crates.io/api/v1/crates/openssl/0.10.36/download -> openssl-0.10.36.crate https://crates.io/api/v1/crates/openssl-probe/0.1.4/download -> openssl-probe-0.1.4.crate https://crates.io/api/v1/crates/openssl-sys/0.9.66/download -> openssl-sys-0.9.66.crate https://crates.io/api/v1/crates/open/1.7.1/download -> open-1.7.1.crate https://crates.io/api/v1/crates/ordered-float/1.1.1/download -> ordered-float-1.1.1.crate https://crates.io/api/v1/crates/overload/0.1.1/download -> overload-0.1.1.crate https://crates.io/api/v1/crates/parking_lot/0.11.2/download -> parking_lot-0.11.2.crate https://crates.io/api/v1/crates/parking_lot_core/0.8.4/download -> parking_lot_core-0.8.4.crate https://crates.io/api/v1/crates/parquet2/0.6.0/download -> parquet2-0.6.0.crate https://crates.io/api/v1/crates/parquet-format-async-temp/0.2.0/download -> parquet-format-async-temp-0.2.0.crate https://crates.io/api/v1/crates/parse-zoneinfo/0.3.0/download -> parse-zoneinfo-0.3.0.crate https://crates.io/api/v1/crates/pathdiff/0.2.0/download -> pathdiff-0.2.0.crate https://crates.io/api/v1/crates/path_abs/0.5.1/download -> path_abs-0.5.1.crate https://crates.io/api/v1/crates/percent-encoding/2.1.0/download -> percent-encoding-2.1.0.crate https://crates.io/api/v1/crates/peresil/0.3.0/download -> peresil-0.3.0.crate https://crates.io/api/v1/crates/pest/2.1.3/download -> pest-2.1.3.crate https://crates.io/api/v1/crates/phf/0.8.0/download -> phf-0.8.0.crate https://crates.io/api/v1/crates/phf_codegen/0.8.0/download -> phf_codegen-0.8.0.crate https://crates.io/api/v1/crates/phf_generator/0.8.0/download -> phf_generator-0.8.0.crate https://crates.io/api/v1/crates/phf_macros/0.8.0/download -> phf_macros-0.8.0.crate https://crates.io/api/v1/crates/phf_shared/0.8.0/download -> phf_shared-0.8.0.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.7/download -> pin-project-lite-0.2.7.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/pkg-config/0.3.19/download -> pkg-config-0.3.19.crate https://crates.io/api/v1/crates/plist/1.2.1/download -> plist-1.2.1.crate https://crates.io/api/v1/crates/png/0.16.8/download -> png-0.16.8.crate https://crates.io/api/v1/crates/polars/0.17.0/download -> polars-0.17.0.crate https://crates.io/api/v1/crates/polars-arrow/0.17.0/download -> polars-arrow-0.17.0.crate https://crates.io/api/v1/crates/polars-core/0.17.0/download -> polars-core-0.17.0.crate https://crates.io/api/v1/crates/polars-io/0.17.0/download -> polars-io-0.17.0.crate https://crates.io/api/v1/crates/polars-lazy/0.17.0/download -> polars-lazy-0.17.0.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.10/download -> ppv-lite86-0.2.10.crate https://crates.io/api/v1/crates/precomputed-hash/0.1.1/download -> precomputed-hash-0.1.1.crate https://crates.io/api/v1/crates/prettytable-rs/0.8.0/download -> prettytable-rs-0.8.0.crate https://crates.io/api/v1/crates/pretty/0.5.2/download -> pretty-0.5.2.crate https://crates.io/api/v1/crates/pretty_env_logger/0.4.0/download -> pretty_env_logger-0.4.0.crate https://crates.io/api/v1/crates/proc-macro2/1.0.28/download -> proc-macro2-1.0.28.crate https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download -> proc-macro-error-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download -> proc-macro-error-attr-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-hack/0.5.19/download -> proc-macro-hack-0.5.19.crate https://crates.io/api/v1/crates/proc-macro-nested/0.1.7/download -> proc-macro-nested-0.1.7.crate https://crates.io/api/v1/crates/ptree/0.3.2/download -> ptree-0.3.2.crate https://crates.io/api/v1/crates/quickcheck/1.0.3/download -> quickcheck-1.0.3.crate https://crates.io/api/v1/crates/quickcheck_macros/1.0.0/download -> quickcheck_macros-1.0.0.crate https://crates.io/api/v1/crates/quick-error/1.2.3/download -> quick-error-1.2.3.crate https://crates.io/api/v1/crates/quick-xml/0.19.0/download -> quick-xml-0.19.0.crate https://crates.io/api/v1/crates/quick-xml/0.22.0/download -> quick-xml-0.22.0.crate https://crates.io/api/v1/crates/quote/1.0.9/download -> quote-1.0.9.crate https://crates.io/api/v1/crates/radix_trie/0.2.1/download -> radix_trie-0.2.1.crate https://crates.io/api/v1/crates/rand/0.3.23/download -> rand-0.3.23.crate https://crates.io/api/v1/crates/rand/0.4.6/download -> rand-0.4.6.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand/0.8.4/download -> rand-0.8.4.crate https://crates.io/api/v1/crates/rand_chacha/0.2.2/download -> rand_chacha-0.2.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_core/0.3.1/download -> rand_core-0.3.1.crate https://crates.io/api/v1/crates/rand_core/0.4.2/download -> rand_core-0.4.2.crate https://crates.io/api/v1/crates/rand_core/0.5.1/download -> rand_core-0.5.1.crate https://crates.io/api/v1/crates/rand_core/0.6.3/download -> rand_core-0.6.3.crate https://crates.io/api/v1/crates/rand_distr/0.3.0/download -> rand_distr-0.3.0.crate https://crates.io/api/v1/crates/rand_hc/0.2.0/download -> rand_hc-0.2.0.crate https://crates.io/api/v1/crates/rand_hc/0.3.1/download -> rand_hc-0.3.1.crate https://crates.io/api/v1/crates/rand_pcg/0.2.1/download -> rand_pcg-0.2.1.crate https://crates.io/api/v1/crates/rawkey/0.1.3/download -> rawkey-0.1.3.crate https://crates.io/api/v1/crates/rayon/1.5.1/download -> rayon-1.5.1.crate https://crates.io/api/v1/crates/rayon-core/1.9.1/download -> rayon-core-1.9.1.crate https://crates.io/api/v1/crates/rdrand/0.4.0/download -> rdrand-0.4.0.crate https://crates.io/api/v1/crates/readkey/0.1.7/download -> readkey-0.1.7.crate https://crates.io/api/v1/crates/redox_syscall/0.1.57/download -> redox_syscall-0.1.57.crate https://crates.io/api/v1/crates/redox_syscall/0.2.10/download -> redox_syscall-0.2.10.crate https://crates.io/api/v1/crates/redox_users/0.3.5/download -> redox_users-0.3.5.crate https://crates.io/api/v1/crates/redox_users/0.4.0/download -> redox_users-0.4.0.crate https://crates.io/api/v1/crates/regex/1.5.4/download -> regex-1.5.4.crate https://crates.io/api/v1/crates/regex-automata/0.1.10/download -> regex-automata-0.1.10.crate https://crates.io/api/v1/crates/regex-syntax/0.6.25/download -> regex-syntax-0.6.25.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/reqwest/0.11.4/download -> reqwest-0.11.4.crate https://crates.io/api/v1/crates/result/1.0.0/download -> result-1.0.0.crate https://crates.io/api/v1/crates/roxmltree/0.14.1/download -> roxmltree-0.14.1.crate https://crates.io/api/v1/crates/rstest/0.10.0/download -> rstest-0.10.0.crate https://crates.io/api/v1/crates/rusqlite/0.25.3/download -> rusqlite-0.25.3.crate https://crates.io/api/v1/crates/rustc-demangle/0.1.21/download -> rustc-demangle-0.1.21.crate https://crates.io/api/v1/crates/rustc-serialize/0.3.24/download -> rustc-serialize-0.3.24.crate https://crates.io/api/v1/crates/rustc_version/0.3.3/download -> rustc_version-0.3.3.crate https://crates.io/api/v1/crates/rustversion/1.0.5/download -> rustversion-1.0.5.crate https://crates.io/api/v1/crates/rustyline/9.0.0/download -> rustyline-9.0.0.crate https://crates.io/api/v1/crates/rust-argon2/0.8.3/download -> rust-argon2-0.8.3.crate https://crates.io/api/v1/crates/rust-crypto/0.2.36/download -> rust-crypto-0.2.36.crate https://crates.io/api/v1/crates/rust-embed/5.9.0/download -> rust-embed-5.9.0.crate https://crates.io/api/v1/crates/rust-embed-impl/5.9.0/download -> rust-embed-impl-5.9.0.crate https://crates.io/api/v1/crates/rust-embed-utils/5.1.0/download -> rust-embed-utils-5.1.0.crate https://crates.io/api/v1/crates/rust_decimal/0.10.2/download -> rust_decimal-0.10.2.crate https://crates.io/api/v1/crates/ryu/1.0.5/download -> ryu-1.0.5.crate https://crates.io/api/v1/crates/s3handler/0.7.4/download -> s3handler-0.7.4.crate https://crates.io/api/v1/crates/safemem/0.3.3/download -> safemem-0.3.3.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.19/download -> schannel-0.1.19.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/scraper/0.12.0/download -> scraper-0.12.0.crate https://crates.io/api/v1/crates/security-framework/2.3.1/download -> security-framework-2.3.1.crate https://crates.io/api/v1/crates/security-framework-sys/2.4.0/download -> security-framework-sys-2.4.0.crate https://crates.io/api/v1/crates/selectors/0.22.0/download -> selectors-0.22.0.crate https://crates.io/api/v1/crates/semver/0.11.0/download -> semver-0.11.0.crate https://crates.io/api/v1/crates/semver-parser/0.10.2/download -> semver-parser-0.10.2.crate https://crates.io/api/v1/crates/serde/1.0.129/download -> serde-1.0.129.crate https://crates.io/api/v1/crates/serde_bytes/0.11.5/download -> serde_bytes-0.11.5.crate https://crates.io/api/v1/crates/serde_derive/1.0.129/download -> serde_derive-1.0.129.crate https://crates.io/api/v1/crates/serde_ini/0.2.0/download -> serde_ini-0.2.0.crate https://crates.io/api/v1/crates/serde_json/1.0.66/download -> serde_json-1.0.66.crate https://crates.io/api/v1/crates/serde_test/1.0.129/download -> serde_test-1.0.129.crate https://crates.io/api/v1/crates/serde_urlencoded/0.7.0/download -> serde_urlencoded-0.7.0.crate https://crates.io/api/v1/crates/serde_yaml/0.8.20/download -> serde_yaml-0.8.20.crate https://crates.io/api/v1/crates/serial_test/0.5.1/download -> serial_test-0.5.1.crate https://crates.io/api/v1/crates/serial_test_derive/0.5.1/download -> serial_test_derive-0.5.1.crate https://crates.io/api/v1/crates/servo_arc/0.1.1/download -> servo_arc-0.1.1.crate https://crates.io/api/v1/crates/sha1/0.2.0/download -> sha1-0.2.0.crate https://crates.io/api/v1/crates/sha2/0.9.6/download -> sha2-0.9.6.crate https://crates.io/api/v1/crates/shadow-rs/0.6.13/download -> shadow-rs-0.6.13.crate https://crates.io/api/v1/crates/shell-escape/0.1.5/download -> shell-escape-0.1.5.crate https://crates.io/api/v1/crates/shell-words/1.0.0/download -> shell-words-1.0.0.crate https://crates.io/api/v1/crates/signal-hook/0.1.17/download -> signal-hook-0.1.17.crate https://crates.io/api/v1/crates/signal-hook-registry/1.4.0/download -> signal-hook-registry-1.4.0.crate https://crates.io/api/v1/crates/simdutf8/0.1.3/download -> simdutf8-0.1.3.crate https://crates.io/api/v1/crates/similar/1.3.0/download -> similar-1.3.0.crate https://crates.io/api/v1/crates/siphasher/0.3.6/download -> siphasher-0.3.6.crate https://crates.io/api/v1/crates/slab/0.4.4/download -> slab-0.4.4.crate https://crates.io/api/v1/crates/smallvec/1.6.1/download -> smallvec-1.6.1.crate https://crates.io/api/v1/crates/smart-default/0.6.0/download -> smart-default-0.6.0.crate https://crates.io/api/v1/crates/snap/1.0.5/download -> snap-1.0.5.crate https://crates.io/api/v1/crates/socket2/0.4.1/download -> socket2-0.4.1.crate https://crates.io/api/v1/crates/spin/0.9.2/download -> spin-0.9.2.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/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/std_prelude/0.2.12/download -> std_prelude-0.2.12.crate https://crates.io/api/v1/crates/streaming-decompression/0.1.0/download -> streaming-decompression-0.1.0.crate https://crates.io/api/v1/crates/streaming-iterator/0.1.5/download -> streaming-iterator-0.1.5.crate https://crates.io/api/v1/crates/strength_reduce/0.2.3/download -> strength_reduce-0.2.3.crate https://crates.io/api/v1/crates/string_cache/0.8.1/download -> string_cache-0.8.1.crate https://crates.io/api/v1/crates/string_cache_codegen/0.5.1/download -> string_cache_codegen-0.5.1.crate https://crates.io/api/v1/crates/strip-ansi-escapes/0.1.1/download -> strip-ansi-escapes-0.1.1.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/str-buf/1.0.5/download -> str-buf-1.0.5.crate https://crates.io/api/v1/crates/subtle/2.4.1/download -> subtle-2.4.1.crate https://crates.io/api/v1/crates/sxd-document/0.3.2/download -> sxd-document-0.3.2.crate https://crates.io/api/v1/crates/sxd-xpath/0.4.2/download -> sxd-xpath-0.4.2.crate https://crates.io/api/v1/crates/synstructure/0.12.5/download -> synstructure-0.12.5.crate https://crates.io/api/v1/crates/syntect/4.6.0/download -> syntect-4.6.0.crate https://crates.io/api/v1/crates/syn/1.0.75/download -> syn-1.0.75.crate https://crates.io/api/v1/crates/sysinfo/0.20.2/download -> sysinfo-0.20.2.crate https://crates.io/api/v1/crates/sys-info/0.9.0/download -> sys-info-0.9.0.crate https://crates.io/api/v1/crates/sys-locale/0.1.0/download -> sys-locale-0.1.0.crate https://crates.io/api/v1/crates/tempfile/3.2.0/download -> tempfile-3.2.0.crate https://crates.io/api/v1/crates/tendril/0.4.2/download -> tendril-0.4.2.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/terminal_size/0.1.17/download -> terminal_size-0.1.17.crate https://crates.io/api/v1/crates/term/0.5.2/download -> term-0.5.2.crate https://crates.io/api/v1/crates/term/0.7.0/download -> term-0.7.0.crate https://crates.io/api/v1/crates/term_size/0.3.2/download -> term_size-0.3.2.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thin-slice/0.1.1/download -> thin-slice-0.1.1.crate https://crates.io/api/v1/crates/thiserror/1.0.26/download -> thiserror-1.0.26.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.26/download -> thiserror-impl-1.0.26.crate https://crates.io/api/v1/crates/tiff/0.6.1/download -> tiff-0.6.1.crate https://crates.io/api/v1/crates/time/0.1.44/download -> time-0.1.44.crate https://crates.io/api/v1/crates/tinyvec/1.3.1/download -> tinyvec-1.3.1.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.0/download -> tinyvec_macros-0.1.0.crate https://crates.io/api/v1/crates/titlecase/1.1.0/download -> titlecase-1.1.0.crate https://crates.io/api/v1/crates/tokio/1.10.1/download -> tokio-1.10.1.crate https://crates.io/api/v1/crates/tokio-io/0.1.13/download -> tokio-io-0.1.13.crate https://crates.io/api/v1/crates/tokio-macros/1.3.0/download -> tokio-macros-1.3.0.crate https://crates.io/api/v1/crates/tokio-native-tls/0.3.0/download -> tokio-native-tls-0.3.0.crate https://crates.io/api/v1/crates/tokio-util/0.6.7/download -> tokio-util-0.6.7.crate https://crates.io/api/v1/crates/toml/0.5.8/download -> toml-0.5.8.crate https://crates.io/api/v1/crates/tower-service/0.3.1/download -> tower-service-0.3.1.crate https://crates.io/api/v1/crates/tracing/0.1.26/download -> tracing-0.1.26.crate https://crates.io/api/v1/crates/tracing-core/0.1.19/download -> tracing-core-0.1.19.crate https://crates.io/api/v1/crates/trash/1.3.0/download -> trash-1.3.0.crate https://crates.io/api/v1/crates/try-lock/0.2.3/download -> try-lock-0.2.3.crate https://crates.io/api/v1/crates/tui/0.15.0/download -> tui-0.15.0.crate https://crates.io/api/v1/crates/typed-arena/1.7.0/download -> typed-arena-1.7.0.crate https://crates.io/api/v1/crates/typenum/1.13.0/download -> typenum-1.13.0.crate https://crates.io/api/v1/crates/ucd-trie/0.1.3/download -> ucd-trie-0.1.3.crate https://crates.io/api/v1/crates/umask/1.0.0/download -> umask-1.0.0.crate https://crates.io/api/v1/crates/unicase/2.6.0/download -> unicase-2.6.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.6/download -> unicode-bidi-0.3.6.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.19/download -> unicode-normalization-0.1.19.crate https://crates.io/api/v1/crates/unicode-segmentation/1.8.0/download -> unicode-segmentation-1.8.0.crate https://crates.io/api/v1/crates/unicode-width/0.1.8/download -> unicode-width-0.1.8.crate https://crates.io/api/v1/crates/unicode-xid/0.2.2/download -> unicode-xid-0.2.2.crate https://crates.io/api/v1/crates/unsafe_unwrap/0.1.0/download -> unsafe_unwrap-0.1.0.crate https://crates.io/api/v1/crates/url/2.2.2/download -> url-2.2.2.crate https://crates.io/api/v1/crates/user32-sys/0.2.0/download -> user32-sys-0.2.0.crate https://crates.io/api/v1/crates/users/0.11.0/download -> users-0.11.0.crate https://crates.io/api/v1/crates/utf8parse/0.2.0/download -> utf8parse-0.2.0.crate https://crates.io/api/v1/crates/utf8-width/0.1.5/download -> utf8-width-0.1.5.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/uuid/0.8.2/download -> uuid-0.8.2.crate https://crates.io/api/v1/crates/vcpkg/0.2.15/download -> vcpkg-0.2.15.crate https://crates.io/api/v1/crates/vec_map/0.8.2/download -> vec_map-0.8.2.crate https://crates.io/api/v1/crates/version_check/0.9.3/download -> version_check-0.9.3.crate https://crates.io/api/v1/crates/void/1.0.2/download -> void-1.0.2.crate https://crates.io/api/v1/crates/vte/0.10.1/download -> vte-0.10.1.crate https://crates.io/api/v1/crates/vte_generate_state_changes/0.1.1/download -> vte_generate_state_changes-0.1.1.crate https://crates.io/api/v1/crates/walkdir/2.3.2/download -> walkdir-2.3.2.crate https://crates.io/api/v1/crates/want/0.3.0/download -> want-0.3.0.crate https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.10.0+wasi-snapshot-preview1/download -> wasi-0.10.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.76/download -> wasm-bindgen-0.2.76.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.76/download -> wasm-bindgen-backend-0.2.76.crate https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.26/download -> wasm-bindgen-futures-0.4.26.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.76/download -> wasm-bindgen-macro-0.2.76.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.76/download -> wasm-bindgen-macro-support-0.2.76.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.76/download -> wasm-bindgen-shared-0.2.76.crate https://crates.io/api/v1/crates/webbrowser/0.5.5/download -> webbrowser-0.5.5.crate https://crates.io/api/v1/crates/web-sys/0.3.53/download -> web-sys-0.3.53.crate https://crates.io/api/v1/crates/weezl/0.1.5/download -> weezl-0.1.5.crate https://crates.io/api/v1/crates/which/4.2.2/download -> which-4.2.2.crate https://crates.io/api/v1/crates/widestring/0.4.3/download -> widestring-0.4.3.crate https://crates.io/api/v1/crates/wild/2.0.4/download -> wild-2.0.4.crate https://crates.io/api/v1/crates/winapi/0.2.8/download -> winapi-0.2.8.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-build/0.1.1/download -> winapi-build-0.1.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.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-wsapoll/0.1.1/download -> winapi-wsapoll-0.1.1.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/winreg/0.7.0/download -> winreg-0.7.0.crate https://crates.io/api/v1/crates/x11rb/0.8.1/download -> x11rb-0.8.1.crate https://crates.io/api/v1/crates/x11/2.18.2/download -> x11-2.18.2.crate https://crates.io/api/v1/crates/xmlparser/0.13.3/download -> xmlparser-0.13.3.crate https://crates.io/api/v1/crates/xml-rs/0.8.4/download -> xml-rs-0.8.4.crate https://crates.io/api/v1/crates/yaml-rust/0.4.5/download -> yaml-rust-0.4.5.crate https://crates.io/api/v1/crates/zip/0.5.13/download -> zip-0.5.13.crate https://crates.io/api/v1/crates/zstd/0.9.0+zstd.1.5.0/download -> zstd-0.9.0+zstd.1.5.0.crate https://crates.io/api/v1/crates/zstd-safe/4.1.1+zstd.1.5.0/download -> zstd-safe-4.1.1+zstd.1.5.0.crate https://crates.io/api/v1/crates/zstd-sys/1.6.1+zstd.1.5.0/download -> zstd-sys-1.6.1+zstd.1.5.0.crate -_eclasses_=cargo c7fefacaebdcb455d2a7b59429eb47a6 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=5ce072058abcd1a6aeed8db7918e4b9f diff --git a/metadata/md5-cache/app-shells/nushell-0.42.0 b/metadata/md5-cache/app-shells/nushell-0.42.0 new file mode 100644 index 000000000000..f5e8b1c5ce87 --- /dev/null +++ b/metadata/md5-cache/app-shells/nushell-0.42.0 @@ -0,0 +1,14 @@ +BDEPEND=>=virtual/rust-1.51 virtual/pkgconfig >=virtual/rust-1.37.0 +DEFINED_PHASES=compile configure install test unpack +DEPEND=>=dev-libs/libgit2-0.99:= dev-libs/oniguruma:= dev-libs/openssl:0= net-libs/libssh2:= net-libs/nghttp2:= net-misc/curl extra? ( dev-db/sqlite:3= x11-libs/libX11 x11-libs/libxcb ) +DESCRIPTION=A new type of shell, written in Rust +EAPI=7 +HOMEPAGE=https://www.nushell.sh +IUSE=+extra debug +KEYWORDS=~amd64 ~arm64 ~ppc64 ~riscv +LICENSE=Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD Boost-1.0 CC0-1.0 ISC LGPL-3+ MIT MPL-2.0 Unlicense ZLIB +RDEPEND=>=dev-libs/libgit2-0.99:= dev-libs/oniguruma:= dev-libs/openssl:0= net-libs/libssh2:= net-libs/nghttp2:= net-misc/curl extra? ( dev-db/sqlite:3= x11-libs/libX11 x11-libs/libxcb ) +SLOT=0 +SRC_URI=https://github.com/nushell/nushell/archive/0.42.0.tar.gz -> nushell-0.42.0.tar.gz https://crates.io/api/v1/crates/addr2line/0.17.0/download -> addr2line-0.17.0.crate https://crates.io/api/v1/crates/adler32/1.2.0/download -> adler32-1.2.0.crate https://crates.io/api/v1/crates/adler/1.0.2/download -> adler-1.0.2.crate https://crates.io/api/v1/crates/ahash/0.7.6/download -> ahash-0.7.6.crate https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/alloc-no-stdlib/2.0.3/download -> alloc-no-stdlib-2.0.3.crate https://crates.io/api/v1/crates/alloc-stdlib/0.2.1/download -> alloc-stdlib-0.2.1.crate https://crates.io/api/v1/crates/ansi_colours/1.0.4/download -> ansi_colours-1.0.4.crate https://crates.io/api/v1/crates/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/anyhow/1.0.51/download -> anyhow-1.0.51.crate https://crates.io/api/v1/crates/arrayvec/0.4.12/download -> arrayvec-0.4.12.crate https://crates.io/api/v1/crates/arrayvec/0.5.2/download -> arrayvec-0.5.2.crate https://crates.io/api/v1/crates/arrow2/0.7.0/download -> arrow2-0.7.0.crate https://crates.io/api/v1/crates/arrow-format/0.3.0/download -> arrow-format-0.3.0.crate https://crates.io/api/v1/crates/async-stream/0.3.2/download -> async-stream-0.3.2.crate https://crates.io/api/v1/crates/async-stream-impl/0.3.2/download -> async-stream-impl-0.3.2.crate https://crates.io/api/v1/crates/async-trait/0.1.51/download -> async-trait-0.1.51.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/backtrace/0.3.63/download -> backtrace-0.3.63.crate https://crates.io/api/v1/crates/base64/0.13.0/download -> base64-0.13.0.crate https://crates.io/api/v1/crates/bat/0.18.3/download -> bat-0.18.3.crate https://crates.io/api/v1/crates/bigdecimal/0.3.0/download -> bigdecimal-0.3.0.crate https://crates.io/api/v1/crates/bincode/1.3.3/download -> bincode-1.3.3.crate https://crates.io/api/v1/crates/bitflags/1.2.1/download -> bitflags-1.2.1.crate https://crates.io/api/v1/crates/bitpacking/0.8.4/download -> bitpacking-0.8.4.crate https://crates.io/api/v1/crates/block-buffer/0.9.0/download -> block-buffer-0.9.0.crate https://crates.io/api/v1/crates/brotli/3.3.2/download -> brotli-3.3.2.crate https://crates.io/api/v1/crates/brotli-decompressor/2.3.2/download -> brotli-decompressor-2.3.2.crate https://crates.io/api/v1/crates/bson/2.0.1/download -> bson-2.0.1.crate https://crates.io/api/v1/crates/bstr/0.2.17/download -> bstr-0.2.17.crate https://crates.io/api/v1/crates/bugreport/0.4.1/download -> bugreport-0.4.1.crate https://crates.io/api/v1/crates/bumpalo/3.8.0/download -> bumpalo-3.8.0.crate https://crates.io/api/v1/crates/bytemuck/1.7.2/download -> bytemuck-1.7.2.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes/0.4.12/download -> bytes-0.4.12.crate https://crates.io/api/v1/crates/bytes/0.5.6/download -> bytes-0.5.6.crate https://crates.io/api/v1/crates/bytes/1.1.0/download -> bytes-1.1.0.crate https://crates.io/api/v1/crates/byte-unit/4.0.13/download -> byte-unit-4.0.13.crate https://crates.io/api/v1/crates/bzip2/0.4.3/download -> bzip2-0.4.3.crate https://crates.io/api/v1/crates/bzip2-sys/0.1.11+1.0.8/download -> bzip2-sys-0.1.11+1.0.8.crate https://crates.io/api/v1/crates/calamine/0.18.0/download -> calamine-0.18.0.crate https://crates.io/api/v1/crates/cassowary/0.3.0/download -> cassowary-0.3.0.crate https://crates.io/api/v1/crates/cc/1.0.72/download -> cc-1.0.72.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/chrono-humanize/0.2.1/download -> chrono-humanize-0.2.1.crate https://crates.io/api/v1/crates/chrono-tz/0.5.3/download -> chrono-tz-0.5.3.crate https://crates.io/api/v1/crates/clipboard-win/4.2.2/download -> clipboard-win-4.2.2.crate https://crates.io/api/v1/crates/clircle/0.3.0/download -> clircle-0.3.0.crate https://crates.io/api/v1/crates/codepage/0.1.1/download -> codepage-0.1.1.crate https://crates.io/api/v1/crates/codespan-reporting/0.11.1/download -> codespan-reporting-0.11.1.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/comfy-table/1.6.0/download -> comfy-table-1.6.0.crate https://crates.io/api/v1/crates/common-path/1.0.0/download -> common-path-1.0.0.crate https://crates.io/api/v1/crates/console/0.14.1/download -> console-0.14.1.crate https://crates.io/api/v1/crates/const-sha1/0.2.0/download -> const-sha1-0.2.0.crate https://crates.io/api/v1/crates/content_inspector/0.2.4/download -> content_inspector-0.2.4.crate https://crates.io/api/v1/crates/convert_case/0.4.0/download -> convert_case-0.4.0.crate https://crates.io/api/v1/crates/core-foundation/0.9.2/download -> core-foundation-0.9.2.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.3/download -> core-foundation-sys-0.8.3.crate https://crates.io/api/v1/crates/cpufeatures/0.2.1/download -> cpufeatures-0.2.1.crate https://crates.io/api/v1/crates/crc32fast/1.3.0/download -> crc32fast-1.3.0.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.1/download -> crossbeam-channel-0.5.1.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.1/download -> crossbeam-deque-0.8.1.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.5/download -> crossbeam-epoch-0.9.5.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.5/download -> crossbeam-utils-0.8.5.crate https://crates.io/api/v1/crates/crossterm/0.19.0/download -> crossterm-0.19.0.crate https://crates.io/api/v1/crates/crossterm_winapi/0.7.0/download -> crossterm_winapi-0.7.0.crate https://crates.io/api/v1/crates/crunchy/0.2.2/download -> crunchy-0.2.2.crate https://crates.io/api/v1/crates/crypto-mac/0.11.1/download -> crypto-mac-0.11.1.crate https://crates.io/api/v1/crates/cssparser/0.27.2/download -> cssparser-0.27.2.crate https://crates.io/api/v1/crates/cssparser-macros/0.6.0/download -> cssparser-macros-0.6.0.crate https://crates.io/api/v1/crates/cstr_core/0.2.4/download -> cstr_core-0.2.4.crate https://crates.io/api/v1/crates/csv/1.1.6/download -> csv-1.1.6.crate https://crates.io/api/v1/crates/csv-core/0.1.10/download -> csv-core-0.1.10.crate https://crates.io/api/v1/crates/ctrlc/3.2.0/download -> ctrlc-3.2.0.crate https://crates.io/api/v1/crates/cty/0.2.2/download -> cty-0.2.2.crate https://crates.io/api/v1/crates/deflate/0.8.6/download -> deflate-0.8.6.crate https://crates.io/api/v1/crates/derive-new/0.5.9/download -> derive-new-0.5.9.crate https://crates.io/api/v1/crates/derive_more/0.99.17/download -> derive_more-0.99.17.crate https://crates.io/api/v1/crates/digest/0.9.0/download -> digest-0.9.0.crate https://crates.io/api/v1/crates/directories-next/2.0.0/download -> directories-next-2.0.0.crate https://crates.io/api/v1/crates/dirs/3.0.2/download -> dirs-3.0.2.crate https://crates.io/api/v1/crates/dirs-next/2.0.0/download -> dirs-next-2.0.0.crate https://crates.io/api/v1/crates/dirs-sys/0.3.6/download -> dirs-sys-0.3.6.crate https://crates.io/api/v1/crates/dirs-sys-next/0.1.2/download -> dirs-sys-next-0.1.2.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/dtoa/0.4.8/download -> dtoa-0.4.8.crate https://crates.io/api/v1/crates/dtoa-short/0.3.3/download -> dtoa-short-0.3.3.crate https://crates.io/api/v1/crates/dtparse/1.2.0/download -> dtparse-1.2.0.crate https://crates.io/api/v1/crates/dunce/1.0.2/download -> dunce-1.0.2.crate https://crates.io/api/v1/crates/dyn-clone/1.0.4/download -> dyn-clone-1.0.4.crate https://crates.io/api/v1/crates/ego-tree/0.6.2/download -> ego-tree-0.6.2.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/eml-parser/0.1.2/download -> eml-parser-0.1.2.crate https://crates.io/api/v1/crates/encode_unicode/0.3.6/download -> encode_unicode-0.3.6.crate https://crates.io/api/v1/crates/encoding/0.2.33/download -> encoding-0.2.33.crate https://crates.io/api/v1/crates/encoding-index-japanese/1.20141219.5/download -> encoding-index-japanese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-korean/1.20141219.5/download -> encoding-index-korean-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-simpchinese/1.20141219.5/download -> encoding-index-simpchinese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-singlebyte/1.20141219.5/download -> encoding-index-singlebyte-1.20141219.5.crate https://crates.io/api/v1/crates/encoding-index-tradchinese/1.20141219.5/download -> encoding-index-tradchinese-1.20141219.5.crate https://crates.io/api/v1/crates/encoding_index_tests/0.1.4/download -> encoding_index_tests-0.1.4.crate https://crates.io/api/v1/crates/encoding_rs/0.8.29/download -> encoding_rs-0.8.29.crate https://crates.io/api/v1/crates/endian-type/0.1.2/download -> endian-type-0.1.2.crate https://crates.io/api/v1/crates/env_logger/0.7.1/download -> env_logger-0.7.1.crate https://crates.io/api/v1/crates/env_logger/0.8.4/download -> env_logger-0.8.4.crate https://crates.io/api/v1/crates/error-chain/0.12.4/download -> error-chain-0.12.4.crate https://crates.io/api/v1/crates/error-code/2.3.0/download -> error-code-2.3.0.crate https://crates.io/api/v1/crates/failure/0.1.8/download -> failure-0.1.8.crate https://crates.io/api/v1/crates/failure_derive/0.1.8/download -> failure_derive-0.1.8.crate https://crates.io/api/v1/crates/fallible-iterator/0.2.0/download -> fallible-iterator-0.2.0.crate https://crates.io/api/v1/crates/fallible-streaming-iterator/0.1.9/download -> fallible-streaming-iterator-0.1.9.crate https://crates.io/api/v1/crates/fd-lock/3.0.1/download -> fd-lock-3.0.1.crate https://crates.io/api/v1/crates/filesize/0.2.0/download -> filesize-0.2.0.crate https://crates.io/api/v1/crates/flatbuffers/2.0.0/download -> flatbuffers-2.0.0.crate https://crates.io/api/v1/crates/flate2/1.0.22/download -> flate2-1.0.22.crate https://crates.io/api/v1/crates/fnv/1.0.7/download -> fnv-1.0.7.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/foreign-types-shared/0.1.1/download -> foreign-types-shared-0.1.1.crate https://crates.io/api/v1/crates/form_urlencoded/1.0.1/download -> form_urlencoded-1.0.1.crate https://crates.io/api/v1/crates/fs_extra/1.2.0/download -> fs_extra-1.2.0.crate https://crates.io/api/v1/crates/futf/0.1.4/download -> futf-0.1.4.crate https://crates.io/api/v1/crates/futures/0.1.31/download -> futures-0.1.31.crate https://crates.io/api/v1/crates/futures/0.3.18/download -> futures-0.3.18.crate https://crates.io/api/v1/crates/futures-channel/0.3.18/download -> futures-channel-0.3.18.crate https://crates.io/api/v1/crates/futures-core/0.3.18/download -> futures-core-0.3.18.crate https://crates.io/api/v1/crates/futures-executor/0.3.18/download -> futures-executor-0.3.18.crate https://crates.io/api/v1/crates/futures-io/0.3.18/download -> futures-io-0.3.18.crate https://crates.io/api/v1/crates/futures-macro/0.3.18/download -> futures-macro-0.3.18.crate https://crates.io/api/v1/crates/futures-sink/0.3.18/download -> futures-sink-0.3.18.crate https://crates.io/api/v1/crates/futures-task/0.3.18/download -> futures-task-0.3.18.crate https://crates.io/api/v1/crates/futures-util/0.3.18/download -> futures-util-0.3.18.crate https://crates.io/api/v1/crates/fxhash/0.2.1/download -> fxhash-0.2.1.crate https://crates.io/api/v1/crates/generic-array/0.14.4/download -> generic-array-0.14.4.crate https://crates.io/api/v1/crates/getopts/0.2.21/download -> getopts-0.2.21.crate https://crates.io/api/v1/crates/getrandom/0.1.16/download -> getrandom-0.1.16.crate https://crates.io/api/v1/crates/getrandom/0.2.3/download -> getrandom-0.2.3.crate https://crates.io/api/v1/crates/getset/0.1.2/download -> getset-0.1.2.crate https://crates.io/api/v1/crates/gimli/0.26.1/download -> gimli-0.26.1.crate https://crates.io/api/v1/crates/git2/0.13.25/download -> git2-0.13.25.crate https://crates.io/api/v1/crates/git-version/0.3.5/download -> git-version-0.3.5.crate https://crates.io/api/v1/crates/git-version-macro/0.3.5/download -> git-version-macro-0.3.5.crate https://crates.io/api/v1/crates/gjson/0.8.0/download -> gjson-0.8.0.crate https://crates.io/api/v1/crates/globset/0.4.8/download -> globset-0.4.8.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.crate https://crates.io/api/v1/crates/grep-cli/0.1.6/download -> grep-cli-0.1.6.crate https://crates.io/api/v1/crates/h2/0.3.7/download -> h2-0.3.7.crate https://crates.io/api/v1/crates/hamcrest2/0.3.0/download -> hamcrest2-0.3.0.crate https://crates.io/api/v1/crates/hash32/0.2.1/download -> hash32-0.2.1.crate https://crates.io/api/v1/crates/hashbrown/0.11.2/download -> hashbrown-0.11.2.crate https://crates.io/api/v1/crates/hashlink/0.7.0/download -> hashlink-0.7.0.crate https://crates.io/api/v1/crates/hash_hasher/2.0.3/download -> hash_hasher-2.0.3.crate https://crates.io/api/v1/crates/heapless/0.7.8/download -> heapless-0.7.8.crate https://crates.io/api/v1/crates/heck/0.3.3/download -> heck-0.3.3.crate https://crates.io/api/v1/crates/heck/0.4.0/download -> heck-0.4.0.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.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.11.0/download -> hmac-0.11.0.crate https://crates.io/api/v1/crates/hmac-sha1/0.1.3/download -> hmac-sha1-0.1.3.crate https://crates.io/api/v1/crates/html5ever/0.25.1/download -> html5ever-0.25.1.crate https://crates.io/api/v1/crates/htmlescape/0.3.1/download -> htmlescape-0.3.1.crate https://crates.io/api/v1/crates/httparse/1.5.1/download -> httparse-1.5.1.crate https://crates.io/api/v1/crates/httpdate/1.0.2/download -> httpdate-1.0.2.crate https://crates.io/api/v1/crates/http/0.2.5/download -> http-0.2.5.crate https://crates.io/api/v1/crates/http-body/0.4.4/download -> http-body-0.4.4.crate https://crates.io/api/v1/crates/humantime/1.3.0/download -> humantime-1.3.0.crate https://crates.io/api/v1/crates/hyper/0.14.15/download -> hyper-0.14.15.crate https://crates.io/api/v1/crates/hyper-tls/0.5.0/download -> hyper-tls-0.5.0.crate https://crates.io/api/v1/crates/ical/0.7.0/download -> ical-0.7.0.crate https://crates.io/api/v1/crates/idna/0.2.3/download -> idna-0.2.3.crate https://crates.io/api/v1/crates/image/0.23.14/download -> image-0.23.14.crate https://crates.io/api/v1/crates/indexmap/1.7.0/download -> indexmap-1.7.0.crate https://crates.io/api/v1/crates/instant/0.1.12/download -> instant-0.1.12.crate https://crates.io/api/v1/crates/insta/1.8.0/download -> insta-1.8.0.crate https://crates.io/api/v1/crates/integer-encoding/3.0.2/download -> integer-encoding-3.0.2.crate https://crates.io/api/v1/crates/iovec/0.1.4/download -> iovec-0.1.4.crate https://crates.io/api/v1/crates/ipnet/2.3.1/download -> ipnet-2.3.1.crate https://crates.io/api/v1/crates/is_debug/1.0.1/download -> is_debug-1.0.1.crate https://crates.io/api/v1/crates/is_executable/1.0.1/download -> is_executable-1.0.1.crate https://crates.io/api/v1/crates/itertools/0.10.1/download -> itertools-0.10.1.crate https://crates.io/api/v1/crates/itoa/0.4.8/download -> itoa-0.4.8.crate https://crates.io/api/v1/crates/jobserver/0.1.24/download -> jobserver-0.1.24.crate https://crates.io/api/v1/crates/jpeg-decoder/0.1.22/download -> jpeg-decoder-0.1.22.crate https://crates.io/api/v1/crates/js-sys/0.3.55/download -> js-sys-0.3.55.crate https://crates.io/api/v1/crates/lazycell/1.3.0/download -> lazycell-1.3.0.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/lexical/6.0.1/download -> lexical-6.0.1.crate https://crates.io/api/v1/crates/lexical-core/0.8.2/download -> lexical-core-0.8.2.crate https://crates.io/api/v1/crates/lexical-parse-float/0.8.2/download -> lexical-parse-float-0.8.2.crate https://crates.io/api/v1/crates/lexical-parse-integer/0.8.0/download -> lexical-parse-integer-0.8.0.crate https://crates.io/api/v1/crates/lexical-util/0.8.1/download -> lexical-util-0.8.1.crate https://crates.io/api/v1/crates/lexical-write-float/0.8.2/download -> lexical-write-float-0.8.2.crate https://crates.io/api/v1/crates/lexical-write-integer/0.8.0/download -> lexical-write-integer-0.8.0.crate https://crates.io/api/v1/crates/libc/0.2.108/download -> libc-0.2.108.crate https://crates.io/api/v1/crates/libgit2-sys/0.12.26+1.3.0/download -> libgit2-sys-0.12.26+1.3.0.crate https://crates.io/api/v1/crates/libm/0.2.1/download -> libm-0.2.1.crate https://crates.io/api/v1/crates/libsqlite3-sys/0.23.1/download -> libsqlite3-sys-0.23.1.crate https://crates.io/api/v1/crates/libz-sys/1.1.3/download -> libz-sys-1.1.3.crate https://crates.io/api/v1/crates/line-wrap/0.1.1/download -> line-wrap-0.1.1.crate https://crates.io/api/v1/crates/linked-hash-map/0.5.4/download -> linked-hash-map-0.5.4.crate https://crates.io/api/v1/crates/lock_api/0.4.5/download -> lock_api-0.4.5.crate https://crates.io/api/v1/crates/log/0.4.14/download -> log-0.4.14.crate https://crates.io/api/v1/crates/lz4/1.23.2/download -> lz4-1.23.2.crate https://crates.io/api/v1/crates/lz4-sys/1.9.2/download -> lz4-sys-1.9.2.crate https://crates.io/api/v1/crates/mac/0.1.1/download -> mac-0.1.1.crate https://crates.io/api/v1/crates/malloc_buf/0.0.6/download -> malloc_buf-0.0.6.crate https://crates.io/api/v1/crates/markup5ever/0.10.1/download -> markup5ever-0.10.1.crate https://crates.io/api/v1/crates/matches/0.1.9/download -> matches-0.1.9.crate https://crates.io/api/v1/crates/md5/0.7.0/download -> md5-0.7.0.crate https://crates.io/api/v1/crates/md-5/0.9.1/download -> md-5-0.9.1.crate https://crates.io/api/v1/crates/memchr/2.4.1/download -> memchr-2.4.1.crate https://crates.io/api/v1/crates/memmap2/0.5.0/download -> memmap2-0.5.0.crate https://crates.io/api/v1/crates/memoffset/0.6.4/download -> memoffset-0.6.4.crate https://crates.io/api/v1/crates/meval/0.2.0/download -> meval-0.2.0.crate https://crates.io/api/v1/crates/mime/0.3.16/download -> mime-0.3.16.crate https://crates.io/api/v1/crates/mime_guess/2.0.3/download -> mime_guess-2.0.3.crate https://crates.io/api/v1/crates/miniz_oxide/0.3.7/download -> miniz_oxide-0.3.7.crate https://crates.io/api/v1/crates/miniz_oxide/0.4.4/download -> miniz_oxide-0.4.4.crate https://crates.io/api/v1/crates/miow/0.3.7/download -> miow-0.3.7.crate https://crates.io/api/v1/crates/mio/0.7.14/download -> mio-0.7.14.crate https://crates.io/api/v1/crates/mp4/0.9.0/download -> mp4-0.9.0.crate https://crates.io/api/v1/crates/multiversion/0.6.1/download -> multiversion-0.6.1.crate https://crates.io/api/v1/crates/multiversion-macros/0.6.1/download -> multiversion-macros-0.6.1.crate https://crates.io/api/v1/crates/native-tls/0.2.8/download -> native-tls-0.2.8.crate https://crates.io/api/v1/crates/neso/0.5.0/download -> neso-0.5.0.crate https://crates.io/api/v1/crates/new_debug_unreachable/1.0.4/download -> new_debug_unreachable-1.0.4.crate https://crates.io/api/v1/crates/nibble_vec/0.1.0/download -> nibble_vec-0.1.0.crate https://crates.io/api/v1/crates/nix/0.22.2/download -> nix-0.22.2.crate https://crates.io/api/v1/crates/nodrop/0.1.14/download -> nodrop-0.1.14.crate https://crates.io/api/v1/crates/nom/1.2.4/download -> nom-1.2.4.crate https://crates.io/api/v1/crates/ntapi/0.3.6/download -> ntapi-0.3.6.crate https://crates.io/api/v1/crates/num/0.2.1/download -> num-0.2.1.crate https://crates.io/api/v1/crates/num/0.4.0/download -> num-0.4.0.crate https://crates.io/api/v1/crates/num-bigint/0.2.6/download -> num-bigint-0.2.6.crate https://crates.io/api/v1/crates/num-bigint/0.3.3/download -> num-bigint-0.3.3.crate https://crates.io/api/v1/crates/num-bigint/0.4.3/download -> num-bigint-0.4.3.crate https://crates.io/api/v1/crates/num-complex/0.2.4/download -> num-complex-0.2.4.crate https://crates.io/api/v1/crates/num-complex/0.4.0/download -> num-complex-0.4.0.crate https://crates.io/api/v1/crates/num-format/0.4.0/download -> num-format-0.4.0.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-iter/0.1.42/download -> num-iter-0.1.42.crate https://crates.io/api/v1/crates/num-rational/0.2.4/download -> num-rational-0.2.4.crate https://crates.io/api/v1/crates/num-rational/0.3.2/download -> num-rational-0.3.2.crate https://crates.io/api/v1/crates/num-rational/0.4.0/download -> num-rational-0.4.0.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/num_cpus/1.13.0/download -> num_cpus-1.13.0.crate https://crates.io/api/v1/crates/nu/0.42.0/download -> nu-0.42.0.crate https://crates.io/api/v1/crates/nu-ansi-term/0.42.0/download -> nu-ansi-term-0.42.0.crate https://crates.io/api/v1/crates/nu-cli/0.42.0/download -> nu-cli-0.42.0.crate https://crates.io/api/v1/crates/nu-command/0.42.0/download -> nu-command-0.42.0.crate https://crates.io/api/v1/crates/nu-completion/0.42.0/download -> nu-completion-0.42.0.crate https://crates.io/api/v1/crates/nu-data/0.42.0/download -> nu-data-0.42.0.crate https://crates.io/api/v1/crates/nu-engine/0.42.0/download -> nu-engine-0.42.0.crate https://crates.io/api/v1/crates/nu-errors/0.42.0/download -> nu-errors-0.42.0.crate https://crates.io/api/v1/crates/nu-json/0.42.0/download -> nu-json-0.42.0.crate https://crates.io/api/v1/crates/nu-parser/0.42.0/download -> nu-parser-0.42.0.crate https://crates.io/api/v1/crates/nu-path/0.42.0/download -> nu-path-0.42.0.crate https://crates.io/api/v1/crates/nu-plugin/0.42.0/download -> nu-plugin-0.42.0.crate https://crates.io/api/v1/crates/nu-pretty-hex/0.42.0/download -> nu-pretty-hex-0.42.0.crate https://crates.io/api/v1/crates/nu-protocol/0.42.0/download -> nu-protocol-0.42.0.crate https://crates.io/api/v1/crates/nu-serde/0.42.0/download -> nu-serde-0.42.0.crate https://crates.io/api/v1/crates/nu-source/0.42.0/download -> nu-source-0.42.0.crate https://crates.io/api/v1/crates/nu-stream/0.42.0/download -> nu-stream-0.42.0.crate https://crates.io/api/v1/crates/nu-table/0.42.0/download -> nu-table-0.42.0.crate https://crates.io/api/v1/crates/nu-test-support/0.42.0/download -> nu-test-support-0.42.0.crate https://crates.io/api/v1/crates/nu-value-ext/0.42.0/download -> nu-value-ext-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_binaryview/0.42.0/download -> nu_plugin_binaryview-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_chart/0.42.0/download -> nu_plugin_chart-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_from_bson/0.42.0/download -> nu_plugin_from_bson-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_from_mp4/0.42.0/download -> nu_plugin_from_mp4-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_from_sqlite/0.42.0/download -> nu_plugin_from_sqlite-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_inc/0.42.0/download -> nu_plugin_inc-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_match/0.42.0/download -> nu_plugin_match-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_query_json/0.42.0/download -> nu_plugin_query_json-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_s3/0.42.0/download -> nu_plugin_s3-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_selector/0.42.0/download -> nu_plugin_selector-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_start/0.42.0/download -> nu_plugin_start-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_textview/0.42.0/download -> nu_plugin_textview-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_to_bson/0.42.0/download -> nu_plugin_to_bson-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_to_sqlite/0.42.0/download -> nu_plugin_to_sqlite-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_tree/0.42.0/download -> nu_plugin_tree-0.42.0.crate https://crates.io/api/v1/crates/nu_plugin_xpath/0.42.0/download -> nu_plugin_xpath-0.42.0.crate https://crates.io/api/v1/crates/objc/0.2.7/download -> objc-0.2.7.crate https://crates.io/api/v1/crates/object/0.27.1/download -> object-0.27.1.crate https://crates.io/api/v1/crates/once_cell/1.8.0/download -> once_cell-1.8.0.crate https://crates.io/api/v1/crates/onig/6.3.1/download -> onig-6.3.1.crate https://crates.io/api/v1/crates/onig_sys/69.7.1/download -> onig_sys-69.7.1.crate https://crates.io/api/v1/crates/opaque-debug/0.3.0/download -> opaque-debug-0.3.0.crate https://crates.io/api/v1/crates/openssl/0.10.38/download -> openssl-0.10.38.crate https://crates.io/api/v1/crates/openssl-probe/0.1.4/download -> openssl-probe-0.1.4.crate https://crates.io/api/v1/crates/openssl-sys/0.9.71/download -> openssl-sys-0.9.71.crate https://crates.io/api/v1/crates/open/1.7.1/download -> open-1.7.1.crate https://crates.io/api/v1/crates/ordered-float/1.1.1/download -> ordered-float-1.1.1.crate https://crates.io/api/v1/crates/overload/0.1.1/download -> overload-0.1.1.crate https://crates.io/api/v1/crates/parking_lot/0.11.2/download -> parking_lot-0.11.2.crate https://crates.io/api/v1/crates/parking_lot_core/0.8.5/download -> parking_lot_core-0.8.5.crate https://crates.io/api/v1/crates/parquet2/0.6.0/download -> parquet2-0.6.0.crate https://crates.io/api/v1/crates/parquet-format-async-temp/0.2.0/download -> parquet-format-async-temp-0.2.0.crate https://crates.io/api/v1/crates/parse-zoneinfo/0.3.0/download -> parse-zoneinfo-0.3.0.crate https://crates.io/api/v1/crates/pathdiff/0.2.1/download -> pathdiff-0.2.1.crate https://crates.io/api/v1/crates/path_abs/0.5.1/download -> path_abs-0.5.1.crate https://crates.io/api/v1/crates/percent-encoding/2.1.0/download -> percent-encoding-2.1.0.crate https://crates.io/api/v1/crates/peresil/0.3.0/download -> peresil-0.3.0.crate https://crates.io/api/v1/crates/pest/2.1.3/download -> pest-2.1.3.crate https://crates.io/api/v1/crates/phf/0.8.0/download -> phf-0.8.0.crate https://crates.io/api/v1/crates/phf_codegen/0.8.0/download -> phf_codegen-0.8.0.crate https://crates.io/api/v1/crates/phf_generator/0.8.0/download -> phf_generator-0.8.0.crate https://crates.io/api/v1/crates/phf_macros/0.8.0/download -> phf_macros-0.8.0.crate https://crates.io/api/v1/crates/phf_shared/0.8.0/download -> phf_shared-0.8.0.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.7/download -> pin-project-lite-0.2.7.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/pkg-config/0.3.22/download -> pkg-config-0.3.22.crate https://crates.io/api/v1/crates/plist/1.3.1/download -> plist-1.3.1.crate https://crates.io/api/v1/crates/png/0.16.8/download -> png-0.16.8.crate https://crates.io/api/v1/crates/polars/0.17.0/download -> polars-0.17.0.crate https://crates.io/api/v1/crates/polars-arrow/0.17.0/download -> polars-arrow-0.17.0.crate https://crates.io/api/v1/crates/polars-core/0.17.0/download -> polars-core-0.17.0.crate https://crates.io/api/v1/crates/polars-io/0.17.0/download -> polars-io-0.17.0.crate https://crates.io/api/v1/crates/polars-lazy/0.17.0/download -> polars-lazy-0.17.0.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.15/download -> ppv-lite86-0.2.15.crate https://crates.io/api/v1/crates/precomputed-hash/0.1.1/download -> precomputed-hash-0.1.1.crate https://crates.io/api/v1/crates/pretty/0.5.2/download -> pretty-0.5.2.crate https://crates.io/api/v1/crates/pretty_env_logger/0.4.0/download -> pretty_env_logger-0.4.0.crate https://crates.io/api/v1/crates/proc-macro2/1.0.32/download -> proc-macro2-1.0.32.crate https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download -> proc-macro-error-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download -> proc-macro-error-attr-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-hack/0.5.19/download -> proc-macro-hack-0.5.19.crate https://crates.io/api/v1/crates/ptree/0.4.0/download -> ptree-0.4.0.crate https://crates.io/api/v1/crates/quickcheck/1.0.3/download -> quickcheck-1.0.3.crate https://crates.io/api/v1/crates/quickcheck_macros/1.0.0/download -> quickcheck_macros-1.0.0.crate https://crates.io/api/v1/crates/quick-error/1.2.3/download -> quick-error-1.2.3.crate https://crates.io/api/v1/crates/quick-xml/0.19.0/download -> quick-xml-0.19.0.crate https://crates.io/api/v1/crates/quick-xml/0.22.0/download -> quick-xml-0.22.0.crate https://crates.io/api/v1/crates/quote/1.0.10/download -> quote-1.0.10.crate https://crates.io/api/v1/crates/radix_trie/0.2.1/download -> radix_trie-0.2.1.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand/0.8.4/download -> rand-0.8.4.crate https://crates.io/api/v1/crates/rand_chacha/0.2.2/download -> rand_chacha-0.2.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_core/0.5.1/download -> rand_core-0.5.1.crate https://crates.io/api/v1/crates/rand_core/0.6.3/download -> rand_core-0.6.3.crate https://crates.io/api/v1/crates/rand_distr/0.3.0/download -> rand_distr-0.3.0.crate https://crates.io/api/v1/crates/rand_hc/0.2.0/download -> rand_hc-0.2.0.crate https://crates.io/api/v1/crates/rand_hc/0.3.1/download -> rand_hc-0.3.1.crate https://crates.io/api/v1/crates/rand_pcg/0.2.1/download -> rand_pcg-0.2.1.crate https://crates.io/api/v1/crates/rawkey/0.1.3/download -> rawkey-0.1.3.crate https://crates.io/api/v1/crates/rayon/1.5.1/download -> rayon-1.5.1.crate https://crates.io/api/v1/crates/rayon-core/1.9.1/download -> rayon-core-1.9.1.crate https://crates.io/api/v1/crates/readkey/0.1.7/download -> readkey-0.1.7.crate https://crates.io/api/v1/crates/redox_syscall/0.2.10/download -> redox_syscall-0.2.10.crate https://crates.io/api/v1/crates/redox_users/0.4.0/download -> redox_users-0.4.0.crate https://crates.io/api/v1/crates/regex/1.5.4/download -> regex-1.5.4.crate https://crates.io/api/v1/crates/regex-automata/0.1.10/download -> regex-automata-0.1.10.crate https://crates.io/api/v1/crates/regex-syntax/0.6.25/download -> regex-syntax-0.6.25.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/reqwest/0.11.7/download -> reqwest-0.11.7.crate https://crates.io/api/v1/crates/result/1.0.0/download -> result-1.0.0.crate https://crates.io/api/v1/crates/roxmltree/0.14.1/download -> roxmltree-0.14.1.crate https://crates.io/api/v1/crates/rstest/0.10.0/download -> rstest-0.10.0.crate https://crates.io/api/v1/crates/rusqlite/0.26.1/download -> rusqlite-0.26.1.crate https://crates.io/api/v1/crates/rustc-demangle/0.1.21/download -> rustc-demangle-0.1.21.crate https://crates.io/api/v1/crates/rustc-serialize/0.3.24/download -> rustc-serialize-0.3.24.crate https://crates.io/api/v1/crates/rustc_version/0.3.3/download -> rustc_version-0.3.3.crate https://crates.io/api/v1/crates/rustc_version/0.4.0/download -> rustc_version-0.4.0.crate https://crates.io/api/v1/crates/rustversion/1.0.5/download -> rustversion-1.0.5.crate https://crates.io/api/v1/crates/rustyline/9.0.0/download -> rustyline-9.0.0.crate https://crates.io/api/v1/crates/rust-embed/5.9.0/download -> rust-embed-5.9.0.crate https://crates.io/api/v1/crates/rust-embed-impl/5.9.0/download -> rust-embed-impl-5.9.0.crate https://crates.io/api/v1/crates/rust-embed-utils/5.1.0/download -> rust-embed-utils-5.1.0.crate https://crates.io/api/v1/crates/rust_decimal/0.10.2/download -> rust_decimal-0.10.2.crate https://crates.io/api/v1/crates/ryu/1.0.6/download -> ryu-1.0.6.crate https://crates.io/api/v1/crates/s3handler/0.7.5/download -> s3handler-0.7.5.crate https://crates.io/api/v1/crates/safemem/0.3.3/download -> safemem-0.3.3.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.19/download -> schannel-0.1.19.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/scraper/0.12.0/download -> scraper-0.12.0.crate https://crates.io/api/v1/crates/security-framework/2.3.1/download -> security-framework-2.3.1.crate https://crates.io/api/v1/crates/security-framework-sys/2.4.2/download -> security-framework-sys-2.4.2.crate https://crates.io/api/v1/crates/selectors/0.22.0/download -> selectors-0.22.0.crate https://crates.io/api/v1/crates/semver/0.11.0/download -> semver-0.11.0.crate https://crates.io/api/v1/crates/semver/1.0.4/download -> semver-1.0.4.crate https://crates.io/api/v1/crates/semver-parser/0.10.2/download -> semver-parser-0.10.2.crate https://crates.io/api/v1/crates/serde/1.0.130/download -> serde-1.0.130.crate https://crates.io/api/v1/crates/serde_bytes/0.11.5/download -> serde_bytes-0.11.5.crate https://crates.io/api/v1/crates/serde_derive/1.0.130/download -> serde_derive-1.0.130.crate https://crates.io/api/v1/crates/serde_ini/0.2.0/download -> serde_ini-0.2.0.crate https://crates.io/api/v1/crates/serde_json/1.0.72/download -> serde_json-1.0.72.crate https://crates.io/api/v1/crates/serde_test/1.0.130/download -> serde_test-1.0.130.crate https://crates.io/api/v1/crates/serde_urlencoded/0.7.0/download -> serde_urlencoded-0.7.0.crate https://crates.io/api/v1/crates/serde_yaml/0.8.21/download -> serde_yaml-0.8.21.crate https://crates.io/api/v1/crates/serial_test/0.5.1/download -> serial_test-0.5.1.crate https://crates.io/api/v1/crates/serial_test_derive/0.5.1/download -> serial_test_derive-0.5.1.crate https://crates.io/api/v1/crates/servo_arc/0.1.1/download -> servo_arc-0.1.1.crate https://crates.io/api/v1/crates/sha1/0.2.0/download -> sha1-0.2.0.crate https://crates.io/api/v1/crates/sha2/0.9.8/download -> sha2-0.9.8.crate https://crates.io/api/v1/crates/shadow-rs/0.8.1/download -> shadow-rs-0.8.1.crate https://crates.io/api/v1/crates/shell-escape/0.1.5/download -> shell-escape-0.1.5.crate https://crates.io/api/v1/crates/shell-words/1.0.0/download -> shell-words-1.0.0.crate https://crates.io/api/v1/crates/signal-hook/0.1.17/download -> signal-hook-0.1.17.crate https://crates.io/api/v1/crates/signal-hook-registry/1.4.0/download -> signal-hook-registry-1.4.0.crate https://crates.io/api/v1/crates/simdutf8/0.1.3/download -> simdutf8-0.1.3.crate https://crates.io/api/v1/crates/similar/1.3.0/download -> similar-1.3.0.crate https://crates.io/api/v1/crates/siphasher/0.3.7/download -> siphasher-0.3.7.crate https://crates.io/api/v1/crates/slab/0.4.5/download -> slab-0.4.5.crate https://crates.io/api/v1/crates/smallvec/1.7.0/download -> smallvec-1.7.0.crate https://crates.io/api/v1/crates/smart-default/0.6.0/download -> smart-default-0.6.0.crate https://crates.io/api/v1/crates/snap/1.0.5/download -> snap-1.0.5.crate https://crates.io/api/v1/crates/socket2/0.4.2/download -> socket2-0.4.2.crate https://crates.io/api/v1/crates/spin/0.9.2/download -> spin-0.9.2.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/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/std_prelude/0.2.12/download -> std_prelude-0.2.12.crate https://crates.io/api/v1/crates/streaming-decompression/0.1.0/download -> streaming-decompression-0.1.0.crate https://crates.io/api/v1/crates/streaming-iterator/0.1.5/download -> streaming-iterator-0.1.5.crate https://crates.io/api/v1/crates/strength_reduce/0.2.3/download -> strength_reduce-0.2.3.crate https://crates.io/api/v1/crates/string_cache/0.8.2/download -> string_cache-0.8.2.crate https://crates.io/api/v1/crates/string_cache_codegen/0.5.1/download -> string_cache_codegen-0.5.1.crate https://crates.io/api/v1/crates/strip-ansi-escapes/0.1.1/download -> strip-ansi-escapes-0.1.1.crate https://crates.io/api/v1/crates/strum/0.20.0/download -> strum-0.20.0.crate https://crates.io/api/v1/crates/strum_macros/0.20.1/download -> strum_macros-0.20.1.crate https://crates.io/api/v1/crates/str-buf/1.0.5/download -> str-buf-1.0.5.crate https://crates.io/api/v1/crates/subtle/2.4.1/download -> subtle-2.4.1.crate https://crates.io/api/v1/crates/sxd-document/0.3.2/download -> sxd-document-0.3.2.crate https://crates.io/api/v1/crates/sxd-xpath/0.4.2/download -> sxd-xpath-0.4.2.crate https://crates.io/api/v1/crates/synstructure/0.12.6/download -> synstructure-0.12.6.crate https://crates.io/api/v1/crates/syntect/4.6.0/download -> syntect-4.6.0.crate https://crates.io/api/v1/crates/syn/1.0.82/download -> syn-1.0.82.crate https://crates.io/api/v1/crates/sysinfo/0.21.2/download -> sysinfo-0.21.2.crate https://crates.io/api/v1/crates/sys-info/0.9.1/download -> sys-info-0.9.1.crate https://crates.io/api/v1/crates/sys-locale/0.1.0/download -> sys-locale-0.1.0.crate https://crates.io/api/v1/crates/tempfile/3.2.0/download -> tempfile-3.2.0.crate https://crates.io/api/v1/crates/tendril/0.4.2/download -> tendril-0.4.2.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/terminal_size/0.1.17/download -> terminal_size-0.1.17.crate https://crates.io/api/v1/crates/term/0.7.0/download -> term-0.7.0.crate https://crates.io/api/v1/crates/term_size/0.3.2/download -> term_size-0.3.2.crate https://crates.io/api/v1/crates/thin-slice/0.1.1/download -> thin-slice-0.1.1.crate https://crates.io/api/v1/crates/thiserror/1.0.30/download -> thiserror-1.0.30.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.30/download -> thiserror-impl-1.0.30.crate https://crates.io/api/v1/crates/time/0.1.44/download -> time-0.1.44.crate https://crates.io/api/v1/crates/time/0.3.5/download -> time-0.3.5.crate https://crates.io/api/v1/crates/tinyvec/1.5.1/download -> tinyvec-1.5.1.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.0/download -> tinyvec_macros-0.1.0.crate https://crates.io/api/v1/crates/titlecase/1.1.0/download -> titlecase-1.1.0.crate https://crates.io/api/v1/crates/tokio/1.14.0/download -> tokio-1.14.0.crate https://crates.io/api/v1/crates/tokio-io/0.1.13/download -> tokio-io-0.1.13.crate https://crates.io/api/v1/crates/tokio-macros/1.6.0/download -> tokio-macros-1.6.0.crate https://crates.io/api/v1/crates/tokio-native-tls/0.3.0/download -> tokio-native-tls-0.3.0.crate https://crates.io/api/v1/crates/tokio-util/0.6.9/download -> tokio-util-0.6.9.crate https://crates.io/api/v1/crates/toml/0.5.8/download -> toml-0.5.8.crate https://crates.io/api/v1/crates/tower-service/0.3.1/download -> tower-service-0.3.1.crate https://crates.io/api/v1/crates/tracing/0.1.29/download -> tracing-0.1.29.crate https://crates.io/api/v1/crates/tracing-core/0.1.21/download -> tracing-core-0.1.21.crate https://crates.io/api/v1/crates/trash/2.0.2/download -> trash-2.0.2.crate https://crates.io/api/v1/crates/try-lock/0.2.3/download -> try-lock-0.2.3.crate https://crates.io/api/v1/crates/tui/0.15.0/download -> tui-0.15.0.crate https://crates.io/api/v1/crates/typed-arena/1.7.0/download -> typed-arena-1.7.0.crate https://crates.io/api/v1/crates/typenum/1.14.0/download -> typenum-1.14.0.crate https://crates.io/api/v1/crates/ucd-trie/0.1.3/download -> ucd-trie-0.1.3.crate https://crates.io/api/v1/crates/umask/1.0.0/download -> umask-1.0.0.crate https://crates.io/api/v1/crates/unicase/2.6.0/download -> unicase-2.6.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.7/download -> unicode-bidi-0.3.7.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.19/download -> unicode-normalization-0.1.19.crate https://crates.io/api/v1/crates/unicode-segmentation/1.8.0/download -> unicode-segmentation-1.8.0.crate https://crates.io/api/v1/crates/unicode-width/0.1.9/download -> unicode-width-0.1.9.crate https://crates.io/api/v1/crates/unicode-xid/0.2.2/download -> unicode-xid-0.2.2.crate https://crates.io/api/v1/crates/unsafe_unwrap/0.1.0/download -> unsafe_unwrap-0.1.0.crate https://crates.io/api/v1/crates/url/2.2.2/download -> url-2.2.2.crate https://crates.io/api/v1/crates/user32-sys/0.2.0/download -> user32-sys-0.2.0.crate https://crates.io/api/v1/crates/users/0.11.0/download -> users-0.11.0.crate https://crates.io/api/v1/crates/utf8parse/0.2.0/download -> utf8parse-0.2.0.crate https://crates.io/api/v1/crates/utf8-width/0.1.5/download -> utf8-width-0.1.5.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/uuid/0.8.2/download -> uuid-0.8.2.crate https://crates.io/api/v1/crates/vcpkg/0.2.15/download -> vcpkg-0.2.15.crate https://crates.io/api/v1/crates/version_check/0.9.3/download -> version_check-0.9.3.crate https://crates.io/api/v1/crates/void/1.0.2/download -> void-1.0.2.crate https://crates.io/api/v1/crates/vte/0.10.1/download -> vte-0.10.1.crate https://crates.io/api/v1/crates/vte_generate_state_changes/0.1.1/download -> vte_generate_state_changes-0.1.1.crate https://crates.io/api/v1/crates/walkdir/2.3.2/download -> walkdir-2.3.2.crate https://crates.io/api/v1/crates/want/0.3.0/download -> want-0.3.0.crate https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.10.0+wasi-snapshot-preview1/download -> wasi-0.10.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.78/download -> wasm-bindgen-0.2.78.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.78/download -> wasm-bindgen-backend-0.2.78.crate https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.28/download -> wasm-bindgen-futures-0.4.28.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.78/download -> wasm-bindgen-macro-0.2.78.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.78/download -> wasm-bindgen-macro-support-0.2.78.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.78/download -> wasm-bindgen-shared-0.2.78.crate https://crates.io/api/v1/crates/webbrowser/0.5.5/download -> webbrowser-0.5.5.crate https://crates.io/api/v1/crates/web-sys/0.3.55/download -> web-sys-0.3.55.crate https://crates.io/api/v1/crates/which/4.2.2/download -> which-4.2.2.crate https://crates.io/api/v1/crates/widestring/0.4.3/download -> widestring-0.4.3.crate https://crates.io/api/v1/crates/winapi/0.2.8/download -> winapi-0.2.8.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-build/0.1.1/download -> winapi-build-0.1.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.5/download -> winapi-util-0.1.5.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/windows/0.9.1/download -> windows-0.9.1.crate https://crates.io/api/v1/crates/windows-sys/0.28.0/download -> windows-sys-0.28.0.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.28.0/download -> windows_aarch64_msvc-0.28.0.crate https://crates.io/api/v1/crates/windows_gen/0.9.1/download -> windows_gen-0.9.1.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.28.0/download -> windows_i686_gnu-0.28.0.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.28.0/download -> windows_i686_msvc-0.28.0.crate https://crates.io/api/v1/crates/windows_macros/0.9.1/download -> windows_macros-0.9.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.28.0/download -> windows_x86_64_gnu-0.28.0.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.28.0/download -> windows_x86_64_msvc-0.28.0.crate https://crates.io/api/v1/crates/winreg/0.7.0/download -> winreg-0.7.0.crate https://crates.io/api/v1/crates/x11/2.19.1/download -> x11-2.19.1.crate https://crates.io/api/v1/crates/xmlparser/0.13.3/download -> xmlparser-0.13.3.crate https://crates.io/api/v1/crates/xml-rs/0.8.4/download -> xml-rs-0.8.4.crate https://crates.io/api/v1/crates/yaml-rust/0.4.5/download -> yaml-rust-0.4.5.crate https://crates.io/api/v1/crates/zip/0.5.13/download -> zip-0.5.13.crate https://crates.io/api/v1/crates/zstd/0.9.0+zstd.1.5.0/download -> zstd-0.9.0+zstd.1.5.0.crate https://crates.io/api/v1/crates/zstd-safe/4.1.1+zstd.1.5.0/download -> zstd-safe-4.1.1+zstd.1.5.0.crate https://crates.io/api/v1/crates/zstd-sys/1.6.1+zstd.1.5.0/download -> zstd-sys-1.6.1+zstd.1.5.0.crate +_eclasses_=cargo c7fefacaebdcb455d2a7b59429eb47a6 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=277d19770a25627db70dd0f8b51566ba diff --git a/metadata/md5-cache/app-text/Manifest.gz b/metadata/md5-cache/app-text/Manifest.gz index f27dea9daeff..12e03894a210 100644 Binary files a/metadata/md5-cache/app-text/Manifest.gz and b/metadata/md5-cache/app-text/Manifest.gz differ diff --git a/metadata/md5-cache/app-text/asciidoc-10.1.1-r1 b/metadata/md5-cache/app-text/asciidoc-10.1.1-r1 new file mode 100644 index 000000000000..2ba11020d491 --- /dev/null +++ b/metadata/md5-cache/app-text/asciidoc-10.1.1-r1 @@ -0,0 +1,14 @@ +BDEPEND=python_single_target_pypy3? ( >=dev-python/pypy3-7.3.7:0= >=dev-lang/python-exec-2:=[python_targets_pypy3] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) python_single_target_pypy3? ( >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)] ) python_single_target_python3_8? ( >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/setuptools-42.0.2[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/setuptools-42.0.2[python_targets_python3_10(-)] ) +DEFINED_PHASES=compile configure install postinst prepare setup test +DESCRIPTION=A plain text human readable/writable document format +EAPI=8 +HOMEPAGE=https://asciidoc.org/ https://github.com/asciidoc-py/asciidoc-py/ +IUSE=python_single_target_pypy3 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=app-text/docbook-xml-dtd:4.5 >=app-text/docbook-xsl-stylesheets-1.75 dev-libs/libxslt dev-libs/libxml2:2 python_single_target_pypy3? ( >=dev-python/pypy3-7.3.7:0= >=dev-lang/python-exec-2:=[python_targets_pypy3] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) +REQUIRED_USE=^^ ( python_single_target_pypy3 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) +SLOT=0 +SRC_URI=mirror://pypi/a/asciidoc/asciidoc-10.1.1.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature 30ce9dec2b8943338c9b015bd32bac6a python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=034c53e73ab3d49afee93face0c24ee0 diff --git a/metadata/md5-cache/app-text/asciidoc-9.0.2-r1 b/metadata/md5-cache/app-text/asciidoc-9.0.2-r1 deleted file mode 100644 index 0b4499917c90..000000000000 --- a/metadata/md5-cache/app-text/asciidoc-9.0.2-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=configure install postinst prepare setup -DEPEND=test? ( python_single_target_pypy3? ( >=dev-python/pypy3-7.3.7:0= >=dev-lang/python-exec-2:=[python_targets_pypy3] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-text/dvipng app-text/dvisvgm dev-texlive/texlive-latex dev-util/source-highlight media-gfx/graphviz media-gfx/imagemagick media-sound/lilypond ) -DESCRIPTION=A plain text human readable/writable document format -EAPI=7 -HOMEPAGE=https://asciidoc.org/ https://github.com/asciidoc-py/asciidoc-py/ -IUSE=doc test python_single_target_pypy3 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=GPL-2 -RDEPEND=python_single_target_pypy3? ( >=dev-python/pypy3-7.3.7:0= >=dev-lang/python-exec-2:=[python_targets_pypy3] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-text/docbook-xml-dtd:4.5 >=app-text/docbook-xsl-stylesheets-1.75 dev-libs/libxslt dev-libs/libxml2:2 -REQUIRED_USE=^^ ( python_single_target_pypy3 python_single_target_python3_8 python_single_target_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/asciidoc-py/asciidoc-py/releases/download/9.0.2/asciidoc-9.0.2.tar.gz -> asciidoc-9.0.2.new.tar.gz -_eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature 30ce9dec2b8943338c9b015bd32bac6a python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=d73cced182d73a60ef5a6d037d9b4295 diff --git a/metadata/md5-cache/app-text/asciidoc-9.1.0 b/metadata/md5-cache/app-text/asciidoc-9.1.0 index 9e4f33de5200..7cc8f3521755 100644 --- a/metadata/md5-cache/app-text/asciidoc-9.1.0 +++ b/metadata/md5-cache/app-text/asciidoc-9.1.0 @@ -5,7 +5,7 @@ DESCRIPTION=A plain text human readable/writable document format EAPI=7 HOMEPAGE=https://asciidoc.org/ https://github.com/asciidoc-py/asciidoc-py/ IUSE=doc test python_single_target_pypy3 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=python_single_target_pypy3? ( >=dev-python/pypy3-7.3.7:0= >=dev-lang/python-exec-2:=[python_targets_pypy3] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) app-text/docbook-xml-dtd:4.5 >=app-text/docbook-xsl-stylesheets-1.75 dev-libs/libxslt dev-libs/libxml2:2 REQUIRED_USE=^^ ( python_single_target_pypy3 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/asciidoc-py/asciidoc-py/releases/download/9.1.0/asciidoc-9.1.0.tar.gz -> asciidoc-9.1.0.new.tar.gz _eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature 30ce9dec2b8943338c9b015bd32bac6a python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=096a5c3a0e0ff7d3e3326aae1462cbe3 +_md5_=dca9910338ba32ebad9225da8aeba7ef diff --git a/metadata/md5-cache/app-text/asciidoc-9.0.4-r1 b/metadata/md5-cache/app-text/asciidoc-9.1.1 similarity index 64% rename from metadata/md5-cache/app-text/asciidoc-9.0.4-r1 rename to metadata/md5-cache/app-text/asciidoc-9.1.1 index 987cf8eae798..3a65c4d65798 100644 --- a/metadata/md5-cache/app-text/asciidoc-9.0.4-r1 +++ b/metadata/md5-cache/app-text/asciidoc-9.1.1 @@ -1,16 +1,16 @@ BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install postinst prepare setup -DEPEND=test? ( python_single_target_pypy3? ( >=dev-python/pypy3-7.3.7:0= >=dev-lang/python-exec-2:=[python_targets_pypy3] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-text/dvipng app-text/dvisvgm dev-texlive/texlive-latex dev-util/source-highlight media-gfx/graphviz media-gfx/imagemagick media-sound/lilypond ) +DEPEND=test? ( python_single_target_pypy3? ( >=dev-python/pypy3-7.3.7:0= >=dev-lang/python-exec-2:=[python_targets_pypy3] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) app-text/dvipng app-text/dvisvgm dev-texlive/texlive-latex dev-util/source-highlight media-gfx/graphviz media-gfx/imagemagick[png] media-sound/lilypond ) DESCRIPTION=A plain text human readable/writable document format EAPI=7 HOMEPAGE=https://asciidoc.org/ https://github.com/asciidoc-py/asciidoc-py/ -IUSE=doc test python_single_target_pypy3 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +IUSE=doc test python_single_target_pypy3 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 -RDEPEND=python_single_target_pypy3? ( >=dev-python/pypy3-7.3.7:0= >=dev-lang/python-exec-2:=[python_targets_pypy3] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-text/docbook-xml-dtd:4.5 >=app-text/docbook-xsl-stylesheets-1.75 dev-libs/libxslt dev-libs/libxml2:2 -REQUIRED_USE=^^ ( python_single_target_pypy3 python_single_target_python3_8 python_single_target_python3_9 ) +RDEPEND=python_single_target_pypy3? ( >=dev-python/pypy3-7.3.7:0= >=dev-lang/python-exec-2:=[python_targets_pypy3] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) app-text/docbook-xml-dtd:4.5 >=app-text/docbook-xsl-stylesheets-1.75 dev-libs/libxslt dev-libs/libxml2:2 +REQUIRED_USE=^^ ( python_single_target_pypy3 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/asciidoc-py/asciidoc-py/releases/download/9.0.4/asciidoc-9.0.4.tar.gz -> asciidoc-9.0.4.new.tar.gz +SRC_URI=https://github.com/asciidoc-py/asciidoc-py/releases/download/9.1.1/asciidoc-9.1.1.tar.gz -> asciidoc-9.1.1.new.tar.gz _eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature 30ce9dec2b8943338c9b015bd32bac6a python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=d73cced182d73a60ef5a6d037d9b4295 +_md5_=096a5c3a0e0ff7d3e3326aae1462cbe3 diff --git a/metadata/md5-cache/app-text/epspdf-0.6.5 b/metadata/md5-cache/app-text/epspdf-0.6.5 new file mode 100644 index 000000000000..cd79093a4ccd --- /dev/null +++ b/metadata/md5-cache/app-text/epspdf-0.6.5 @@ -0,0 +1,13 @@ +BDEPEND=app-arch/unzip sys-apps/texinfo +DEFINED_PHASES=compile install +DESCRIPTION=GUI and command-line converter for [e]ps and pdf +EAPI=7 +HOMEPAGE=http://tex.aanhet.net/epspdf/ +IUSE=doc tk +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=!=dev-texlive/texlive-basic-2011 app-text/ghostscript-gpl tk? ( dev-lang/tk ) +SLOT=0 +SRC_URI=https://dev.gentoo.org/~sam/distfiles/app-text/epspdf/epspdf-0.6.5.zip +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 texlive-common 0ed8c0ce6e8c9bb49ab84344ac802665 +_md5_=92e545f5842eba0349ca70782491aee0 diff --git a/metadata/md5-cache/app-text/lesspipe-2.00 b/metadata/md5-cache/app-text/lesspipe-2.00 new file mode 100644 index 000000000000..7e6dc9f68f44 --- /dev/null +++ b/metadata/md5-cache/app-text/lesspipe-2.00 @@ -0,0 +1,12 @@ +BDEPEND=dev-lang/perl +DEFINED_PHASES=compile configure install preinst +DESCRIPTION=A preprocessor for less +EAPI=7 +HOMEPAGE=https://github.com/wofr06/lesspipe +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=! lesspipe-2.00.tar.gz +_md5_=7f2425c3e6731750771bfdad170b72d2 diff --git a/metadata/md5-cache/app-text/ocrad-0.27 b/metadata/md5-cache/app-text/ocrad-0.27 index 8b3763b26eb8..c578f068b119 100644 --- a/metadata/md5-cache/app-text/ocrad-0.27 +++ b/metadata/md5-cache/app-text/ocrad-0.27 @@ -1,5 +1,5 @@ -DEFINED_PHASES=configure install unpack -DEPEND=|| ( app-arch/plzip app-arch/pdlzip app-arch/lzip ) +BDEPEND=|| ( app-arch/plzip app-arch/pdlzip app-arch/lzip ) +DEFINED_PHASES=compile configure install unpack DESCRIPTION=GNU Ocrad is an OCR (Optical Character Recognition) program EAPI=7 HOMEPAGE=https://www.gnu.org/software/ocrad/ocrad.html @@ -8,4 +8,4 @@ LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://nongnu/ocrad/ocrad-0.27.tar.lz _eclasses_=multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 928e1f35ef78ba9fc2b214e29c2b55a4 -_md5_=92031f23ad13d543b2bbd1a52b071f14 +_md5_=3f3d477df6a7c2dc40984ec4cd16167e diff --git a/metadata/md5-cache/app-xemacs/Manifest.gz b/metadata/md5-cache/app-xemacs/Manifest.gz index 6758a85eb614..eb629c1cdcba 100644 Binary files a/metadata/md5-cache/app-xemacs/Manifest.gz and b/metadata/md5-cache/app-xemacs/Manifest.gz differ diff --git a/metadata/md5-cache/app-xemacs/ebuild-mode-1.54 b/metadata/md5-cache/app-xemacs/ebuild-mode-1.54 new file mode 100644 index 000000000000..3c9a4530bc65 --- /dev/null +++ b/metadata/md5-cache/app-xemacs/ebuild-mode-1.54 @@ -0,0 +1,11 @@ +BDEPEND=>=app-editors/xemacs-21.4.20-r5 app-xemacs/sh-script +DEFINED_PHASES=compile install +DESCRIPTION=Emacs modes for editing ebuilds and other Gentoo specific files +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Emacs +KEYWORDS=~amd64 ~hppa ~x86 +LICENSE=GPL-2+ +RDEPEND=>=app-editors/xemacs-21.4.20-r5 app-xemacs/sh-script +SLOT=0 +SRC_URI=https://dev.gentoo.org/~ulm/emacs/ebuild-mode-1.54.tar.xz +_md5_=f9d9259ab79533586771cab7af18da60 diff --git a/metadata/md5-cache/app-xemacs/time-1.18 b/metadata/md5-cache/app-xemacs/time-1.18 index 56279e15de7b..e4007993cf13 100644 --- a/metadata/md5-cache/app-xemacs/time-1.18 +++ b/metadata/md5-cache/app-xemacs/time-1.18 @@ -2,10 +2,10 @@ DEFINED_PHASES=install unpack DESCRIPTION=Display time & date on the modeline EAPI=7 HOMEPAGE=http://xemacs.org/ -KEYWORDS=~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 ppc ppc64 sparc x86 LICENSE=GPL-2+ RDEPEND=app-xemacs/xemacs-base app-editors/xemacs SLOT=0 SRC_URI=http://ftp.xemacs.org/pub/xemacs/beta/experimental/packages/time-1.18-pkg.tar.gz _eclasses_=xemacs-packages c0b71c5a79f0f3cbd759f7754332ecca -_md5_=63ae9f71e329942295359e744b63d98b +_md5_=23535e5bc1ee5646e0d8a85588309fb5 diff --git a/metadata/md5-cache/app-xemacs/xemacs-base-2.47 b/metadata/md5-cache/app-xemacs/xemacs-base-2.47 index aee9b85fd960..fd1eef64fad1 100644 --- a/metadata/md5-cache/app-xemacs/xemacs-base-2.47 +++ b/metadata/md5-cache/app-xemacs/xemacs-base-2.47 @@ -2,10 +2,10 @@ DEFINED_PHASES=install unpack DESCRIPTION=Fundamental XEmacs support, you almost certainly need this EAPI=7 HOMEPAGE=http://xemacs.org/ -KEYWORDS=~alpha ~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=~alpha amd64 arm64 ~hppa ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2+ RDEPEND=app-editors/xemacs SLOT=0 SRC_URI=http://ftp.xemacs.org/pub/xemacs/beta/experimental/packages/xemacs-base-2.47-pkg.tar.gz _eclasses_=xemacs-packages c0b71c5a79f0f3cbd759f7754332ecca -_md5_=388fbb8b114283bf0fc10340f4fa439e +_md5_=56d24e5690425588533d7a6f4a76cf5e diff --git a/metadata/md5-cache/dev-ada/Manifest.gz b/metadata/md5-cache/dev-ada/Manifest.gz index a5fc984c98bf..4ebabcb3b57a 100644 Binary files a/metadata/md5-cache/dev-ada/Manifest.gz and b/metadata/md5-cache/dev-ada/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ada/VSS-22.0.0 b/metadata/md5-cache/dev-ada/VSS-22.0.0 index c8f9eabe6fc9..42e6ef30578b 100644 --- a/metadata/md5-cache/dev-ada/VSS-22.0.0 +++ b/metadata/md5-cache/dev-ada/VSS-22.0.0 @@ -1,15 +1,16 @@ -BDEPEND=dev-ada/gprbuild[ada_target_gnat_2020(-)?,ada_target_gnat_2021(-)?] -DEFINED_PHASES=compile setup -DEPEND=ada_target_gnat_2020? ( dev-lang/gnat-gpl:9.3.1[ada] ) ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) +BDEPEND=dev-ada/gprbuild[ada_target_gnat_2021(-)?,-ada_target_gnat_2020(-)] test? ( app-i18n/unicode-data ) +DEFINED_PHASES=compile prepare setup test +DEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) DESCRIPTION=A high level string and text processing library EAPI=7 HOMEPAGE=https://github.com/AdaCore/VSS -IUSE=ada_target_gnat_2020 ada_target_gnat_2021 +IUSE=test ada_target_gnat_2020 ada_target_gnat_2021 KEYWORDS=~amd64 ~x86 LICENSE=GPL-3 gcc-runtime-library-exception-3.1 -RDEPEND=ada_target_gnat_2020? ( dev-lang/gnat-gpl:9.3.1[ada] ) ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) -REQUIRED_USE=^^ ( ada_target_gnat_2020 ada_target_gnat_2021 ) +RDEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) +REQUIRED_USE=ada_target_gnat_2021 +RESTRICT=!test? ( test ) SLOT=0/22.0.0 SRC_URI=https://github.com/AdaCore/VSS/archive/refs/tags/v22.0.0.tar.gz -> VSS-22.0.0.tar.gz _eclasses_=ada dd7d6e1357088d74546d8e11f7f485fc multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=9ad1f525efe1f4226286a2d29233c4fb +_md5_=a897783d0e2469fecf020ca91723cbc3 diff --git a/metadata/md5-cache/dev-ada/libadalang-tools-22.0.0 b/metadata/md5-cache/dev-ada/libadalang-tools-22.0.0-r1 similarity index 76% rename from metadata/md5-cache/dev-ada/libadalang-tools-22.0.0 rename to metadata/md5-cache/dev-ada/libadalang-tools-22.0.0-r1 index 0d02d5fcf497..35bb9df782a2 100644 --- a/metadata/md5-cache/dev-ada/libadalang-tools-22.0.0 +++ b/metadata/md5-cache/dev-ada/libadalang-tools-22.0.0-r1 @@ -1,15 +1,16 @@ BDEPEND=dev-ada/gprbuild[ada_target_gnat_2021(-)?,-ada_target_gnat_2020(-)] DEFINED_PHASES=compile install setup -DEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) dev-ada/libadalang:=[ada_target_gnat_2021(-)?,-ada_target_gnat_2020(-),static-libs] +DEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) dev-ada/libadalang:=[ada_target_gnat_2021(-)?,-ada_target_gnat_2020(-),static-libs?,static-pic?] DESCRIPTION=Libadalang-based tools: gnatpp, gnatmetric and gnatstub EAPI=7 HOMEPAGE=https://www.adacore.com/community -IUSE=ada_target_gnat_2020 ada_target_gnat_2021 +IUSE=+shared static-libs static-pic ada_target_gnat_2020 ada_target_gnat_2021 KEYWORDS=~amd64 LICENSE=GPL-3 RDEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) +REQUIRED_USE=|| ( shared static-libs static-pic ) ada_target_gnat_2021 RESTRICT=test SLOT=0 SRC_URI=https://github.com/AdaCore/libadalang-tools/archive/refs/tags/v22.0.0.tar.gz -> libadalang-tools-22.0.0.tar.gz _eclasses_=ada dd7d6e1357088d74546d8e11f7f485fc multiprocessing 61c959fc55c15c00bbb1079d6a71370b -_md5_=bddf4a83b64bac722e29e70ba49c699c +_md5_=9fae3d99a25b6163e1634f6e76606357 diff --git a/metadata/md5-cache/dev-cpp/Manifest.gz b/metadata/md5-cache/dev-cpp/Manifest.gz index da7ab65065a4..2f7c77940af8 100644 Binary files a/metadata/md5-cache/dev-cpp/Manifest.gz and b/metadata/md5-cache/dev-cpp/Manifest.gz differ diff --git a/metadata/md5-cache/dev-cpp/catch-1.12.2-r1 b/metadata/md5-cache/dev-cpp/catch-1.12.2-r1 new file mode 100644 index 000000000000..a381df8b3c71 --- /dev/null +++ b/metadata/md5-cache/dev-cpp/catch-1.12.2-r1 @@ -0,0 +1,14 @@ +BDEPEND=dev-util/ninja >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Modern C++ header-only framework for unit-tests +EAPI=7 +HOMEPAGE=https://github.com/catchorg/Catch2 +IUSE=test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +LICENSE=Boost-1.0 +RDEPEND=! Catch-1.12.2.tar.gz +_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 +_md5_=2c960028b91ac860df8a39daf7fb2132 diff --git a/metadata/md5-cache/dev-cpp/catch-1.9999 b/metadata/md5-cache/dev-cpp/catch-1.9999 index 3667b3df8ee9..10287a3e9207 100644 --- a/metadata/md5-cache/dev-cpp/catch-1.9999 +++ b/metadata/md5-cache/dev-cpp/catch-1.9999 @@ -1,4 +1,4 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=dev-util/ninja >=dev-util/cmake-3.20.5 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install prepare test unpack DESCRIPTION=Modern C++ header-only framework for unit-tests EAPI=7 @@ -9,5 +9,5 @@ PROPERTIES=live RDEPEND=!=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=test? ( dev-cpp/catch:1 ) +DESCRIPTION=Provides C++ support for the HOCON configuration file format +EAPI=7 +HOMEPAGE=https://github.com/puppetlabs/cpp-hocon +IUSE=debug test +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-libs/boost-1.54:=[nls] >=dev-libs/leatherman-0.9.3:= +RESTRICT=!test? ( test ) +SLOT=0/0.3.0 +SRC_URI=https://github.com/puppetlabs/cpp-hocon/archive/0.3.0.tar.gz -> cpp-hocon-0.3.0.tar.gz +_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 +_md5_=579be9e1ed11fe886cac51237acf8fd4 diff --git a/metadata/md5-cache/dev-games/Manifest.gz b/metadata/md5-cache/dev-games/Manifest.gz index cf3eb0e604a0..aed63055a142 100644 Binary files a/metadata/md5-cache/dev-games/Manifest.gz and b/metadata/md5-cache/dev-games/Manifest.gz differ diff --git a/metadata/md5-cache/dev-games/openscenegraph-openmw-3.4_p20200425-r101 b/metadata/md5-cache/dev-games/openscenegraph-openmw-3.4_p20200425-r101 deleted file mode 100644 index 38884d2a5ab3..000000000000 --- a/metadata/md5-cache/dev-games/openscenegraph-openmw-3.4_p20200425-r101 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=app-arch/unzip virtual/pkgconfig doc? ( app-doc/doxygen ) dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=!dev-games/openscenegraph media-libs/mesa[egl(+)?] virtual/glu virtual/opengl x11-libs/libSM x11-libs/libXext curl? ( net-misc/curl ) examples? ( fltk? ( x11-libs/fltk:1[opengl] ) fox? ( x11-libs/fox:1.6[opengl] ) glut? ( media-libs/freeglut ) sdl2? ( media-libs/libsdl2 ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[opengl,X] ) ) ffmpeg? ( media-video/ffmpeg:0= ) gdal? ( sci-libs/gdal:= ) gif? ( media-libs/giflib:= ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jpeg? ( virtual/jpeg:0 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) openexr? ( media-libs/ilmbase:= media-libs/openexr:= ) openinventor? ( media-libs/coin ) pdf? ( app-text/poppler[cairo] ) png? ( media-libs/libpng:0= ) qt5? ( dev-qt/qtopengl:5 dev-qt/qtwidgets:5 ) sdl? ( media-libs/libsdl ) svg? ( gnome-base/librsvg x11-libs/cairo ) tiff? ( media-libs/tiff:0 ) truetype? ( media-libs/freetype:2 ) vnc? ( net-libs/libvncserver ) xrandr? ( x11-libs/libXrandr ) zlib? ( sys-libs/zlib ) x11-base/xorg-proto -DESCRIPTION=OpenMW-specific fork of OpenSceneGraph -EAPI=7 -HOMEPAGE=https://github.com/OpenMW/osg -IUSE=curl debug doc examples egl ffmpeg fltk fox gdal gif glut gstreamer jpeg lua openexr openinventor osgapps pdf png qt5 sdl sdl2 svg tiff truetype vnc wxwidgets xine xrandr zlib +lua_single_target_lua5-1 -KEYWORDS=~amd64 ~arm64 ~x86 -LICENSE=wxWinLL-3 LGPL-2.1 -RDEPEND=!dev-games/openscenegraph media-libs/mesa[egl(+)?] virtual/glu virtual/opengl x11-libs/libSM x11-libs/libXext curl? ( net-misc/curl ) examples? ( fltk? ( x11-libs/fltk:1[opengl] ) fox? ( x11-libs/fox:1.6[opengl] ) glut? ( media-libs/freeglut ) sdl2? ( media-libs/libsdl2 ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[opengl,X] ) ) ffmpeg? ( media-video/ffmpeg:0= ) gdal? ( sci-libs/gdal:= ) gif? ( media-libs/giflib:= ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jpeg? ( virtual/jpeg:0 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) openexr? ( media-libs/ilmbase:= media-libs/openexr:= ) openinventor? ( media-libs/coin ) pdf? ( app-text/poppler[cairo] ) png? ( media-libs/libpng:0= ) qt5? ( dev-qt/qtopengl:5 dev-qt/qtwidgets:5 ) sdl? ( media-libs/libsdl ) svg? ( gnome-base/librsvg x11-libs/cairo ) tiff? ( media-libs/tiff:0 ) truetype? ( media-libs/freetype:2 ) vnc? ( net-libs/libvncserver ) xrandr? ( x11-libs/libXrandr ) zlib? ( sys-libs/zlib ) -REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 ) ) sdl2? ( sdl ) openexr? ( zlib ) -SLOT=0/132 -SRC_URI=https://github.com/OpenMW/osg/archive/8b07809fa674ecffe77338aaea2e223b3aadff0e.tar.gz -> openscenegraph-openmw-3.4_p20200425.tar.gz -_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 lua-single ba92a0c9d413e015c6625cdb0b9aaf99 lua-utils 7b7cd623ac8b9dd4a7a6ee27219cada6 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 wxwidgets 7e8a20d3bacea0e3ecf6e96fb72180aa xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=59121fd21b2d5146a04d7c9254f4e9c2 diff --git a/metadata/md5-cache/dev-games/physfs-3.0.2 b/metadata/md5-cache/dev-games/physfs-3.0.2 deleted file mode 100644 index f430eee28f96..000000000000 --- a/metadata/md5-cache/dev-games/physfs-3.0.2 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=doc? ( app-doc/doxygen ) dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Abstraction layer for filesystem and archive access -EAPI=7 -HOMEPAGE=https://icculus.org/physfs/ -IUSE=7zip doc grp hog iso mvl qpak slb static-libs vdf wad +zip 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 ppc64 x86 -LICENSE=ZLIB -SLOT=0 -SRC_URI=https://icculus.org/physfs/downloads/physfs-3.0.2.tar.bz2 -_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 cmake-multilib de2335e0bd21535a925d008ee3b98e2a edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 multilib-minimal be5919734a8448dddd49c2b26db45091 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=3d4b5cfe0184a52aac8586d197b6acbc diff --git a/metadata/md5-cache/dev-java/Manifest.gz b/metadata/md5-cache/dev-java/Manifest.gz index db691dd6e691..83244dc9357a 100644 Binary files a/metadata/md5-cache/dev-java/Manifest.gz and b/metadata/md5-cache/dev-java/Manifest.gz differ diff --git a/metadata/md5-cache/dev-java/commons-pool-2.2 b/metadata/md5-cache/dev-java/commons-pool-2.2 deleted file mode 100644 index 9697e1dd0a65..000000000000 --- a/metadata/md5-cache/dev-java/commons-pool-2.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=dev-java/cglib:3 dev-java/asm:4 >=virtual/jdk-1.6 test? ( dev-java/ant-junit:0 dev-java/junit:4 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=Provides general purpose object pooling API -EAPI=5 -HOMEPAGE=http://commons.apache.org/pool/ -IUSE=elibc_FreeBSD doc source test -KEYWORDS=amd64 ppc64 x86 -LICENSE=Apache-2.0 -RDEPEND=dev-java/cglib:3 dev-java/asm:4 >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -RESTRICT=!test? ( test ) -SLOT=2 -SRC_URI=mirror://apache/commons/pool/source/commons-pool2-2.2-src.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-ant-2 262d853e2dd1056dc103b953dfc113b9 java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=17e6a09a039bcbe79bae421dd499dad7 diff --git a/metadata/md5-cache/dev-java/dict4j-1.1 b/metadata/md5-cache/dev-java/dict4j-1.1 deleted file mode 100644 index d6638c92647c..000000000000 --- a/metadata/md5-cache/dev-java/dict4j-1.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.6 app-arch/unzip >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Dict protocol implementation in Java -EAPI=5 -HOMEPAGE=http://dict4j.sourceforge.net/ -IUSE=elibc_FreeBSD doc source -KEYWORDS=amd64 x86 -LICENSE=BSD -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=mirror://sourceforge/dict4j/dict4j-1.1-src.jar -> dict4j-1.1.jar -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=2c0183c0f6d52cf297e0ef24933d9b87 diff --git a/metadata/md5-cache/dev-java/felix-gogo-command-0.12.0 b/metadata/md5-cache/dev-java/felix-gogo-command-0.12.0 deleted file mode 100644 index 11742824e47d..000000000000 --- a/metadata/md5-cache/dev-java/felix-gogo-command-0.12.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup -DEPEND=>=virtual/jdk-1.6 dev-java/felix-bundlerepository:0 dev-java/felix-gogo-runtime:0 dev-java/osgi-compendium:0 dev-java/osgi-core-api:0 >=dev-java/java-config-2.2.0-r3 >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=Felix Gogo Command -EAPI=5 -HOMEPAGE=http://felix.apache.org/site/apache-felix-gogo.html -IUSE=elibc_FreeBSD -KEYWORDS=amd64 -LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.6 dev-java/felix-bundlerepository:0 dev-java/felix-gogo-runtime:0 dev-java/osgi-compendium:0 dev-java/osgi-core-api:0 >=dev-java/java-config-2.2.0-r3 -SLOT=0 -SRC_URI=mirror://apache/felix/org.apache.felix.gogo.command-0.12.0-project.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-ant-2 262d853e2dd1056dc103b953dfc113b9 java-osgi 6089d1c0f617fc9f3fe1ed559f9c22a4 java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=59ce56d2f1f662d658fea4a67a010a80 diff --git a/metadata/md5-cache/dev-java/jama-1.0.3-r1 b/metadata/md5-cache/dev-java/jama-1.0.3-r1 deleted file mode 100644 index 617f049304af..000000000000 --- a/metadata/md5-cache/dev-java/jama-1.0.3-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=A Java Matrix Package -EAPI=5 -HOMEPAGE=https://math.nist.gov/javanumerics/jama/ -IUSE=elibc_FreeBSD doc source -KEYWORDS=amd64 ~ppc64 x86 -LICENSE=public-domain -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=https://math.nist.gov/javanumerics/jama/Jama-1.0.3.tar.gz -> jama-1.0.3.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=66441fe706e4a95b7476de8bb3bacf5a diff --git a/metadata/md5-cache/dev-java/janino-2.7.0 b/metadata/md5-cache/dev-java/janino-2.7.0 deleted file mode 100644 index 7caa09a435e5..000000000000 --- a/metadata/md5-cache/dev-java/janino-2.7.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.6 app-arch/unzip dev-java/ant-core:0 dev-java/unkrig-nullanalysis:0 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=An embedded compiler for run-time compilation purposes -EAPI=5 -HOMEPAGE=http://janino.net/ -IUSE=elibc_FreeBSD doc source examples -KEYWORDS=amd64 ~arm ~arm64 x86 -LICENSE=BSD -RDEPEND=>=virtual/jre-1.6 dev-java/ant-core:0 dev-java/unkrig-nullanalysis:0 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=http://janino.net/download/janino-2.7.0.zip -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=88a5974d0ee185f4239020f7265dd563 diff --git a/metadata/md5-cache/dev-java/jchardet-1.1-r1 b/metadata/md5-cache/dev-java/jchardet-1.1-r1 deleted file mode 100644 index 9784fcd6e7bb..000000000000 --- a/metadata/md5-cache/dev-java/jchardet-1.1-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.6 app-arch/unzip >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Java port of Mozilla's Automatic Charset Detection algorithm -EAPI=5 -HOMEPAGE=http://jchardet.sourceforge.net/ -IUSE=elibc_FreeBSD doc source -KEYWORDS=amd64 x86 -LICENSE=MPL-1.1 -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=mirror://sourceforge/jchardet/jchardet/jchardet-1.1.zip -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=a7f32751743bcde69edf9bff122d4465 diff --git a/metadata/md5-cache/dev-java/jcommon-1.0.23 b/metadata/md5-cache/dev-java/jcommon-1.0.23 deleted file mode 100644 index 69aefe684219..000000000000 --- a/metadata/md5-cache/dev-java/jcommon-1.0.23 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup -DEPEND=>=virtual/jdk-1.6 app-arch/unzip test? ( dev-java/junit:4 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=A collection of useful classes used by JFreeChart, JFreeReport and others -EAPI=5 -HOMEPAGE=http://www.jfree.org/jcommon -IUSE=debug elibc_FreeBSD doc source test -KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux -LICENSE=LGPL-2 -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -RESTRICT=!test? ( test ) -SLOT=1.0 -SRC_URI=mirror://sourceforge/jfreechart/jcommon-1.0.23.zip -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-ant-2 262d853e2dd1056dc103b953dfc113b9 java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=4850f5b75a4aab0b2c486ecafcad7c89 diff --git a/metadata/md5-cache/dev-java/jdynamite-1.2-r1 b/metadata/md5-cache/dev-java/jdynamite-1.2-r1 deleted file mode 100644 index e26946ccd96e..000000000000 --- a/metadata/md5-cache/dev-java/jdynamite-1.2-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=dev-java/gnu-regexp:1 >=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Dynamic Template in Java -EAPI=5 -HOMEPAGE=http://jdynamite.sourceforge.net/doc/jdynamite.html -IUSE=elibc_FreeBSD doc source -KEYWORDS=~amd64 ~ppc64 ~x86 -LICENSE=LGPL-2 -RDEPEND=dev-java/gnu-regexp:1 >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=mirror://sourceforge/jdynamite/jdynamite1_2.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=6591e25c0cd34754b8ebf14fa6c0bb7e diff --git a/metadata/md5-cache/dev-java/jfreesvg-2.1-r1 b/metadata/md5-cache/dev-java/jfreesvg-2.1-r1 deleted file mode 100644 index a6a2adda4b79..000000000000 --- a/metadata/md5-cache/dev-java/jfreesvg-2.1-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup -DEPEND=app-arch/unzip >=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=JFreeSVG is a fast, light-weight, vector graphics library for the Java platform -EAPI=5 -HOMEPAGE=http://www.jfree.org/jfreesvg/ -IUSE=debug elibc_FreeBSD doc source -KEYWORDS=amd64 x86 -LICENSE=GPL-3 -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=2.1 -SRC_URI=mirror://sourceforge/jfreegraphics2d/jfreesvg-2.1.zip -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-ant-2 262d853e2dd1056dc103b953dfc113b9 java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=4714b5f1df8880e9936254ab9b3ddd05 diff --git a/metadata/md5-cache/dev-java/jfreesvg-3.0 b/metadata/md5-cache/dev-java/jfreesvg-3.0 deleted file mode 100644 index 9de7d093b3c8..000000000000 --- a/metadata/md5-cache/dev-java/jfreesvg-3.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup -DEPEND=>=virtual/jdk-1.6 app-arch/unzip >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=JFreeSVG is a fast, light-weight, vector graphics library for the Java platform -EAPI=5 -HOMEPAGE=http://www.jfree.org/jfreesvg/ -IUSE=debug elibc_FreeBSD doc source -KEYWORDS=amd64 x86 -LICENSE=GPL-3 -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=3.0 -SRC_URI=mirror://sourceforge/jfreegraphics2d/jfreesvg-3.0.zip -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-ant-2 262d853e2dd1056dc103b953dfc113b9 java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=71f1073b7bef0f744d89970c79856ecd diff --git a/metadata/md5-cache/dev-java/jgrapht-0.8.3 b/metadata/md5-cache/dev-java/jgrapht-0.8.3 deleted file mode 100644 index 9141ba4d3af3..000000000000 --- a/metadata/md5-cache/dev-java/jgrapht-0.8.3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=dev-java/touchgraph-graphlayout:0 dev-java/jgraph:0 >=virtual/jdk-1.6 test? ( dev-java/ant-junit:0 dev-java/xmlunit:1 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=Graph library that is a simpler and faster alternative to JGraph -EAPI=5 -HOMEPAGE=http://jgrapht.sourceforge.net -IUSE=elibc_FreeBSD doc source test -KEYWORDS=amd64 x86 -LICENSE=LGPL-2.1 -RDEPEND=dev-java/touchgraph-graphlayout:0 dev-java/jgraph:0 >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://sourceforge/jgrapht/jgrapht-0.8.3.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-ant-2 262d853e2dd1056dc103b953dfc113b9 java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=16aa007a9d549c867d1f3d7cb89d0429 diff --git a/metadata/md5-cache/dev-java/jmdns-3.4.1-r1 b/metadata/md5-cache/dev-java/jmdns-3.4.1-r1 deleted file mode 100644 index 32c6e207edee..000000000000 --- a/metadata/md5-cache/dev-java/jmdns-3.4.1-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=JmDNS is an implementation of multi-cast DNS in Java -EAPI=5 -HOMEPAGE=http://jmdns.sourceforge.net -IUSE=elibc_FreeBSD doc examples source test -KEYWORDS=amd64 ~ppc64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://sourceforge/jmdns/jmdns-3.4.1.tgz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=893634ab129e1696e9554b96f9c75c64 diff --git a/metadata/md5-cache/dev-java/jsr225-1.0 b/metadata/md5-cache/dev-java/jsr225-1.0 deleted file mode 100644 index 402240fea0fa..000000000000 --- a/metadata/md5-cache/dev-java/jsr225-1.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=XQuery API for Java -EAPI=5 -HOMEPAGE=http://jcp.org/en/jsr/detail?id=225 -IUSE=elibc_FreeBSD source doc -KEYWORDS=amd64 ppc64 x86 -LICENSE=GPL-2-with-linking-exception -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=https://github.com/cfoster/xqj-api-1.0.0/raw/master/javax/xml/xquery/xqj-api/1.0/xqj-api-1.0-sources.jar -> jsr225-1.0.jar -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=a2832b6b086c32f570d012dd949ddbb5 diff --git a/metadata/md5-cache/dev-java/jsr311-api-1.1.1 b/metadata/md5-cache/dev-java/jsr311-api-1.1.1 deleted file mode 100644 index c268fd33057c..000000000000 --- a/metadata/md5-cache/dev-java/jsr311-api-1.1.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=JAX-RS: Java API for RESTful Web Services -EAPI=5 -HOMEPAGE=http://jcp.org/en/jsr/detail?id=311 -IUSE=elibc_FreeBSD source doc -KEYWORDS=amd64 ppc64 x86 -LICENSE=CDDL -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=http://repo1.maven.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1-sources.jar -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=d9267f51129fbebd084011565a577bc8 diff --git a/metadata/md5-cache/dev-java/jsr322-1.5 b/metadata/md5-cache/dev-java/jsr322-1.5 deleted file mode 100644 index 946011744f44..000000000000 --- a/metadata/md5-cache/dev-java/jsr322-1.5 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Java EE Connector Architecture -EAPI=5 -HOMEPAGE=http://jcp.org/en/jsr/detail?id=322 -IUSE=elibc_FreeBSD source doc -KEYWORDS=amd64 ppc64 x86 -LICENSE=BSD -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=https://repo1.maven.org/maven2/javax/resource/connector-api/1.5/connector-api-1.5-sources.jar -> jsr322-1.5.jar -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=23cb0595b8bf58a4c9c2500b01b2aeed diff --git a/metadata/md5-cache/dev-java/jung-1.7.6-r1 b/metadata/md5-cache/dev-java/jung-1.7.6-r1 deleted file mode 100644 index edf872a235de..000000000000 --- a/metadata/md5-cache/dev-java/jung-1.7.6-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=dev-java/colt:0 dev-java/commons-collections:0 app-arch/unzip >=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=The Java Universal Network/Graph Framework -EAPI=5 -HOMEPAGE=http://jung.sourceforge.net/ -IUSE=elibc_FreeBSD doc source -KEYWORDS=amd64 ~ppc64 x86 -LICENSE=BSD -RDEPEND=dev-java/colt:0 dev-java/commons-collections:0 >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=mirror://sourceforge/jung/jung-1.7.6.zip -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=1e1aaff4175439acc4ac1e10dcb007ca diff --git a/metadata/md5-cache/dev-java/mojarra-2.2.12-r1 b/metadata/md5-cache/dev-java/mojarra-2.2.12-r1 deleted file mode 100644 index 8eda3508cc2e..000000000000 --- a/metadata/md5-cache/dev-java/mojarra-2.2.12-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.6 app-arch/unzip dev-java/glassfish-persistence:0 dev-java/glassfish-ejb-api:0 java-virtuals/servlet-api:3.0 dev-java/tomcat-jstl-spec:0 dev-java/tomcat-jstl-impl:0 dev-java/validation-api:1.0 dev-java/javax-inject:0 dev-java/cdi-api:1.2 >=dev-java/java-config-2.2.0-r3 -DESCRIPTION=Project Mojarra - GlassFish's Implementation for JavaServer Faces API -EAPI=5 -HOMEPAGE=https://javaserverfaces.dev.java.net/ -IUSE=elibc_FreeBSD -KEYWORDS=amd64 x86 -LICENSE=CDDL -RDEPEND=>=virtual/jre-1.6 dev-java/glassfish-persistence:0 dev-java/glassfish-ejb-api:0 java-virtuals/servlet-api:3.0 dev-java/tomcat-jstl-spec:0 dev-java/tomcat-jstl-impl:0 dev-java/validation-api:1.0 dev-java/javax-inject:0 dev-java/cdi-api:1.2 >=dev-java/java-config-2.2.0-r3 -SLOT=2.2 -SRC_URI=https://maven.java.net/content/repositories/releases/org/glassfish/javax.faces/2.2.12/javax.faces-2.2.12-sources.jar -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=02497fc8ad9a9255f5946dcddbf4904f diff --git a/metadata/md5-cache/dev-java/neuroph-2.4 b/metadata/md5-cache/dev-java/neuroph-2.4 deleted file mode 100644 index 86d5632d7b22..000000000000 --- a/metadata/md5-cache/dev-java/neuroph-2.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup -DEPEND=>=virtual/jdk-1.6 app-arch/unzip >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=A lightweight Java neural network framework -EAPI=5 -HOMEPAGE=http://neuroph.sourceforge.net/ -IUSE=elibc_FreeBSD doc source -KEYWORDS=amd64 x86 -LICENSE=GPL-3 -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=mirror://sourceforge/neuroph/neuroph_2.4_nb.zip -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-ant-2 262d853e2dd1056dc103b953dfc113b9 java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=0d925704ae30fab2300fba6b27aa8d86 diff --git a/metadata/md5-cache/dev-java/ognl-3.0.8 b/metadata/md5-cache/dev-java/ognl-3.0.8 deleted file mode 100644 index 947cb072953d..000000000000 --- a/metadata/md5-cache/dev-java/ognl-3.0.8 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup -DEPEND=dev-java/javassist:3 app-arch/unzip >=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=Object-Graph Navigation Language: get/set properties of objects -EAPI=5 -HOMEPAGE=http://www.ognl.org/ -IUSE=elibc_FreeBSD doc source -KEYWORDS=amd64 x86 -LICENSE=Apache-1.1 -RDEPEND=dev-java/javassist:3 >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=3.0 -SRC_URI=https://github.com/jkuhnert/ognl/archive/OGNL_3_0_8.tar.gz https://ognl.dev.java.net/source/browse/*checkout*/ognl/osbuild.xml -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-ant-2 262d853e2dd1056dc103b953dfc113b9 java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=c6ebf25296a071d6e5aee15b966c35c9 diff --git a/metadata/md5-cache/dev-java/piccolo-1.04 b/metadata/md5-cache/dev-java/piccolo-1.04 deleted file mode 100644 index d445f9224989..000000000000 --- a/metadata/md5-cache/dev-java/piccolo-1.04 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup -DEPEND=>=virtual/jdk-1.6 app-arch/unzip >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=A small, extremely fast XML parser for Java -EAPI=5 -HOMEPAGE=http://piccolo.sourceforge.net/ -IUSE=elibc_FreeBSD doc source -KEYWORDS=~amd64 ~ppc64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=mirror://sourceforge/piccolo/piccolo-1.04-src.zip -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-ant-2 262d853e2dd1056dc103b953dfc113b9 java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=9d9336f5e71e84b6c28435a6a5476627 diff --git a/metadata/md5-cache/dev-java/portletapi-1.0-r1 b/metadata/md5-cache/dev-java/portletapi-1.0-r1 deleted file mode 100644 index daa1191f30ac..000000000000 --- a/metadata/md5-cache/dev-java/portletapi-1.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Portlet API implementation of JSR 168 -EAPI=5 -HOMEPAGE=http://portals.apache.org/jetspeed-2/ -IUSE=elibc_FreeBSD doc source -KEYWORDS=amd64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=1 -SRC_URI=https://dev.gentoo.org/~monsieurp/packages/portletapi-1.0.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=20ddfca57941edc220545a899b58a6d4 diff --git a/metadata/md5-cache/dev-java/portletapi-2.0-r1 b/metadata/md5-cache/dev-java/portletapi-2.0-r1 deleted file mode 100644 index 2c94710d1126..000000000000 --- a/metadata/md5-cache/dev-java/portletapi-2.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=dev-java/tomcat-servlet-api:3.0 >=virtual/jdk-1.6 source? ( app-arch/zip ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Portlet API 2.0 developed by the Java Community Process JSR-286 -EAPI=5 -HOMEPAGE=https://jcp.org/en/jsr/detail?id=286 -IUSE=elibc_FreeBSD doc source -KEYWORDS=amd64 x86 -LICENSE=Apache-2.0 -RDEPEND=dev-java/tomcat-servlet-api:3.0 >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=2.0 -SRC_URI=https://repo1.maven.org/maven2/javax/portlet/portlet-api/2.0/portlet-api-2.0-sources.jar -> portletapi-2.0.jar -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=637750794e80e3f84fcd9fb4009ec3a6 diff --git a/metadata/md5-cache/dev-java/vldocking-3.0.5 b/metadata/md5-cache/dev-java/vldocking-3.0.5 deleted file mode 100644 index 990d79f28b5b..000000000000 --- a/metadata/md5-cache/dev-java/vldocking-3.0.5 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=dev-java/slf4j-log4j12:0 dev-java/slf4j-api:0 app-arch/unzip >=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Docking solution for Java Swing -EAPI=5 -HOMEPAGE=https://github.com/cmadsen/vldocking -IUSE=elibc_FreeBSD doc source -KEYWORDS=amd64 x86 -LICENSE=LGPL-3 -RDEPEND=dev-java/slf4j-log4j12:0 dev-java/slf4j-api:0 >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=https://github.com/cmadsen/vldocking/archive/vldocking-3.0.5.zip -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=c53dae5bd83796c6b49ebcdf6b6d1e9d diff --git a/metadata/md5-cache/dev-java/ws-commons-util-1.0.1-r1 b/metadata/md5-cache/dev-java/ws-commons-util-1.0.1-r1 deleted file mode 100644 index 48f14a36b8d4..000000000000 --- a/metadata/md5-cache/dev-java/ws-commons-util-1.0.1-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Utility classes that allow high performance XML processing based on SAX -EAPI=5 -HOMEPAGE=http://ws.apache.org/commons/util/ -IUSE=elibc_FreeBSD source doc -KEYWORDS=amd64 ~ppc64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=mirror://apache/ws/commons/util/sources/ws-commons-util-1.0.1-src.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=71abc402370c8ebe6ca75cc67c6d2ad6 diff --git a/metadata/md5-cache/dev-java/xml-security-1.5.7-r1 b/metadata/md5-cache/dev-java/xml-security-1.5.7-r1 deleted file mode 100644 index 7dac6453f4ba..000000000000 --- a/metadata/md5-cache/dev-java/xml-security-1.5.7-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=dev-java/commons-logging:0 dev-java/xalan:0 app-arch/unzip test? ( dev-java/ant-junit:0 dev-java/junit:4 ) >=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=An implementation of the primary security standards for XML -EAPI=5 -HOMEPAGE=http://santuario.apache.org/ -IUSE=elibc_FreeBSD doc source test -KEYWORDS=amd64 x86 -LICENSE=Apache-2.0 -RDEPEND=dev-java/commons-logging:0 dev-java/xalan:0 >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://apache/santuario/java-library/1_5_7/xml-security-bin-1_5_7.zip -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-ant-2 262d853e2dd1056dc103b953dfc113b9 java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=8caf44943f683c01379a032e26553917 diff --git a/metadata/md5-cache/dev-java/xmpcore-5.1.2 b/metadata/md5-cache/dev-java/xmpcore-5.1.2 deleted file mode 100644 index 925993a3c850..000000000000 --- a/metadata/md5-cache/dev-java/xmpcore-5.1.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Java library based on the Adobe C++ XMPCore library with a similar API -EAPI=5 -HOMEPAGE=https://www.adobe.com/devnet/xmp.html -IUSE=elibc_FreeBSD doc source -KEYWORDS=amd64 x86 -LICENSE=BSD -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=http://central.maven.org/maven2/com/adobe/xmp/xmpcore/5.1.2/xmpcore-5.1.2-sources.jar -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-pkg-simple 6b49cf40f97e7a6458469114e1712118 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=8b8478f54d606fdb446a645350537d94 diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz index 655889757be0..be6eb5ac68a5 100644 Binary files a/metadata/md5-cache/dev-lang/Manifest.gz and b/metadata/md5-cache/dev-lang/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lang/gdl-1.0.0_rc3 b/metadata/md5-cache/dev-lang/gdl-1.0.0_rc3-r1 similarity index 69% rename from metadata/md5-cache/dev-lang/gdl-1.0.0_rc3 rename to metadata/md5-cache/dev-lang/gdl-1.0.0_rc3-r1 index f1bfd6915b5d..b9b1cf1a0ad3 100644 --- a/metadata/md5-cache/dev-lang/gdl-1.0.0_rc3 +++ b/metadata/md5-cache/dev-lang/gdl-1.0.0_rc3-r1 @@ -1,16 +1,16 @@ BDEPEND=dev-util/intltool virtual/pkgconfig python? ( app-admin/chrpath ) sys-devel/make >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install prepare pretend setup test -DEPEND=dev-cpp/antlr-cpp:2= dev-libs/expat sci-libs/gsl:0= sci-libs/plplot:0=[cxx,-dynamic] sys-libs/ncurses:0= sys-libs/readline:0= sys-libs/zlib x11-libs/libX11 fftw? ( sci-libs/fftw:3.0= ) glpk? ( sci-mathematics/glpk:= ) gshhs? ( sci-geosciences/gshhs-data sci-geosciences/gshhs:0= ) hdf? ( sci-libs/hdf:0= ) hdf5? ( sci-libs/hdf5:0= ) imagemagick? ( !graphicsmagick? ( media-gfx/imagemagick:=[cxx] ) graphicsmagick? ( media-gfx/graphicsmagick:=[cxx] ) ) netcdf? ( sci-libs/netcdf ) proj? ( sci-libs/proj ) postscript? ( dev-libs/pslib ) python? ( python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) tiff? ( media-libs/tiff sci-libs/libgeotiff ) udunits? ( sci-libs/udunits ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X] ) eigen? ( dev-cpp/eigen:3 ) +DEPEND=dev-cpp/antlr-cpp:2= dev-libs/expat sci-libs/gsl:0= sci-libs/plplot:0=[cxx,-dynamic] sys-libs/ncurses:0= sys-libs/readline:0= sys-libs/zlib x11-libs/libX11 fftw? ( sci-libs/fftw:3.0= ) glpk? ( sci-mathematics/glpk:= ) gshhs? ( sci-geosciences/gshhs-data sci-geosciences/gshhs:0= ) hdf? ( sci-libs/hdf:0= ) hdf5? ( sci-libs/hdf5:0= ) imagemagick? ( !graphicsmagick? ( media-gfx/imagemagick:=[cxx] ) graphicsmagick? ( media-gfx/graphicsmagick:=[cxx] ) ) netcdf? ( sci-libs/netcdf:= ) proj? ( sci-libs/proj:= ) postscript? ( dev-libs/pslib ) python? ( python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) tiff? ( media-libs/tiff sci-libs/libgeotiff ) udunits? ( sci-libs/udunits ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X] ) eigen? ( dev-cpp/eigen:3 ) DESCRIPTION=GNU Data Language EAPI=7 HOMEPAGE=https://github.com/gnudatalanguage/gdl IUSE=+eigen fftw glpk graphicsmagick gshhs hdf hdf5 +imagemagick netcdf openmp png proj postscript python tiff udunits wxwidgets python_targets_python3_8 python_targets_python3_9 test KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=dev-cpp/antlr-cpp:2= dev-libs/expat sci-libs/gsl:0= sci-libs/plplot:0=[cxx,-dynamic] sys-libs/ncurses:0= sys-libs/readline:0= sys-libs/zlib x11-libs/libX11 fftw? ( sci-libs/fftw:3.0= ) glpk? ( sci-mathematics/glpk:= ) gshhs? ( sci-geosciences/gshhs-data sci-geosciences/gshhs:0= ) hdf? ( sci-libs/hdf:0= ) hdf5? ( sci-libs/hdf5:0= ) imagemagick? ( !graphicsmagick? ( media-gfx/imagemagick:=[cxx] ) graphicsmagick? ( media-gfx/graphicsmagick:=[cxx] ) ) netcdf? ( sci-libs/netcdf ) proj? ( sci-libs/proj ) postscript? ( dev-libs/pslib ) python? ( python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) tiff? ( media-libs/tiff sci-libs/libgeotiff ) udunits? ( sci-libs/udunits ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X] ) +RDEPEND=dev-cpp/antlr-cpp:2= dev-libs/expat sci-libs/gsl:0= sci-libs/plplot:0=[cxx,-dynamic] sys-libs/ncurses:0= sys-libs/readline:0= sys-libs/zlib x11-libs/libX11 fftw? ( sci-libs/fftw:3.0= ) glpk? ( sci-mathematics/glpk:= ) gshhs? ( sci-geosciences/gshhs-data sci-geosciences/gshhs:0= ) hdf? ( sci-libs/hdf:0= ) hdf5? ( sci-libs/hdf5:0= ) imagemagick? ( !graphicsmagick? ( media-gfx/imagemagick:=[cxx] ) graphicsmagick? ( media-gfx/graphicsmagick:=[cxx] ) ) netcdf? ( sci-libs/netcdf:= ) proj? ( sci-libs/proj:= ) postscript? ( dev-libs/pslib ) python? ( python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) tiff? ( media-libs/tiff sci-libs/libgeotiff ) udunits? ( sci-libs/udunits ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X] ) REQUIRED_USE=python? ( || ( python_targets_python3_8 python_targets_python3_9 ) ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/gnudatalanguage/gdl/archive/v1.0.0-rc.3.tar.gz -> gdl-1.0.0_rc3.tar.gz _eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx fa024aa649b6bd544144bf94893d402c wrapper 4251d4c84c25f59094fd557e0063a974 wxwidgets 7e8a20d3bacea0e3ecf6e96fb72180aa xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=3a7e40f7063dc8752c6fd3db8be275f4 +_md5_=1ca76fd2dad368aeed3214a78a4c00b2 diff --git a/metadata/md5-cache/dev-lang/gnat-gpl-2020 b/metadata/md5-cache/dev-lang/gnat-gpl-2020 index 00a7ded7d8a8..1574c8d5a51b 100644 --- a/metadata/md5-cache/dev-lang/gnat-gpl-2020 +++ b/metadata/md5-cache/dev-lang/gnat-gpl-2020 @@ -12,5 +12,5 @@ RDEPEND=!sys-devel/gcc:9.3.1 sys-libs/zlib virtual/libiconv nls? ( virtual/libin RESTRICT=test SLOT=9.3.1 SRC_URI=https://community.download.adacore.com/v1/649a561ec6de9e476c54b02715b79f7503600ce5?filename=gnat-2020-20200429-19B04-src.tar.gz -> gnat-2020-20200429-19B04-src.tar.gz https://community.download.adacore.com/v1/e6b6a3e318e13248456bd37b758435e602b367da?filename=gcc-9-2020-20200429-19AA7-src.tar.gz -> gcc-9-2020-20200429-19AA7-src.tar.gz https://community.download.adacore.com/v1/c7a97636b31f3575df85f1eb0965462a353630dd?filename=gcc-interface-9-2020-20200429-19B10-src.tar.gz -> gcc-interface-9-2020-20200429-19B10-src.tar.gz bootstrap? ( amd64? ( http://mirrors.cdn.adacore.com/art/564b3ebec8e196b040fbe66c -> gnat-gpl-2014-x86_64-linux-bin.tar.gz ) x86? ( http://mirrors.cdn.adacore.com/art/564b3e9dc8e196b040fbe248 -> gnat-gpl-2014-x86-linux-bin.tar.gz ) ) https://dev.gentoo.org/~soap/distfiles/gcc-9.3.0-patches-5.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-9.3.0-patches-5.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-9.3.0-patches-5.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-9.3.0-patches-5.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-9.3.0-patches-5.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-9.3.0-patches-5.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-9.3.0-patches-5.tar.bz2 mirror://gentoo/gcc-9.3.0-patches-5.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=9204bdac5e41aa901db39c4a1f328db2 diff --git a/metadata/md5-cache/dev-lang/gnat-gpl-2021-r1 b/metadata/md5-cache/dev-lang/gnat-gpl-2021-r1 index bc3502488d02..236d9a5447b9 100644 --- a/metadata/md5-cache/dev-lang/gnat-gpl-2021-r1 +++ b/metadata/md5-cache/dev-lang/gnat-gpl-2021-r1 @@ -12,5 +12,5 @@ RDEPEND=!~sys-devel/gcc-10.3.1 sys-libs/zlib virtual/libiconv nls? ( virtual/lib RESTRICT=test SLOT=10 SRC_URI=https://community.download.adacore.com/v1/005d2b2eff627177986d2517eb31e1959bec6f3a?filename=gnat-2021-20210519-19A70-src.tar.gz -> gnat-2021-20210519-19A70-src.tar.gz https://community.download.adacore.com/v1/44cd393be0b468cc253bf2cf9cf7804c993e7b5b?filename=gcc-10-2021-20210519-19A74-src.tar.gz -> gcc-10-2021-20210519-19A74-src.tar.gz https://community.download.adacore.com/v1/8ace7d06e469d36d726cc8badb0ed78411e727f3?filename=gcc-interface-10-2021-20210519-19A75-src.tar.gz -> gcc-interface-10-2021-20210519-19A75-src.tar.gz bootstrap? ( amd64? ( https://community.download.adacore.com/v1/6eb6eef6bb897e4c743a519bfebe0b1d6fc409c6?filename=gnat-gpl-2014-x86_64-linux-bin.tar.gz&rand=1193 -> gnat-gpl-2014-x86_64-linux-bin.tar.gz ) x86? ( https://community.download.adacore.com/v1/c5e9e6fdff5cb77ed90cf8c62536653e27c0bed6?filename=gnat-gpl-2014-x86-linux-bin.tar.gz&rand=436 -> gnat-gpl-2014-x86-linux-bin.tar.gz ) ) https://dev.gentoo.org/~soap/distfiles/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-10.3.0-patches-3.tar.bz2 mirror://gentoo/gcc-10.3.0-patches-3.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=88c22b682d255b89b9813f39110ecd04 diff --git a/metadata/md5-cache/dev-lang/mujs-1.2.0 b/metadata/md5-cache/dev-lang/mujs-1.2.0 index ea7b078660d6..533e5dab3ae9 100644 --- a/metadata/md5-cache/dev-lang/mujs-1.2.0 +++ b/metadata/md5-cache/dev-lang/mujs-1.2.0 @@ -9,4 +9,4 @@ RDEPEND=sys-libs/readline:= SLOT=0/1.2.0 SRC_URI=https://mujs.com/downloads/mujs-1.2.0.tar.xz _eclasses_=flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=6e1674b446e6909a90a8b3459e6a6e60 +_md5_=14642f64e5c0c6db7fb7cafdcde5ea81 diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index a5f243b02447..5bab94952a80 100644 Binary files a/metadata/md5-cache/dev-libs/Manifest.gz and b/metadata/md5-cache/dev-libs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-libs/apr-1.6.3-r6 b/metadata/md5-cache/dev-libs/apr-1.6.3-r7 similarity index 97% rename from metadata/md5-cache/dev-libs/apr-1.6.3-r6 rename to metadata/md5-cache/dev-libs/apr-1.6.3-r7 index 458b6abfea86..46b353af0a81 100644 --- a/metadata/md5-cache/dev-libs/apr-1.6.3-r6 +++ b/metadata/md5-cache/dev-libs/apr-1.6.3-r7 @@ -10,4 +10,4 @@ RDEPEND=virtual/libcrypt:= elibc_glibc? ( >=sys-apps/util-linux-2.16 ) elibc_min SLOT=1/1.6 SRC_URI=mirror://apache/apr/apr-1.6.3.tar.bz2 _eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=ecd16b8c717ceed549f68d80b12eebd7 +_md5_=64cb804642208ebce3087414fd14aa35 diff --git a/metadata/md5-cache/dev-libs/apr-1.6.5-r3 b/metadata/md5-cache/dev-libs/apr-1.6.5-r4 similarity index 97% rename from metadata/md5-cache/dev-libs/apr-1.6.5-r3 rename to metadata/md5-cache/dev-libs/apr-1.6.5-r4 index ee81e7707695..8767747c9636 100644 --- a/metadata/md5-cache/dev-libs/apr-1.6.5-r3 +++ b/metadata/md5-cache/dev-libs/apr-1.6.5-r4 @@ -10,4 +10,4 @@ RDEPEND=virtual/libcrypt:= elibc_glibc? ( >=sys-apps/util-linux-2.16 ) elibc_min SLOT=1/1.6 SRC_URI=mirror://apache/apr/apr-1.6.5.tar.bz2 _eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=b6d3b4229a93402b0586b508a5d87148 +_md5_=7f9cc9b2344745e8df2d1d5da1cd4e07 diff --git a/metadata/md5-cache/dev-libs/apr-1.7.0-r3 b/metadata/md5-cache/dev-libs/apr-1.7.0-r4 similarity index 96% rename from metadata/md5-cache/dev-libs/apr-1.7.0-r3 rename to metadata/md5-cache/dev-libs/apr-1.7.0-r4 index 81bd3062ce21..de296f2c8b58 100644 --- a/metadata/md5-cache/dev-libs/apr-1.7.0-r3 +++ b/metadata/md5-cache/dev-libs/apr-1.7.0-r4 @@ -11,4 +11,4 @@ RDEPEND=virtual/libcrypt:= elibc_glibc? ( >=sys-apps/util-linux-2.16 ) elibc_min SLOT=1/1.7 SRC_URI=mirror://apache/apr/apr-1.7.0.tar.bz2 _eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=9cf09cf987c081ac17dfbb35fb494aac +_md5_=2838082225e0973f562872557f7f05ae diff --git a/metadata/md5-cache/dev-libs/libptytty-2.0 b/metadata/md5-cache/dev-libs/libptytty-2.0 index c65260dede96..516bacf7f414 100644 --- a/metadata/md5-cache/dev-libs/libptytty-2.0 +++ b/metadata/md5-cache/dev-libs/libptytty-2.0 @@ -4,9 +4,9 @@ DESCRIPTION=A library for mostly OS-independent handling of pty/tty/utmp/wtmp/la EAPI=8 HOMEPAGE=http://software.schmorp.de/pkg/libptytty.html IUSE=elibc_musl -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86 LICENSE=GPL-2+ SLOT=0 SRC_URI=http://dist.schmorp.de/libptytty/libptytty-2.0.tar.gz _eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=5858941c14670c6031cf9dd4056d1e4b +_md5_=49c0da795ad2101bb2086c72365d44f9 diff --git a/metadata/md5-cache/dev-php/Manifest.gz b/metadata/md5-cache/dev-php/Manifest.gz index 9ddab35f7fc2..7d4f150a79b7 100644 Binary files a/metadata/md5-cache/dev-php/Manifest.gz and b/metadata/md5-cache/dev-php/Manifest.gz differ diff --git a/metadata/md5-cache/dev-php/jpgraph-4.3.5 b/metadata/md5-cache/dev-php/jpgraph-4.3.5 new file mode 100644 index 000000000000..ff0de7459a9c --- /dev/null +++ b/metadata/md5-cache/dev-php/jpgraph-4.3.5 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install prepare +DESCRIPTION=Object-oriented graphing library for PHP +EAPI=8 +HOMEPAGE=http://jpgraph.net/ +IUSE=truetype examples +KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~sparc ~x86 +LICENSE=QPL-1.0 +RDEPEND=truetype? ( media-fonts/corefonts ) dev-lang/php[gd,truetype?] +SLOT=0 +SRC_URI=https://dev.gentoo.org/~grknight/distfiles/jpgraph-4.3.5.tar.gz +_md5_=2ab5afc3e9205104a0fbd79b5c74f835 diff --git a/metadata/md5-cache/dev-python/Faker-9.8.3 b/metadata/md5-cache/dev-python/Faker-11.0.0 similarity index 98% rename from metadata/md5-cache/dev-python/Faker-9.8.3 rename to metadata/md5-cache/dev-python/Faker-11.0.0 index 94a820d0cac2..f10b42ec0049 100644 --- a/metadata/md5-cache/dev-python/Faker-9.8.3 +++ b/metadata/md5-cache/dev-python/Faker-11.0.0 @@ -10,6 +10,6 @@ RDEPEND=>=dev-python/python-dateutil-2.4.2[python_targets_python3_8(-)?,python_t REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://pypi/F/Faker/Faker-9.8.3.tar.gz +SRC_URI=mirror://pypi/F/Faker/Faker-11.0.0.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=f4247b2caef34c612e26a81090b53eba diff --git a/metadata/md5-cache/dev-python/Faker-9.8.1 b/metadata/md5-cache/dev-python/Faker-9.8.1 deleted file mode 100644 index c1fdb3ff8ba0..000000000000 --- a/metadata/md5-cache/dev-python/Faker-9.8.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/freezegun[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pillow[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,tiff] dev-python/random2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/validators[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/python-dateutil-2.4.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/text-unidecode-1.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !dev-ruby/faker >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A Python package that generates fake data for you -EAPI=8 -HOMEPAGE=https://github.com/joke2k/faker -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/python-dateutil-2.4.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/text-unidecode-1.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !dev-ruby/faker python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/F/Faker/Faker-9.8.1.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=f4247b2caef34c612e26a81090b53eba diff --git a/metadata/md5-cache/dev-python/Faker-9.8.2 b/metadata/md5-cache/dev-python/Faker-9.8.2 deleted file mode 100644 index 13599a3ecf3b..000000000000 --- a/metadata/md5-cache/dev-python/Faker-9.8.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/freezegun[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pillow[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,tiff] dev-python/random2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/validators[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/python-dateutil-2.4.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/text-unidecode-1.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !dev-ruby/faker >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A Python package that generates fake data for you -EAPI=8 -HOMEPAGE=https://github.com/joke2k/faker -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/python-dateutil-2.4.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/text-unidecode-1.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !dev-ruby/faker python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/F/Faker/Faker-9.8.2.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=f4247b2caef34c612e26a81090b53eba diff --git a/metadata/md5-cache/dev-python/Faker-9.8.4 b/metadata/md5-cache/dev-python/Faker-9.8.4 deleted file mode 100644 index aa7358e157f1..000000000000 --- a/metadata/md5-cache/dev-python/Faker-9.8.4 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/freezegun[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pillow[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,tiff] dev-python/random2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/validators[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/python-dateutil-2.4.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/text-unidecode-1.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !dev-ruby/faker >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A Python package that generates fake data for you -EAPI=8 -HOMEPAGE=https://github.com/joke2k/faker -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/python-dateutil-2.4.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/text-unidecode-1.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !dev-ruby/faker python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/F/Faker/Faker-9.8.4.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=f4247b2caef34c612e26a81090b53eba diff --git a/metadata/md5-cache/dev-python/Manifest.gz b/metadata/md5-cache/dev-python/Manifest.gz index 082cbea27fd0..6596410cb0bc 100644 Binary files a/metadata/md5-cache/dev-python/Manifest.gz and b/metadata/md5-cache/dev-python/Manifest.gz differ diff --git a/metadata/md5-cache/dev-python/aioredis-2.0.1 b/metadata/md5-cache/dev-python/aioredis-2.0.1 new file mode 100644 index 000000000000..d46c15d0b63c --- /dev/null +++ b/metadata/md5-cache/dev-python/aioredis-2.0.1 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-db/redis dev-python/hiredis[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/mock[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-asyncio[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-xdist[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( dev-python/async_timeout[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/typing-extensions[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=asyncio Redis client library +EAPI=8 +HOMEPAGE=https://pypi.org/project/aioredis/ https://github.com/aio-libs/aioredis-py +IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=MIT +RDEPEND=dev-python/async_timeout[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/typing-extensions[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/a/aioredis/aioredis-2.0.1.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature 30ce9dec2b8943338c9b015bd32bac6a python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=f1ea10c536312777af4f140e6c9dc89b diff --git a/metadata/md5-cache/dev-python/attrs-21.3.0 b/metadata/md5-cache/dev-python/attrs-21.3.0 new file mode 100644 index 000000000000..8d82b001b8f1 --- /dev/null +++ b/metadata/md5-cache/dev-python/attrs-21.3.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0=[sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[sqlite] ) python_targets_python3_9? ( dev-lang/python:3.9[sqlite] ) python_targets_python3_10? ( dev-lang/python:3.10[sqlite] ) python_targets_python3_8? ( dev-python/cloudpickle[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( dev-python/cloudpickle[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( dev-python/cloudpickle[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) >=dev-python/hypothesis-3.6.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.3.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( dev-python/zope-interface[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Attributes without boilerplate +EAPI=8 +HOMEPAGE=https://github.com/python-attrs/attrs/ https://attrs.readthedocs.io/ https://pypi.org/project/attrs/ +IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=dev-python/zope-interface[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/a/attrs/attrs-21.3.0.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=22193a37fe82c53afc3b75390964beec diff --git a/metadata/md5-cache/dev-python/black-21.12_beta0 b/metadata/md5-cache/dev-python/black-21.12_beta0 index 6e0fe02ca7db..9a3e1919f6e1 100644 --- a/metadata/md5-cache/dev-python/black-21.12_beta0 +++ b/metadata/md5-cache/dev-python/black-21.12_beta0 @@ -4,7 +4,7 @@ DESCRIPTION=The uncompromising Python code formatter EAPI=8 HOMEPAGE=https://black.readthedocs.io/en/stable/ https://github.com/psf/black IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~sparc x86 ~x64-macos LICENSE=MIT RDEPEND=>=dev-python/click-8.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/mypy_extensions-0.4.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/platformdirs-2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/psf/black/archive/21.12b0.tar.gz -> black-21.12b0.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature 30ce9dec2b8943338c9b015bd32bac6a python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ad220223839190482721e0a5229b8940 +_md5_=6033a4661e05465003009bc25be9a542 diff --git a/metadata/md5-cache/dev-python/cloudpickle-2.0.0 b/metadata/md5-cache/dev-python/cloudpickle-2.0.0 index ccb97490c11e..2767350754d3 100644 --- a/metadata/md5-cache/dev-python/cloudpickle-2.0.0 +++ b/metadata/md5-cache/dev-python/cloudpickle-2.0.0 @@ -4,7 +4,7 @@ DESCRIPTION=Extended pickling support for Python objects EAPI=8 HOMEPAGE=https://pypi.org/project/cloudpickle/ https://github.com/cloudpipe/cloudpickle/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~arm ~arm64 ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux LICENSE=BSD RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/c/cloudpickle/cloudpickle-2.0.0.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=2f32a4044cc252cd20b81e764de97bbc +_md5_=5aad9692627629d6c61a700f28f369ba diff --git a/metadata/md5-cache/dev-python/coverage-6.1.2 b/metadata/md5-cache/dev-python/coverage-6.1.2 deleted file mode 100644 index 1910f6ded249..000000000000 --- a/metadata/md5-cache/dev-python/coverage-6.1.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0=[threads(+),sqlite(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+),sqlite(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+),sqlite(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+),sqlite(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Code coverage measurement for Python -EAPI=8 -HOMEPAGE=https://coverage.readthedocs.io/en/latest/ https://pypi.org/project/coverage/ -IUSE=python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos -LICENSE=BSD -RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0=[threads(+),sqlite(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+),sqlite(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+),sqlite(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+),sqlite(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://pypi/c/coverage/coverage-6.1.2.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=97479038a51b372ad30cbf0778df263f diff --git a/metadata/md5-cache/dev-python/coverage-6.2 b/metadata/md5-cache/dev-python/coverage-6.2 index 3fe070ba2eff..503373b9125e 100644 --- a/metadata/md5-cache/dev-python/coverage-6.2 +++ b/metadata/md5-cache/dev-python/coverage-6.2 @@ -4,7 +4,7 @@ DESCRIPTION=Code coverage measurement for Python EAPI=8 HOMEPAGE=https://coverage.readthedocs.io/en/latest/ https://pypi.org/project/coverage/ IUSE=python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos LICENSE=BSD RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0=[threads(+),sqlite(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+),sqlite(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+),sqlite(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+),sqlite(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/c/coverage/coverage-6.2.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=2d12bab5e765d4f32aa659b88accba97 +_md5_=31982694cff1f865692dbe306df7d1a7 diff --git a/metadata/md5-cache/dev-python/eradicate-2.0.0 b/metadata/md5-cache/dev-python/eradicate-2.0.0 index 0a5ecdc103bb..60ece806b94f 100644 --- a/metadata/md5-cache/dev-python/eradicate-2.0.0 +++ b/metadata/md5-cache/dev-python/eradicate-2.0.0 @@ -4,7 +4,7 @@ DESCRIPTION=Removes commented-out code from Python files EAPI=8 HOMEPAGE=https://github.com/myint/eradicate IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 x86 LICENSE=MIT RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/myint/eradicate/archive/v2.0.0.tar.gz -> eradicate-2.0.0.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e95e14c922376c4982af4e9da6fb9c19 +_md5_=0429879b881b6606bbe2a53cbc900f5e diff --git a/metadata/md5-cache/dev-python/flit-3.6.0 b/metadata/md5-cache/dev-python/flit-3.6.0 new file mode 100644 index 000000000000..235c7f724855 --- /dev/null +++ b/metadata/md5-cache/dev-python/flit-3.6.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/docutils[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flit_core-3.2.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/intreehooks[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests_download[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tomli[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tomli-w[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sys-apps/grep sys-apps/findutils test? ( dev-python/pip[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/responses[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/testpath[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( dev-python/docutils[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flit_core-3.2.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/intreehooks[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests_download[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tomli[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tomli-w[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] dev-python/sphinxcontrib-github-alt[python_targets_python3_10(-)] dev-python/pygments-github-lexers[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] dev-python/sphinxcontrib-github-alt[python_targets_python3_9(-)] dev-python/pygments-github-lexers[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] dev-python/sphinxcontrib-github-alt[python_targets_python3_8(-)] dev-python/pygments-github-lexers[python_targets_python3_8(-)] ) ( >=dev-python/pypy3-7.3.7:0 dev-python/sphinx[python_targets_pypy3(-)] dev-python/sphinxcontrib-github-alt[python_targets_pypy3(-)] dev-python/pygments-github-lexers[python_targets_pypy3(-)] ) ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyproject2setuppy-22[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Simplified packaging of Python modules +EAPI=8 +HOMEPAGE=https://github.com/pypa/flit https://flit.readthedocs.io/ +IUSE=test doc python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-python/docutils[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flit_core-3.2.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/intreehooks[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests_download[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tomli[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tomli-w[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/f/flit/flit-3.6.0.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=1472056cb8d8c7a8bb2ed17e7a1a340d diff --git a/metadata/md5-cache/dev-python/flit_core-3.6.0 b/metadata/md5-cache/dev-python/flit_core-3.6.0 new file mode 100644 index 000000000000..da0face44cfe --- /dev/null +++ b/metadata/md5-cache/dev-python/flit_core-3.6.0 @@ -0,0 +1,15 @@ +BDEPEND=>=dev-python/pyproject2setuppy-11[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/testpath[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( dev-python/intreehooks[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tomli[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyproject2setuppy-22[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Simplified packaging of Python modules (core module) +EAPI=8 +HOMEPAGE=https://pypi.org/project/flit-core/ https://github.com/pypa/flit/ +IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=BSD +RDEPEND=dev-python/intreehooks[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tomli[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/f/flit_core/flit_core-3.6.0.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=cbc1952445ede75843c67b085c8d9caf diff --git a/metadata/md5-cache/dev-python/fritzconnection-1.8.0 b/metadata/md5-cache/dev-python/fritzconnection-1.8.0 new file mode 100644 index 000000000000..a355198ee325 --- /dev/null +++ b/metadata/md5-cache/dev-python/fritzconnection-1.8.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/pytest-mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/requests-2.22[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Lib/tool to communicate with AVM FRITZ! devices using TR-064 protocol over UPnP +EAPI=8 +HOMEPAGE=https://github.com/kbr/fritzconnection +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/requests-2.22[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/kbr/fritzconnection/archive/1.8.0.tar.gz -> fritzconnection-1.8.0.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=4aa0ac40bd3d783b4d15c27fbcf52c4d diff --git a/metadata/md5-cache/dev-python/git-review-2.2.0 b/metadata/md5-cache/dev-python/git-review-2.2.0 new file mode 100644 index 000000000000..2a98a44475a0 --- /dev/null +++ b/metadata/md5-cache/dev-python/git-review-2.2.0 @@ -0,0 +1,15 @@ +BDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/pbr-4.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +DESCRIPTION=Tool to submit code to Gerrit +EAPI=8 +HOMEPAGE=https://git.openstack.org/cgit/openstack-infra/git-review +IUSE=python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/requests-1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +SLOT=0 +SRC_URI=mirror://pypi/g/git-review/git-review-2.2.0.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=e18ce8067a1584f0afd62ec9473f85de diff --git a/metadata/md5-cache/dev-python/git-review-9999 b/metadata/md5-cache/dev-python/git-review-9999 new file mode 100644 index 000000000000..f529ebce5116 --- /dev/null +++ b/metadata/md5-cache/dev-python/git-review-9999 @@ -0,0 +1,14 @@ +BDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=>=dev-python/pbr-4.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +DESCRIPTION=Tool to submit code to Gerrit +EAPI=8 +HOMEPAGE=https://git.openstack.org/cgit/openstack-infra/git-review +IUSE=python_targets_python3_8 python_targets_python3_9 +LICENSE=Apache-2.0 +PROPERTIES=live +RDEPEND=>=dev-python/requests-1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +SLOT=0 +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=e18ce8067a1584f0afd62ec9473f85de diff --git a/metadata/md5-cache/dev-python/keyring-23.2.1 b/metadata/md5-cache/dev-python/keyring-23.2.1 deleted file mode 100644 index 740f4fe76f26..000000000000 --- a/metadata/md5-cache/dev-python/keyring-23.2.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-python/setuptools_scm[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/secretstorage[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/entrypoints[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jeepney[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/importlib_metadata[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] dev-python/jaraco-packaging[python_targets_python3_10(-)] dev-python/rst-linker[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] dev-python/jaraco-packaging[python_targets_python3_9(-)] dev-python/rst-linker[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] dev-python/jaraco-packaging[python_targets_python3_8(-)] dev-python/rst-linker[python_targets_python3_8(-)] ) ( >=dev-python/pypy3-7.3.7:0 dev-python/sphinx[python_targets_pypy3(-)] dev-python/jaraco-packaging[python_targets_pypy3(-)] dev-python/rst-linker[python_targets_pypy3(-)] ) ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Provides access to the system keyring service -EAPI=8 -HOMEPAGE=https://github.com/jaraco/keyring -IUSE=test doc python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86 ~x64-macos -LICENSE=PSF-2 -RDEPEND=dev-python/secretstorage[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/entrypoints[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jeepney[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/importlib_metadata[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/jaraco/keyring/archive/v23.2.1.tar.gz -> keyring-23.2.1.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=0d8800209960f14a460fd298658da0b4 diff --git a/metadata/md5-cache/dev-python/keyring-23.3.0 b/metadata/md5-cache/dev-python/keyring-23.3.0 index 1c4948bd01c4..c9be576e6048 100644 --- a/metadata/md5-cache/dev-python/keyring-23.3.0 +++ b/metadata/md5-cache/dev-python/keyring-23.3.0 @@ -4,7 +4,7 @@ DESCRIPTION=Provides access to the system keyring service EAPI=8 HOMEPAGE=https://github.com/jaraco/keyring IUSE=test doc python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86 ~x64-macos LICENSE=PSF-2 RDEPEND=dev-python/secretstorage[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/entrypoints[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jeepney[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/importlib_metadata[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jaraco/keyring/archive/v23.3.0.tar.gz -> keyring-23.3.0.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=282a1e31c21729a9cc7d8a858c2cac65 +_md5_=0d8800209960f14a460fd298658da0b4 diff --git a/metadata/md5-cache/dev-python/kombu-5.2.3 b/metadata/md5-cache/dev-python/kombu-5.2.3 new file mode 100644 index 000000000000..c49d1766de0d --- /dev/null +++ b/metadata/md5-cache/dev-python/kombu-5.2.3 @@ -0,0 +1,15 @@ +BDEPEND=test? ( app-arch/brotli[python,python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/boto3-1.4.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/case-1.5.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/kazoo[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/msgpack-0.3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pycurl[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pymongo-3.3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/Pyro4[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pytz[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pyyaml-3.10[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/redis-py-3.3.11[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/sqlalchemy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/zstandard[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) test? ( >=dev-python/py-amqp-5.0.6[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] dev-python/sphinx_celery[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] dev-python/sphinx_celery[python_targets_python3_8(-)] ) ) ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=AMQP Messaging Framework for Python +EAPI=8 +HOMEPAGE=https://pypi.org/project/kombu/ https://github.com/celery/kombu +IUSE=examples test doc python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/py-amqp-5.0.6[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/k/kombu/kombu-5.2.3.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature 30ce9dec2b8943338c9b015bd32bac6a python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=2e7da99280b7d949099023ab13ffcb9e diff --git a/metadata/md5-cache/dev-python/lz4-3.1.10 b/metadata/md5-cache/dev-python/lz4-3.1.10 index 10466bbe4a18..2414831eb9ac 100644 --- a/metadata/md5-cache/dev-python/lz4-3.1.10 +++ b/metadata/md5-cache/dev-python/lz4-3.1.10 @@ -5,7 +5,7 @@ DESCRIPTION=LZ4 Bindings for Python EAPI=8 HOMEPAGE=https://pypi.org/project/lz4/ https://github.com/python-lz4/python-lz4 IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 arm arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 arm arm64 x86 ~amd64-linux ~x86-linux LICENSE=BSD RDEPEND=app-arch/lz4:= python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/l/lz4/lz4-3.1.10.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=956e2afe49eecc0cbcea080bc9dc0c8f +_md5_=0aefede213aefb0dd182f120924e79a6 diff --git a/metadata/md5-cache/dev-python/lz4-3.1.3 b/metadata/md5-cache/dev-python/lz4-3.1.3 deleted file mode 100644 index 72cc36a3180a..000000000000 --- a/metadata/md5-cache/dev-python/lz4-3.1.3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-python/setuptools_scm[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pkgconfig[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/psutil[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( app-arch/lz4:= >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DEPEND=app-arch/lz4:= -DESCRIPTION=LZ4 Bindings for Python -EAPI=7 -HOMEPAGE=https://pypi.org/project/lz4/ https://github.com/python-lz4/python-lz4 -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 arm arm64 x86 ~amd64-linux ~x86-linux -LICENSE=BSD -RDEPEND=app-arch/lz4:= python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/l/lz4/lz4-3.1.3.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ae52353875f16cd95abe27598f51da67 diff --git a/metadata/md5-cache/dev-python/mando-0.6.4-r1 b/metadata/md5-cache/dev-python/mando-0.6.4-r1 index 137335a69dc9..e3ed47325024 100644 --- a/metadata/md5-cache/dev-python/mando-0.6.4-r1 +++ b/metadata/md5-cache/dev-python/mando-0.6.4-r1 @@ -4,7 +4,7 @@ DESCRIPTION=Create Python CLI apps with little to no effort at all! EAPI=7 HOMEPAGE=https://mando.readthedocs.io/ https://github.com/rubik/mando/ IUSE=examples doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 x86 LICENSE=MIT RDEPEND=dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/rubik/mando/archive/v0.6.4.tar.gz -> mando-0.6.4.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=d906f0a12888ee9575bcbb8172c0ad7f +_md5_=0f98cced82d7d7b1815da9f48bf8049f diff --git a/metadata/md5-cache/dev-python/nbval-0.9.6 b/metadata/md5-cache/dev-python/nbval-0.9.6 index 0f59caef72da..7337fc1edc4d 100644 --- a/metadata/md5-cache/dev-python/nbval-0.9.6 +++ b/metadata/md5-cache/dev-python/nbval-0.9.6 @@ -1,15 +1,15 @@ -BDEPEND=test? ( dev-python/sympy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) test? ( dev-python/coverage[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/ipykernel[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/jupyter_client[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/nbformat[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pytest-cov[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +BDEPEND=test? ( dev-python/sympy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( dev-python/coverage[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/ipykernel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jupyter_client[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/nbformat[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-cov[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=A py.test plugin to validate Jupyter notebooks EAPI=7 HOMEPAGE=https://github.com/computationalmodelling/nbval -IUSE=test python_targets_python3_8 python_targets_python3_9 +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=amd64 x86 LICENSE=BSD -RDEPEND=dev-python/coverage[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/ipykernel[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/jupyter_client[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/nbformat[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pytest-cov[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +RDEPEND=dev-python/coverage[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/ipykernel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jupyter_client[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/nbformat[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-cov[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/n/nbval/nbval-0.9.6.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=c3d5440d6629628b51b4f706f5076fee +_md5_=27c23406c667239309132cb4a6db24ac diff --git a/metadata/md5-cache/dev-python/phonenumbers-8.12.37 b/metadata/md5-cache/dev-python/phonenumbers-8.12.37 deleted file mode 100644 index 2b2a4e34d397..000000000000 --- a/metadata/md5-cache/dev-python/phonenumbers-8.12.37 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Python port of Google's libphonenumber -EAPI=8 -HOMEPAGE=https://github.com/daviddrysdale/python-phonenumbers -IUSE=python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 x86 -LICENSE=Apache-2.0 -RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -SLOT=0 -SRC_URI=mirror://pypi/p/phonenumbers/phonenumbers-8.12.37.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=86370fd56c0d768a3d1a7719b82ab43b diff --git a/metadata/md5-cache/dev-python/phonenumbers-8.12.38 b/metadata/md5-cache/dev-python/phonenumbers-8.12.38 index 15f413c0c320..47403631601f 100644 --- a/metadata/md5-cache/dev-python/phonenumbers-8.12.38 +++ b/metadata/md5-cache/dev-python/phonenumbers-8.12.38 @@ -4,11 +4,11 @@ DESCRIPTION=Python port of Google's libphonenumber EAPI=8 HOMEPAGE=https://github.com/daviddrysdale/python-phonenumbers IUSE=python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=Apache-2.0 RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) SLOT=0 SRC_URI=mirror://pypi/p/phonenumbers/phonenumbers-8.12.38.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=f70b6d8f0abc35acbb5be565add89672 +_md5_=86370fd56c0d768a3d1a7719b82ab43b diff --git a/metadata/md5-cache/dev-python/pip-21.3.1-r1 b/metadata/md5-cache/dev-python/pip-21.3.1-r1 index 4efd50a5a76b..f4a1e17d6b08 100644 --- a/metadata/md5-cache/dev-python/pip-21.3.1-r1 +++ b/metadata/md5-cache/dev-python/pip-21.3.1-r1 @@ -4,7 +4,7 @@ DESCRIPTION=Installs python packages -- replacement for easy_install EAPI=8 HOMEPAGE=https://pip.pypa.io/en/stable/ https://pypi.org/project/pip/ https://github.com/pypa/pip/ IUSE=test vanilla python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~sparc x86 LICENSE=MIT RDEPEND=>=dev-python/setuptools-39.2.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0=[ssl(+),threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[ssl(+),threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[ssl(+),threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[ssl(+),threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pypa/pip/archive/21.3.1.tar.gz -> pip-21.3.1.tar.gz test? ( https://files.pythonhosted.org/packages/py3/s/setuptools/setuptools-57.4.0-py3-none-any.whl https://files.pythonhosted.org/packages/py2.py3/w/wheel/wheel-0.36.2-py2.py3-none-any.whl https://github.com/pypa/virtualenv/archive/16.7.11.tar.gz -> virtualenv-16.7.11.tar.gz ) _eclasses_=bash-completion-r1 d3a60385655d9b402be765a6de333245 distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=374c855d912ee61e5818b33c7c0b8e52 +_md5_=9370727757d7c90227a9db2ebc9bb3d5 diff --git a/metadata/md5-cache/dev-python/pyFFTW-0.13.0 b/metadata/md5-cache/dev-python/pyFFTW-0.13.0 new file mode 100644 index 000000000000..0e1d37320cce --- /dev/null +++ b/metadata/md5-cache/dev-python/pyFFTW-0.13.0 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-python/cython-0.29.18[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/dask-1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/scipy-1.2.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/numpy-1.16[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=sci-libs/fftw-3.3:3.0=[threads] dev-python/unittest-or-fail[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/numpy-1.16[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=sci-libs/fftw-3.3:3.0=[threads] +DESCRIPTION=A pythonic python wrapper around FFTW +EAPI=8 +HOMEPAGE=https://github.com/pyFFTW/pyFFTW +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/numpy-1.16[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=sci-libs/fftw-3.3:3.0=[threads] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/pyFFTW/pyFFTW/archive/v0.13.0.tar.gz -> pyFFTW-0.13.0.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=8093f1e3536888eff31fecb3ed736764 diff --git a/metadata/md5-cache/dev-python/pyFFTW-9999 b/metadata/md5-cache/dev-python/pyFFTW-9999 index 7e2f416806cb..1b5f517c301f 100644 --- a/metadata/md5-cache/dev-python/pyFFTW-9999 +++ b/metadata/md5-cache/dev-python/pyFFTW-9999 @@ -1,15 +1,15 @@ -BDEPEND=dev-python/cython[python_targets_python3_8(-)?,python_targets_python3_9(-)?] test? ( dev-python/dask[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) test? ( dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=sci-libs/fftw-3.3:3.0=[threads] dev-python/unittest-or-fail[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=>=dev-python/cython-0.29.18[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/dask-1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/scipy-1.2.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/numpy-1.16[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=sci-libs/fftw-3.3:3.0=[threads] dev-python/unittest-or-fail[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=sci-libs/fftw-3.3:3.0=[threads] +DEPEND=>=dev-python/numpy-1.16[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=sci-libs/fftw-3.3:3.0=[threads] DESCRIPTION=A pythonic python wrapper around FFTW -EAPI=7 +EAPI=8 HOMEPAGE=https://github.com/pyFFTW/pyFFTW -IUSE=test python_targets_python3_8 python_targets_python3_9 +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 LICENSE=BSD PROPERTIES=live -RDEPEND=dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=sci-libs/fftw-3.3:3.0=[threads] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +RDEPEND=>=dev-python/numpy-1.16[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=sci-libs/fftw-3.3:3.0=[threads] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=af4d6c1969875280818004da12c255ea +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=8093f1e3536888eff31fecb3ed736764 diff --git a/metadata/md5-cache/dev-python/pycparser-2.20-r1 b/metadata/md5-cache/dev-python/pycparser-2.20-r1 deleted file mode 100644 index cc66e5fd3bfa..000000000000 --- a/metadata/md5-cache/dev-python/pycparser-2.20-r1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=dev-python/ply:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/setuptools[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=C parser and AST generator written in Python -EAPI=7 -HOMEPAGE=https://github.com/eliben/pycparser -IUSE=python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=BSD -RDEPEND=dev-python/ply:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -SLOT=0 -SRC_URI=mirror://pypi/p/pycparser/pycparser-2.20.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=b8b0fd9702e578b3ef6367c62ef596f1 diff --git a/metadata/md5-cache/dev-python/pycparser-2.21 b/metadata/md5-cache/dev-python/pycparser-2.21 index fd726b9bcd35..ad7acc42aac3 100644 --- a/metadata/md5-cache/dev-python/pycparser-2.21 +++ b/metadata/md5-cache/dev-python/pycparser-2.21 @@ -4,7 +4,7 @@ DESCRIPTION=C parser and AST generator written in Python EAPI=7 HOMEPAGE=https://github.com/eliben/pycparser IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=dev-python/ply:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/pycparser/pycparser-2.21.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=27330a2ac1a4de1c33616a97d5d52d7c +_md5_=0f523b87210d4f02b52d6bcecb8b640d diff --git a/metadata/md5-cache/dev-python/pygame-2.1.2 b/metadata/md5-cache/dev-python/pygame-2.1.2 new file mode 100644 index 000000000000..850e500295f4 --- /dev/null +++ b/metadata/md5-cache/dev-python/pygame-2.1.2 @@ -0,0 +1,16 @@ +BDEPEND=test? ( media-libs/fontconfig sys-apps/util-linux ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] media-libs/freetype media-libs/libpng:0= >=media-libs/sdl2-image-1.2.2 >=media-libs/sdl2-mixer-1.2.4 >=media-libs/sdl2-ttf-2.0.6 >=media-libs/smpeg2-0.4.4-r1 virtual/jpeg midi? ( media-libs/portmidi ) X? ( >=media-libs/libsdl2-1.2.5[opengl?,threads,video,X] ) !X? ( >=media-libs/libsdl2-1.2.5[threads] ) test? ( media-libs/sdl2-image[gif,jpeg,png] media-libs/sdl2-mixer[mp3,vorbis,wav] ) +DESCRIPTION=Python bindings for SDL multimedia library +EAPI=8 +HOMEPAGE=https://www.pygame.org/ +IUSE=examples midi opengl test X python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=LGPL-2.1 +RDEPEND=dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] media-libs/freetype media-libs/libpng:0= >=media-libs/sdl2-image-1.2.2 >=media-libs/sdl2-mixer-1.2.4 >=media-libs/sdl2-ttf-2.0.6 >=media-libs/smpeg2-0.4.4-r1 virtual/jpeg midi? ( media-libs/portmidi ) X? ( >=media-libs/libsdl2-1.2.5[opengl?,threads,video,X] ) !X? ( >=media-libs/libsdl2-1.2.5[threads] ) media-libs/fontconfig python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/pygame/pygame/archive/2.1.2.tar.gz -> pygame-2.1.2.gh.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=4a9aaec8f6144588b8e7c629131dbe28 diff --git a/metadata/md5-cache/dev-python/pylama-8.0.4 b/metadata/md5-cache/dev-python/pylama-8.0.4 deleted file mode 100644 index 2b9c78073c9e..000000000000 --- a/metadata/md5-cache/dev-python/pylama-8.0.4 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/eradicate[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/mypy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pylint[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/radon[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-vcs/git ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] ) ) ) test? ( >=dev-python/mccabe-0.6.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pycodestyle-2.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pydocstyle-6.1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyflakes-2.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Code audit tool for python -EAPI=8 -HOMEPAGE=https://github.com/klen/pylama -IUSE=doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/mccabe-0.6.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pycodestyle-2.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pydocstyle-6.1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyflakes-2.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/klen/pylama/archive/8.0.4.tar.gz -> pylama-8.0.4.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ae5323b3772d9b7ec6553d6a65814588 diff --git a/metadata/md5-cache/dev-python/pylama-8.0.6 b/metadata/md5-cache/dev-python/pylama-8.0.6 index 7c623c5671b8..58477be21d70 100644 --- a/metadata/md5-cache/dev-python/pylama-8.0.6 +++ b/metadata/md5-cache/dev-python/pylama-8.0.6 @@ -4,7 +4,7 @@ DESCRIPTION=Code audit tool for python EAPI=8 HOMEPAGE=https://github.com/klen/pylama IUSE=doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=MIT RDEPEND=>=dev-python/mccabe-0.6.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pycodestyle-2.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pydocstyle-6.1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyflakes-2.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/klen/pylama/archive/8.0.6.tar.gz -> pylama-8.0.6.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=a8d5d10bb49f029c51174ed0e0fb8097 +_md5_=e371ad393ba409db53c7804cf0ec2f0c diff --git a/metadata/md5-cache/dev-python/pylama-8.3.3 b/metadata/md5-cache/dev-python/pylama-8.3.3 deleted file mode 100644 index 946043d6f5e6..000000000000 --- a/metadata/md5-cache/dev-python/pylama-8.3.3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/eradicate[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/mypy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pylint[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/radon[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-vcs/git ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] ) ) ) test? ( >=dev-python/mccabe-0.6.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pycodestyle-2.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pydocstyle-6.1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyflakes-2.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Code audit tool for python -EAPI=8 -HOMEPAGE=https://github.com/klen/pylama -IUSE=doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~mips ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/mccabe-0.6.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pycodestyle-2.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pydocstyle-6.1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyflakes-2.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/klen/pylama/archive/8.3.3.tar.gz -> pylama-8.3.3.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=341c0bf90e40e02872ba5e7b7cf2e721 diff --git a/metadata/md5-cache/dev-python/pylama-8.3.5 b/metadata/md5-cache/dev-python/pylama-8.3.5 deleted file mode 100644 index 74fb1f857cef..000000000000 --- a/metadata/md5-cache/dev-python/pylama-8.3.5 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/eradicate[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/mypy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pylint[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/radon[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-vcs/git ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] ) ) ) test? ( >=dev-python/mccabe-0.6.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pycodestyle-2.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pydocstyle-6.1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyflakes-2.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Code audit tool for python -EAPI=8 -HOMEPAGE=https://github.com/klen/pylama -IUSE=doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~mips ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/mccabe-0.6.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pycodestyle-2.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pydocstyle-6.1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyflakes-2.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/klen/pylama/archive/8.3.5.tar.gz -> pylama-8.3.5.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=341c0bf90e40e02872ba5e7b7cf2e721 diff --git a/metadata/md5-cache/dev-python/pylama-8.3.6 b/metadata/md5-cache/dev-python/pylama-8.3.6 index a0516fcc17cd..9ebfea51ec64 100644 --- a/metadata/md5-cache/dev-python/pylama-8.3.6 +++ b/metadata/md5-cache/dev-python/pylama-8.3.6 @@ -4,7 +4,7 @@ DESCRIPTION=Code audit tool for python EAPI=8 HOMEPAGE=https://github.com/klen/pylama IUSE=doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~mips ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~x86 LICENSE=MIT RDEPEND=>=dev-python/mccabe-0.6.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pycodestyle-2.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pydocstyle-6.1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyflakes-2.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/klen/pylama/archive/8.3.6.tar.gz -> pylama-8.3.6.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=341c0bf90e40e02872ba5e7b7cf2e721 +_md5_=e33595aa6fc99b7d4c2f11bc1b49e9f8 diff --git a/metadata/md5-cache/dev-python/pyphen-0.12.0 b/metadata/md5-cache/dev-python/pyphen-0.12.0 new file mode 100644 index 000000000000..73c04bbc862a --- /dev/null +++ b/metadata/md5-cache/dev-python/pyphen-0.12.0 @@ -0,0 +1,15 @@ +BDEPEND=>=dev-python/pyproject2setuppy-18[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyproject2setuppy-22[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Python module for hyphenation using hunspell dictionaries +EAPI=8 +HOMEPAGE=https://github.com/Kozea/Pyphen +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2+ LGPL-2+ MPL-1.1 +RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/Kozea/Pyphen/archive/0.12.0.tar.gz -> Pyphen-0.12.0.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=338e230349de45170fb2d338abd8d1a0 diff --git a/metadata/md5-cache/dev-python/pytables-3.7.0 b/metadata/md5-cache/dev-python/pytables-3.7.0 new file mode 100644 index 000000000000..1a3a91134ed7 --- /dev/null +++ b/metadata/md5-cache/dev-python/pytables-3.7.0 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-python/cython-0.21[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] virtual/pkgconfig test? ( dev-python/mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] app-arch/bzip2:0= app-arch/lz4:0= >=app-arch/zstd-1.0.0:= >=dev-libs/c-blosc-1.11.1:0= dev-libs/lzo:2= >=dev-python/numpy-1.8.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/numexpr-2.5.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-arch/bzip2:0= app-arch/lz4:0= >=app-arch/zstd-1.0.0:= >=dev-libs/c-blosc-1.11.1:0= dev-libs/lzo:2= >=dev-python/numpy-1.8.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =app-arch/zstd-1.0.0:= >=dev-libs/c-blosc-1.11.1:0= dev-libs/lzo:2= >=dev-python/numpy-1.8.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/numexpr-2.5.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/t/tables/tables-3.7.0.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=0fc5179d1c61e5778e4f38131d9b56f1 diff --git a/metadata/md5-cache/dev-python/pytest-codeblocks-0.12.2 b/metadata/md5-cache/dev-python/pytest-codeblocks-0.12.2 new file mode 100644 index 000000000000..81d364469978 --- /dev/null +++ b/metadata/md5-cache/dev-python/pytest-codeblocks-0.12.2 @@ -0,0 +1,15 @@ +BDEPEND=test? ( >=dev-python/pytest-6[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyproject2setuppy-22[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Extract code blocks from markdown +EAPI=8 +HOMEPAGE=https://github.com/nschloe/pytest-codeblocks/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/pytest-6[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/nschloe/pytest-codeblocks/archive/v0.12.2.tar.gz -> pytest-codeblocks-0.12.2.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=7e90215759af9dde45c1ebfbc50bd832 diff --git a/metadata/md5-cache/dev-python/exdown-0.9.0 b/metadata/md5-cache/dev-python/pytest-codeblocks-0.9.0 similarity index 97% rename from metadata/md5-cache/dev-python/exdown-0.9.0 rename to metadata/md5-cache/dev-python/pytest-codeblocks-0.9.0 index 214b0637161f..73950a8e818b 100644 --- a/metadata/md5-cache/dev-python/exdown-0.9.0 +++ b/metadata/md5-cache/dev-python/pytest-codeblocks-0.9.0 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/nschloe/pytest-codeblocks/archive/v0.9.0.tar.gz -> pytest-codeblocks-0.9.0.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ebaafd183de4f2712a1c758fb5017179 +_md5_=3956ec79350f2bbd327efa38989048f1 diff --git a/metadata/md5-cache/dev-python/pytest-httpbin-1.0.1 b/metadata/md5-cache/dev-python/pytest-httpbin-1.0.1 new file mode 100644 index 000000000000..1226a40b6cd0 --- /dev/null +++ b/metadata/md5-cache/dev-python/pytest-httpbin-1.0.1 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( dev-python/httpbin[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Easily test your HTTP library against a local copy of httpbin +EAPI=8 +HOMEPAGE=https://github.com/kevin1024/pytest-httpbin https://pypi.org/project/pytest-httpbin/ +IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos +LICENSE=MIT +RDEPEND=dev-python/httpbin[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/kevin1024/pytest-httpbin/archive/v1.0.1.tar.gz -> pytest-httpbin-1.0.1.gh.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=657e011b36d069539ded3585ab75b566 diff --git a/metadata/md5-cache/dev-python/pytest-httpx-0.17.3 b/metadata/md5-cache/dev-python/pytest-httpx-0.17.3 new file mode 100644 index 000000000000..f0b62203267f --- /dev/null +++ b/metadata/md5-cache/dev-python/pytest-httpx-0.17.3 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/pytest-asyncio[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( =dev-python/httpx-0.21*[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/pytest-6*[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Send responses to HTTPX using pytest +EAPI=8 +HOMEPAGE=https://colin-b.github.io/pytest_httpx/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND==dev-python/httpx-0.21*[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/pytest-6*[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/Colin-b/pytest_httpx/archive/v0.17.3.tar.gz -> pytest-httpx-0.17.3.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=0bee12f4b96e5bc68bef36cbcbcf1dd5 diff --git a/metadata/md5-cache/dev-python/radon-5.1.0 b/metadata/md5-cache/dev-python/radon-5.1.0 index 144ba5602084..94da121d342f 100644 --- a/metadata/md5-cache/dev-python/radon-5.1.0 +++ b/metadata/md5-cache/dev-python/radon-5.1.0 @@ -4,7 +4,7 @@ DESCRIPTION=Code Metrics in Python EAPI=8 HOMEPAGE=https://radon.readthedocs.io/ IUSE=doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 x86 LICENSE=MIT RDEPEND=dev-python/colorama[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/flake8[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/mando[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/r/radon/radon-5.1.0.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=93b277b56c1ef087180ded4712a8e345 +_md5_=e26e24738b5630e52777a0504ac119ed diff --git a/metadata/md5-cache/dev-python/rpy-3.4.5 b/metadata/md5-cache/dev-python/rpy-3.4.5 new file mode 100644 index 000000000000..b7df20a88503 --- /dev/null +++ b/metadata/md5-cache/dev-python/rpy-3.4.5 @@ -0,0 +1,16 @@ +BDEPEND=python_targets_python3_8? ( dev-lang/python:3.8[sqlite] ) python_targets_python3_9? ( dev-lang/python:3.9[sqlite] ) python_targets_python3_10? ( dev-lang/python:3.10[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Python interface to the R Programming Language +EAPI=8 +HOMEPAGE=https://rpy.sourceforge.net/ https://pypi.org/project/rpy2/ +IUSE=python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 test +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=AGPL-3 GPL-2 LGPL-2.1 MPL-1.1 +PDEPEND=dev-python/ipython[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +RDEPEND=>=dev-lang/R-3.2 dev-python/cffi[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jinja[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pandas-0.13.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytz[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tzlocal[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8[sqlite] ) python_targets_python3_9? ( dev-lang/python:3.9[sqlite] ) python_targets_python3_10? ( dev-lang/python:3.10[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=test !test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/r/rpy2/rpy2-3.4.5.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx fa024aa649b6bd544144bf94893d402c +_md5_=37b3d0e100dece0ba9d2ea37e6f480f6 diff --git a/metadata/md5-cache/dev-python/scipy-1.7.3 b/metadata/md5-cache/dev-python/scipy-1.7.3 index 45b6cea8c43f..32a6662feb31 100644 --- a/metadata/md5-cache/dev-python/scipy-1.7.3 +++ b/metadata/md5-cache/dev-python/scipy-1.7.3 @@ -5,7 +5,7 @@ DESCRIPTION=Scientific algorithms library for Python EAPI=7 HOMEPAGE=https://www.scipy.org/ IUSE=doc +pythran sparse test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~arm arm64 -hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 +KEYWORDS=amd64 arm arm64 -hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 LICENSE=BSD LGPL-2 RDEPEND=>=dev-python/numpy-1.16.5[lapack,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/arpack:0= virtual/cblas virtual/lapack sparse? ( sci-libs/umfpack:0= ) dev-python/pillow[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] virtual/fortran python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/s/scipy/scipy-1.7.3.tar.gz doc? ( https://docs.scipy.org/doc/scipy-1.7.1/scipy-html-1.7.1.zip https://docs.scipy.org/doc/scipy-1.7.1/scipy-ref-1.7.1.pdf ) _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 fortran-2 7e39eb204d37699d5f1eaf9f4d61888a multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=d4d0758a4dacf9583414d017295f06ea +_md5_=a07a6ec6b4e82b018a6443491b7c2f6a diff --git a/metadata/md5-cache/dev-python/tappy-3.1 b/metadata/md5-cache/dev-python/tappy-3.1 new file mode 100644 index 000000000000..631c03135546 --- /dev/null +++ b/metadata/md5-cache/dev-python/tappy-3.1 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/Babel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/more-itertools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyyaml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( dev-python/unittest-or-fail[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] ) ) ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=Test Anything Protocol (TAP) tools +EAPI=8 +HOMEPAGE=https://github.com/python-tap/tappy https://pypi.org/project/tap.py/ +IUSE=test doc python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=BSD-2 +RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/t/tap.py/tap.py-3.1.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature 30ce9dec2b8943338c9b015bd32bac6a python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=c6765d612b2170ed3aa09079099cd65d diff --git a/metadata/md5-cache/dev-python/tikzplotlib-0.9.16 b/metadata/md5-cache/dev-python/tikzplotlib-0.9.16 index c6ce5374e1cd..671485ac8e80 100644 --- a/metadata/md5-cache/dev-python/tikzplotlib-0.9.16 +++ b/metadata/md5-cache/dev-python/tikzplotlib-0.9.16 @@ -1,4 +1,4 @@ -BDEPEND=test? ( dev-python/exdown[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pandas[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( app-text/texlive[extra] =dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] dev-python/mock[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] dev-python/mock[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] dev-python/mock[python_targets_python3_8(-)] ) ) ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyproject2setuppy-22[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=test? ( dev-python/pandas[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-codeblocks[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( app-text/texlive[extra] =dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] dev-python/mock[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] dev-python/mock[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] dev-python/mock[python_targets_python3_8(-)] ) ) ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyproject2setuppy-22[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Convert matplotlib figures into TikZ/PGFPlots EAPI=8 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nschloe/tikzplotlib/archive/v0.9.16.tar.gz -> tikzplotlib-0.9.16.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx fa024aa649b6bd544144bf94893d402c -_md5_=fa9583634d86f18a7d481e39d4be3877 +_md5_=17a12bf61a52c269ce7efcecaba8d7c6 diff --git a/metadata/md5-cache/dev-python/tikzplotlib-0.9.17 b/metadata/md5-cache/dev-python/tikzplotlib-0.9.17 index a67ae86ad170..2c07be169052 100644 --- a/metadata/md5-cache/dev-python/tikzplotlib-0.9.17 +++ b/metadata/md5-cache/dev-python/tikzplotlib-0.9.17 @@ -1,4 +1,4 @@ -BDEPEND=test? ( dev-python/exdown[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pandas[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( app-text/texlive[extra] =dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] dev-python/mock[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] dev-python/mock[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] dev-python/mock[python_targets_python3_8(-)] ) ) ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyproject2setuppy-22[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=test? ( dev-python/pandas[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-codeblocks[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( app-text/texlive[extra] =dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] dev-python/mock[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] dev-python/mock[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] dev-python/mock[python_targets_python3_8(-)] ) ) ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyproject2setuppy-22[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Convert matplotlib figures into TikZ/PGFPlots EAPI=8 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nschloe/tikzplotlib/archive/v0.9.17.tar.gz -> tikzplotlib-0.9.17.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx fa024aa649b6bd544144bf94893d402c -_md5_=63a11cc115c6c865fd9dbc6f741d9640 +_md5_=a34a4ef486ef4035f710c55fcc42f538 diff --git a/metadata/md5-cache/dev-python/tomli-w-1.0.0 b/metadata/md5-cache/dev-python/tomli-w-1.0.0 index 517eff9e3115..68de22e877f4 100644 --- a/metadata/md5-cache/dev-python/tomli-w-1.0.0 +++ b/metadata/md5-cache/dev-python/tomli-w-1.0.0 @@ -4,7 +4,7 @@ DESCRIPTION=A lil' TOML writer EAPI=8 HOMEPAGE=https://pypi.org/project/tomli-w/ https://github.com/hukkin/tomli-w/ IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~sparc x86 LICENSE=MIT RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hukkin/tomli-w/archive/1.0.0.tar.gz -> tomli-w-1.0.0.gh.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e9497fd55c23c3606277c8a37a8446b9 +_md5_=e038b7c14ce29f54d7bc3669224c5f9d diff --git a/metadata/md5-cache/dev-python/tox-3.24.5 b/metadata/md5-cache/dev-python/tox-3.24.5 new file mode 100644 index 000000000000..defb63e6f4d6 --- /dev/null +++ b/metadata/md5-cache/dev-python/tox-3.24.5 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/setuptools_scm[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/filelock[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/packaging[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pluggy-0.12[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pip[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/py[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/six-1.14[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/virtualenv-16.0.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flaky-3.4.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/freezegun-0.3.11[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.0.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-mock[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=virtualenv-based automation of test activities +EAPI=8 +HOMEPAGE=https://tox.readthedocs.io https://github.com/tox-dev/tox https://pypi.org/project/tox/ +IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=MIT +RDEPEND=dev-python/filelock[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/packaging[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pluggy-0.12[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pip[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/py[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/six-1.14[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/virtualenv-16.0.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/tox-dev/tox/archive/3.24.5.tar.gz -> tox-3.24.5.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=49f7d0cb9977619fade40092d897bcdf diff --git a/metadata/md5-cache/dev-python/twine-3.4.2 b/metadata/md5-cache/dev-python/twine-3.4.2 deleted file mode 100644 index bef628c30ab5..000000000000 --- a/metadata/md5-cache/dev-python/twine-3.4.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-python/setuptools_scm[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/jaraco-envs[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jaraco-functools[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/munch[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/portend[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pretend[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pypiserver[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/colorama-0.4.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/importlib_metadata-3.6[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/keyring-15.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pkginfo-1.4.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/readme_renderer-21.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.20.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-toolbelt-0.8.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/rfc3986-1.4.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tqdm-4.14[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyproject2setuppy-22[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Collection of utilities for publishing packages on PyPI -EAPI=8 -HOMEPAGE=https://twine.readthedocs.io/ https://github.com/pypa/twine https://pypi.org/project/twine/ -IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86 ~x64-macos -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/colorama-0.4.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/importlib_metadata-3.6[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/keyring-15.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pkginfo-1.4.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/readme_renderer-21.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.20.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-toolbelt-0.8.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/rfc3986-1.4.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tqdm-4.14[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/pypa/twine/archive/3.4.2.tar.gz -> twine-3.4.2.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=6376f2b1a7b85f9ef7f6ac0f4c10b211 diff --git a/metadata/md5-cache/dev-python/twine-3.6.0 b/metadata/md5-cache/dev-python/twine-3.6.0 index f6d6e4c92d36..ff7ecfae76b5 100644 --- a/metadata/md5-cache/dev-python/twine-3.6.0 +++ b/metadata/md5-cache/dev-python/twine-3.6.0 @@ -4,7 +4,7 @@ DESCRIPTION=Collection of utilities for publishing packages on PyPI EAPI=8 HOMEPAGE=https://twine.readthedocs.io/ https://github.com/pypa/twine https://pypi.org/project/twine/ IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86 ~x64-macos LICENSE=Apache-2.0 RDEPEND=>=dev-python/colorama-0.4.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/importlib_metadata-3.6[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/keyring-15.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pkginfo-1.4.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/readme_renderer-21.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.20.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-toolbelt-0.8.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/rfc3986-1.4.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tqdm-4.14[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pypa/twine/archive/3.6.0.tar.gz -> twine-3.6.0.tar.gz _eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=9d453f496162708a8945bf329e62df1e +_md5_=6376f2b1a7b85f9ef7f6ac0f4c10b211 diff --git a/metadata/md5-cache/dev-python/virtualenv-20.11.1 b/metadata/md5-cache/dev-python/virtualenv-20.11.1 new file mode 100644 index 000000000000..86a362618c49 --- /dev/null +++ b/metadata/md5-cache/dev-python/virtualenv-20.11.1 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/setuptools_scm[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/coverage[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/flaky[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pip-20.0.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-freezegun-0.4.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-mock-2.0.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-timeout-1.3.4[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/packaging-20.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/backports-entry_points_selectable-1.0.4[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/distlib-0.3.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/filelock-3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/platformdirs-2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-41[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/six-1.9.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=Virtual Python Environment builder +EAPI=8 +HOMEPAGE=https://virtualenv.pypa.io/en/stable/ https://pypi.org/project/virtualenv/ https://github.com/pypa/virtualenv/ +IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/backports-entry_points_selectable-1.0.4[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/distlib-0.3.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/filelock-3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/platformdirs-2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-41[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/six-1.9.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/v/virtualenv/virtualenv-20.11.1.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=6fedb406fba174a7fdc1f1ffb0d3de93 diff --git a/metadata/md5-cache/dev-python/yapf-0.32.0 b/metadata/md5-cache/dev-python/yapf-0.32.0 new file mode 100644 index 000000000000..ed1a4f92c07f --- /dev/null +++ b/metadata/md5-cache/dev-python/yapf-0.32.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/toml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A formatter for Python files +EAPI=7 +HOMEPAGE=https://github.com/google/yapf +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/google/yapf/archive/v0.32.0.tar.gz -> yapf-0.32.0.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=765bb8370abd11e2fd18b1a374a2f3a2 diff --git a/metadata/md5-cache/dev-qt/Manifest.gz b/metadata/md5-cache/dev-qt/Manifest.gz index c3c0539c9c7b..b6d479a76c45 100644 Binary files a/metadata/md5-cache/dev-qt/Manifest.gz and b/metadata/md5-cache/dev-qt/Manifest.gz differ diff --git a/metadata/md5-cache/dev-qt/qtwebengine-5.15.2_p20211019 b/metadata/md5-cache/dev-qt/qtwebengine-5.15.2_p20211019 deleted file mode 100644 index 0681334b91b1..000000000000 --- a/metadata/md5-cache/dev-qt/qtwebengine-5.15.2_p20211019 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-2.7.5-r2:2.7[xml(+)] ) dev-util/gperf dev-util/ninja dev-util/re2c net-libs/nodejs[ssl] sys-devel/bison sys-devel/flex ppc64? ( >=dev-util/gn-0.1807 ) dev-lang/perl virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss dev-libs/expat dev-libs/libevent:= dev-libs/libxml2[icu] dev-libs/libxslt dev-libs/re2:= =dev-qt/qtcore-5.15.2* =dev-qt/qtdeclarative-5.15.2* =dev-qt/qtgui-5.15.2* =dev-qt/qtnetwork-5.15.2* =dev-qt/qtprintsupport-5.15.2* =dev-qt/qtwebchannel-5.15.2*[qml] media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/lcms:2 media-libs/libjpeg-turbo:= media-libs/libpng:0= >=media-libs/libvpx-1.5:=[svc(+)] media-libs/libwebp:= media-libs/opus sys-apps/dbus sys-apps/pciutils sys-libs/zlib[minizip] virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libxkbfile x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst alsa? ( media-libs/alsa-lib ) designer? ( =dev-qt/designer-5.15.2* ) geolocation? ( =dev-qt/qtpositioning-5.15.2* ) kerberos? ( virtual/krb5 ) pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( media-video/ffmpeg:0= ) system-icu? ( >=dev-libs/icu-69.1:= ) widgets? ( =dev-qt/qtdeclarative-5.15.2*[widgets] =dev-qt/qtwidgets-5.15.2* ) media-libs/libglvnd test? ( =dev-qt/qttest-5.15.2* ) -DESCRIPTION=Library for rendering dynamic web content in Qt5 C++ and QML applications -EAPI=8 -HOMEPAGE=https://www.qt.io/ -IUSE=alsa bindist designer geolocation +jumbo-build kerberos pulseaudio +system-ffmpeg +system-icu widgets debug test -KEYWORDS=amd64 ~arm arm64 ~ppc64 x86 -LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss dev-libs/expat dev-libs/libevent:= dev-libs/libxml2[icu] dev-libs/libxslt dev-libs/re2:= =dev-qt/qtcore-5.15.2* =dev-qt/qtdeclarative-5.15.2* =dev-qt/qtgui-5.15.2* =dev-qt/qtnetwork-5.15.2* =dev-qt/qtprintsupport-5.15.2* =dev-qt/qtwebchannel-5.15.2*[qml] media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/lcms:2 media-libs/libjpeg-turbo:= media-libs/libpng:0= >=media-libs/libvpx-1.5:=[svc(+)] media-libs/libwebp:= media-libs/opus sys-apps/dbus sys-apps/pciutils sys-libs/zlib[minizip] virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libxkbfile x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst alsa? ( media-libs/alsa-lib ) designer? ( =dev-qt/designer-5.15.2* ) geolocation? ( =dev-qt/qtpositioning-5.15.2* ) kerberos? ( virtual/krb5 ) pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( media-video/ffmpeg:0= ) system-icu? ( >=dev-libs/icu-69.1:= ) widgets? ( =dev-qt/qtdeclarative-5.15.2*[widgets] =dev-qt/qtwidgets-5.15.2* ) -REQUIRED_USE=designer? ( widgets ) -RESTRICT=test -SLOT=5/5.15 -SRC_URI=https://dev.gentoo.org/~asturm/distfiles/qtwebengine-5.15.2_p20211019.tar.xz https://dev.gentoo.org/~sam/distfiles/dev-qt/qtwebengine/qtwebengine-5.15.2_p20211019-jumbo-build.patch.bz2 ppc64? ( https://dev.gentoo.org/~gyakovlev/distfiles/qtwebengine-5.15.2-r1-chromium87-ppc64le.tar.xz ) -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 13f6d423c5c5bc519a9b552654cc745f python-utils-r1 a8b7938ade305f087865de7e52d079b5 qt5-build 3dd6aa2952bf864755d5029a06d2bb34 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx fa024aa649b6bd544144bf94893d402c -_md5_=1961ea8f4d304324b2cce636d47d4e07 diff --git a/metadata/md5-cache/dev-ruby/Manifest.gz b/metadata/md5-cache/dev-ruby/Manifest.gz index 6bef3597b1e8..0e43507d1ac1 100644 Binary files a/metadata/md5-cache/dev-ruby/Manifest.gz and b/metadata/md5-cache/dev-ruby/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ruby/spring-3.1.1 b/metadata/md5-cache/dev-ruby/spring-3.1.1 new file mode 100644 index 000000000000..c71647107715 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/spring-3.1.1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( ruby_targets_ruby26? ( >=dev-ruby/activesupport-4.2:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/activesupport-4.2:*[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/bundler[ruby_targets_ruby26(-)] dev-ruby/activesupport[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] dev-ruby/activesupport[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DESCRIPTION=Rails application preloader +EAPI=8 +HOMEPAGE=https://github.com/rails/spring +IUSE=test ruby_targets_ruby26 ruby_targets_ruby27 test test +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=MIT +RDEPEND=ruby_targets_ruby26? ( >=dev-ruby/activesupport-4.2:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/activesupport-4.2:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby26 ruby_targets_ruby27 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) +SLOT=1.1 +SRC_URI=https://github.com/rails/spring/archive/v3.1.1.tar.gz -> spring-3.1.1.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 8a0248f83ae77f945d376ff4a7953257 ruby-fakegem 53b774322e7124b47b10a03fa0e089eb ruby-ng 05a317c9b860e5661cc9baf18c442e1c ruby-utils 08ae6f9c60b19aabce3f66a30cce9a2d toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=f5918975093107e7f6622c7750068c86 diff --git a/metadata/md5-cache/dev-tcltk/Manifest.gz b/metadata/md5-cache/dev-tcltk/Manifest.gz index 4d98acb77e58..0f81e3b9c3ac 100644 Binary files a/metadata/md5-cache/dev-tcltk/Manifest.gz and b/metadata/md5-cache/dev-tcltk/Manifest.gz differ diff --git a/metadata/md5-cache/dev-tcltk/tix-8.4.3-r2 b/metadata/md5-cache/dev-tcltk/tix-8.4.3-r2 index 8d2e83917372..05b4b4b10d85 100644 --- a/metadata/md5-cache/dev-tcltk/tix-8.4.3-r2 +++ b/metadata/md5-cache/dev-tcltk/tix-8.4.3-r2 @@ -3,10 +3,10 @@ DEPEND=dev-lang/tk:0= x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp DESCRIPTION=A widget library for Tcl/Tk EAPI=8 HOMEPAGE=http://tix.sourceforge.net/ -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos LICENSE=BSD RDEPEND=dev-lang/tk:0= x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/tix/Tix8.4.3-src.tar.gz -_md5_=bca16310fee77618fbcd1015b565b9d3 +_md5_=d79eaad3d4c9b409225e8af04540d4cd diff --git a/metadata/md5-cache/dev-tex/Manifest.gz b/metadata/md5-cache/dev-tex/Manifest.gz index 4986c7902964..4fb32b745400 100644 Binary files a/metadata/md5-cache/dev-tex/Manifest.gz and b/metadata/md5-cache/dev-tex/Manifest.gz differ diff --git a/metadata/md5-cache/dev-tex/pythontex-0.18 b/metadata/md5-cache/dev-tex/pythontex-0.18 new file mode 100644 index 000000000000..de3580ff2cbe --- /dev/null +++ b/metadata/md5-cache/dev-tex/pythontex-0.18 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm +DEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-texlive/texlive-latexextra-2016 dev-tex/pgf virtual/latex-base >=sys-apps/texinfo-4.2-r5 +DESCRIPTION=Fast Access to Python from within LaTeX +EAPI=7 +HOMEPAGE=https://github.com/gpoore/pythontex +IUSE=doc highlighting python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~ppc ~riscv ~x86 +LICENSE=LPPL-1.3 BSD +RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-texlive/texlive-latexextra-2016 dev-tex/pgf dev-python/pygments[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] virtual/latex-base +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +SLOT=0 +SRC_URI=https://github.com/gpoore/pythontex/archive/v0.18.tar.gz -> pythontex-0.18.tar.gz +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 latex-package e5f296c98696dd02059bc6a5a03282e2 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=0d44abf5f93a5abb8dec241fc9a0e9c3 diff --git a/metadata/md5-cache/dev-util/Manifest.gz b/metadata/md5-cache/dev-util/Manifest.gz index f9b1cd21ec7a..cff9c5f4bcc2 100644 Binary files a/metadata/md5-cache/dev-util/Manifest.gz and b/metadata/md5-cache/dev-util/Manifest.gz differ diff --git a/metadata/md5-cache/dev-util/cbindgen-0.20.0 b/metadata/md5-cache/dev-util/cbindgen-0.20.0 index e48e6cf0a3e1..0596055b649d 100644 --- a/metadata/md5-cache/dev-util/cbindgen-0.20.0 +++ b/metadata/md5-cache/dev-util/cbindgen-0.20.0 @@ -4,10 +4,10 @@ DESCRIPTION=A tool for generating C bindings to Rust code EAPI=8 HOMEPAGE=https://github.com/eqrion/cbindgen/ IUSE=debug -KEYWORDS=amd64 ~arm arm64 ~ppc64 x86 +KEYWORDS=amd64 ~arm arm64 ~ppc64 ~riscv x86 LICENSE=MIT MPL-2.0 RESTRICT=test SLOT=0 SRC_URI=https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/bitflags/1.2.1/download -> bitflags-1.2.1.crate https://crates.io/api/v1/crates/cbindgen/0.20.0/download -> cbindgen-0.20.0.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/clap/2.33.3/download -> clap-2.33.3.crate https://crates.io/api/v1/crates/cloudabi/0.0.3/download -> cloudabi-0.0.3.crate https://crates.io/api/v1/crates/getrandom/0.1.15/download -> getrandom-0.1.15.crate https://crates.io/api/v1/crates/hashbrown/0.9.1/download -> hashbrown-0.9.1.crate https://crates.io/api/v1/crates/heck/0.3.1/download -> heck-0.3.1.crate https://crates.io/api/v1/crates/hermit-abi/0.1.16/download -> hermit-abi-0.1.16.crate https://crates.io/api/v1/crates/indexmap/1.6.0/download -> indexmap-1.6.0.crate https://crates.io/api/v1/crates/itoa/0.4.6/download -> itoa-0.4.6.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.77/download -> libc-0.2.77.crate https://crates.io/api/v1/crates/lock_api/0.3.4/download -> lock_api-0.3.4.crate https://crates.io/api/v1/crates/log/0.4.11/download -> log-0.4.11.crate https://crates.io/api/v1/crates/parking_lot/0.10.2/download -> parking_lot-0.10.2.crate https://crates.io/api/v1/crates/parking_lot_core/0.7.2/download -> parking_lot_core-0.7.2.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.9/download -> ppv-lite86-0.2.9.crate https://crates.io/api/v1/crates/proc-macro2/1.0.21/download -> proc-macro2-1.0.21.crate https://crates.io/api/v1/crates/quote/1.0.7/download -> quote-1.0.7.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand_chacha/0.2.2/download -> rand_chacha-0.2.2.crate https://crates.io/api/v1/crates/rand_core/0.5.1/download -> rand_core-0.5.1.crate https://crates.io/api/v1/crates/rand_hc/0.2.0/download -> rand_hc-0.2.0.crate https://crates.io/api/v1/crates/redox_syscall/0.1.57/download -> redox_syscall-0.1.57.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/ryu/1.0.5/download -> ryu-1.0.5.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/serde/1.0.116/download -> serde-1.0.116.crate https://crates.io/api/v1/crates/serde_derive/1.0.116/download -> serde_derive-1.0.116.crate https://crates.io/api/v1/crates/serde_json/1.0.57/download -> serde_json-1.0.57.crate https://crates.io/api/v1/crates/serial_test/0.5.0/download -> serial_test-0.5.0.crate https://crates.io/api/v1/crates/serial_test_derive/0.5.0/download -> serial_test_derive-0.5.0.crate https://crates.io/api/v1/crates/smallvec/1.4.2/download -> smallvec-1.4.2.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/syn/1.0.41/download -> syn-1.0.41.crate https://crates.io/api/v1/crates/tempfile/3.1.0/download -> tempfile-3.1.0.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/toml/0.5.6/download -> toml-0.5.6.crate https://crates.io/api/v1/crates/unicode-segmentation/1.6.0/download -> unicode-segmentation-1.6.0.crate https://crates.io/api/v1/crates/unicode-width/0.1.8/download -> unicode-width-0.1.8.crate https://crates.io/api/v1/crates/unicode-xid/0.2.1/download -> unicode-xid-0.2.1.crate https://crates.io/api/v1/crates/vec_map/0.8.2/download -> vec_map-0.8.2.crate https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.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-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate _eclasses_=cargo c7fefacaebdcb455d2a7b59429eb47a6 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=6e9a854003862803137798cf32979aa9 +_md5_=76a82bec57cbc76922d6ba5622ad4b15 diff --git a/metadata/md5-cache/dev-util/maturin-0.12.4 b/metadata/md5-cache/dev-util/maturin-0.12.4 deleted file mode 100644 index af1a690406cc..000000000000 --- a/metadata/md5-cache/dev-util/maturin-0.12.4 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=doc? ( app-text/mdbook ) test? ( dev-python/cffi[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/boltons[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/virtualenv[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) >=virtual/rust-1.53 python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test unpack -DESCRIPTION=Build and publish crates with pyo3, rust-cpython and cffi bindings -EAPI=8 -HOMEPAGE=https://maturin.rs/ -IUSE=doc test debug python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm64 ~x86 -LICENSE=0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD ISC MIT MPL-2.0 openssl doc? ( CC-BY-4.0 OFL-1.1 ) -RDEPEND=dev-python/toml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/PyO3/maturin/archive/refs/tags/v0.12.4.tar.gz -> maturin-0.12.4.tar.gz https://crates.io/api/v1/crates/addr2line/0.17.0/download -> addr2line-0.17.0.crate https://crates.io/api/v1/crates/adler/1.0.2/download -> adler-1.0.2.crate https://crates.io/api/v1/crates/aes/0.6.0/download -> aes-0.6.0.crate https://crates.io/api/v1/crates/aes-soft/0.6.4/download -> aes-soft-0.6.4.crate https://crates.io/api/v1/crates/aesni/0.10.0/download -> aesni-0.10.0.crate https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/anyhow/1.0.51/download -> anyhow-1.0.51.crate https://crates.io/api/v1/crates/async-io/1.6.0/download -> async-io-1.6.0.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/backtrace/0.3.63/download -> backtrace-0.3.63.crate https://crates.io/api/v1/crates/base64/0.13.0/download -> base64-0.13.0.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/block-buffer/0.9.0/download -> block-buffer-0.9.0.crate https://crates.io/api/v1/crates/block-modes/0.7.0/download -> block-modes-0.7.0.crate https://crates.io/api/v1/crates/block-padding/0.2.1/download -> block-padding-0.2.1.crate https://crates.io/api/v1/crates/bstr/0.2.17/download -> bstr-0.2.17.crate https://crates.io/api/v1/crates/bumpalo/3.8.0/download -> bumpalo-3.8.0.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes/1.1.0/download -> bytes-1.1.0.crate https://crates.io/api/v1/crates/bytesize/1.1.0/download -> bytesize-1.1.0.crate https://crates.io/api/v1/crates/bzip2/0.4.3/download -> bzip2-0.4.3.crate https://crates.io/api/v1/crates/bzip2-sys/0.1.11+1.0.8/download -> bzip2-sys-0.1.11+1.0.8.crate https://crates.io/api/v1/crates/cache-padded/1.1.1/download -> cache-padded-1.1.1.crate https://crates.io/api/v1/crates/camino/1.0.5/download -> camino-1.0.5.crate https://crates.io/api/v1/crates/cargo-platform/0.1.2/download -> cargo-platform-0.1.2.crate https://crates.io/api/v1/crates/cargo_metadata/0.14.1/download -> cargo_metadata-0.14.1.crate https://crates.io/api/v1/crates/cbindgen/0.20.0/download -> cbindgen-0.20.0.crate https://crates.io/api/v1/crates/cc/1.0.72/download -> cc-1.0.72.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/charset/0.1.3/download -> charset-0.1.3.crate https://crates.io/api/v1/crates/cipher/0.2.5/download -> cipher-0.2.5.crate https://crates.io/api/v1/crates/clap/2.34.0/download -> clap-2.34.0.crate https://crates.io/api/v1/crates/concurrent-queue/1.2.2/download -> concurrent-queue-1.2.2.crate https://crates.io/api/v1/crates/configparser/3.0.0/download -> configparser-3.0.0.crate https://crates.io/api/v1/crates/console/0.15.0/download -> console-0.15.0.crate https://crates.io/api/v1/crates/core-foundation/0.9.2/download -> core-foundation-0.9.2.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.3/download -> core-foundation-sys-0.8.3.crate https://crates.io/api/v1/crates/cpufeatures/0.2.1/download -> cpufeatures-0.2.1.crate https://crates.io/api/v1/crates/crc32fast/1.3.0/download -> crc32fast-1.3.0.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.5/download -> crossbeam-utils-0.8.5.crate https://crates.io/api/v1/crates/crypto-mac/0.10.1/download -> crypto-mac-0.10.1.crate https://crates.io/api/v1/crates/derivative/2.2.0/download -> derivative-2.2.0.crate https://crates.io/api/v1/crates/dialoguer/0.9.0/download -> dialoguer-0.9.0.crate https://crates.io/api/v1/crates/digest/0.9.0/download -> digest-0.9.0.crate https://crates.io/api/v1/crates/dirs/4.0.0/download -> dirs-4.0.0.crate https://crates.io/api/v1/crates/dirs-sys/0.3.6/download -> dirs-sys-0.3.6.crate https://crates.io/api/v1/crates/encode_unicode/0.3.6/download -> encode_unicode-0.3.6.crate https://crates.io/api/v1/crates/encoding_rs/0.8.29/download -> encoding_rs-0.8.29.crate https://crates.io/api/v1/crates/enumflags2/0.6.4/download -> enumflags2-0.6.4.crate https://crates.io/api/v1/crates/enumflags2_derive/0.6.4/download -> enumflags2_derive-0.6.4.crate https://crates.io/api/v1/crates/env_logger/0.7.1/download -> env_logger-0.7.1.crate https://crates.io/api/v1/crates/fastrand/1.5.0/download -> fastrand-1.5.0.crate https://crates.io/api/v1/crates/fat-macho/0.4.4/download -> fat-macho-0.4.4.crate https://crates.io/api/v1/crates/filetime/0.2.15/download -> filetime-0.2.15.crate https://crates.io/api/v1/crates/flate2/1.0.22/download -> flate2-1.0.22.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.0.1/download -> form_urlencoded-1.0.1.crate https://crates.io/api/v1/crates/fs-err/2.6.0/download -> fs-err-2.6.0.crate https://crates.io/api/v1/crates/futures/0.3.18/download -> futures-0.3.18.crate https://crates.io/api/v1/crates/futures-channel/0.3.18/download -> futures-channel-0.3.18.crate https://crates.io/api/v1/crates/futures-core/0.3.18/download -> futures-core-0.3.18.crate https://crates.io/api/v1/crates/futures-executor/0.3.18/download -> futures-executor-0.3.18.crate https://crates.io/api/v1/crates/futures-io/0.3.18/download -> futures-io-0.3.18.crate https://crates.io/api/v1/crates/futures-lite/1.12.0/download -> futures-lite-1.12.0.crate https://crates.io/api/v1/crates/futures-macro/0.3.18/download -> futures-macro-0.3.18.crate https://crates.io/api/v1/crates/futures-sink/0.3.18/download -> futures-sink-0.3.18.crate https://crates.io/api/v1/crates/futures-task/0.3.18/download -> futures-task-0.3.18.crate https://crates.io/api/v1/crates/futures-util/0.3.18/download -> futures-util-0.3.18.crate https://crates.io/api/v1/crates/generic-array/0.14.4/download -> generic-array-0.14.4.crate https://crates.io/api/v1/crates/getrandom/0.2.3/download -> getrandom-0.2.3.crate https://crates.io/api/v1/crates/gimli/0.26.1/download -> gimli-0.26.1.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.crate https://crates.io/api/v1/crates/globset/0.4.8/download -> globset-0.4.8.crate https://crates.io/api/v1/crates/goblin/0.4.3/download -> goblin-0.4.3.crate https://crates.io/api/v1/crates/h2/0.3.7/download -> h2-0.3.7.crate https://crates.io/api/v1/crates/hashbrown/0.11.2/download -> hashbrown-0.11.2.crate https://crates.io/api/v1/crates/heck/0.3.3/download -> heck-0.3.3.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/hkdf/0.10.0/download -> hkdf-0.10.0.crate https://crates.io/api/v1/crates/hmac/0.10.1/download -> hmac-0.10.1.crate https://crates.io/api/v1/crates/http/0.2.5/download -> http-0.2.5.crate https://crates.io/api/v1/crates/http-body/0.4.4/download -> http-body-0.4.4.crate https://crates.io/api/v1/crates/httparse/1.5.1/download -> httparse-1.5.1.crate https://crates.io/api/v1/crates/httpdate/1.0.2/download -> httpdate-1.0.2.crate https://crates.io/api/v1/crates/human-panic/1.0.3/download -> human-panic-1.0.3.crate https://crates.io/api/v1/crates/humantime/1.3.0/download -> humantime-1.3.0.crate https://crates.io/api/v1/crates/hyper/0.14.15/download -> hyper-0.14.15.crate https://crates.io/api/v1/crates/hyper-rustls/0.23.0/download -> hyper-rustls-0.23.0.crate https://crates.io/api/v1/crates/idna/0.2.3/download -> idna-0.2.3.crate https://crates.io/api/v1/crates/ignore/0.4.18/download -> ignore-0.4.18.crate https://crates.io/api/v1/crates/indexmap/1.7.0/download -> indexmap-1.7.0.crate https://crates.io/api/v1/crates/indoc/1.0.3/download -> indoc-1.0.3.crate https://crates.io/api/v1/crates/instant/0.1.12/download -> instant-0.1.12.crate https://crates.io/api/v1/crates/ipnet/2.3.1/download -> ipnet-2.3.1.crate https://crates.io/api/v1/crates/itoa/0.4.8/download -> itoa-0.4.8.crate https://crates.io/api/v1/crates/js-sys/0.3.55/download -> js-sys-0.3.55.crate https://crates.io/api/v1/crates/keyring/1.0.0/download -> keyring-1.0.0.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.109/download -> libc-0.2.109.crate https://crates.io/api/v1/crates/log/0.4.14/download -> log-0.4.14.crate https://crates.io/api/v1/crates/mailparse/0.13.7/download -> mailparse-0.13.7.crate https://crates.io/api/v1/crates/matches/0.1.9/download -> matches-0.1.9.crate https://crates.io/api/v1/crates/memchr/2.4.1/download -> memchr-2.4.1.crate https://crates.io/api/v1/crates/mime/0.3.16/download -> mime-0.3.16.crate https://crates.io/api/v1/crates/mime_guess/2.0.3/download -> mime_guess-2.0.3.crate https://crates.io/api/v1/crates/minijinja/0.8.2/download -> minijinja-0.8.2.crate https://crates.io/api/v1/crates/miniz_oxide/0.4.4/download -> miniz_oxide-0.4.4.crate https://crates.io/api/v1/crates/mio/0.7.14/download -> mio-0.7.14.crate https://crates.io/api/v1/crates/miow/0.3.7/download -> miow-0.3.7.crate https://crates.io/api/v1/crates/nb-connect/1.2.0/download -> nb-connect-1.2.0.crate https://crates.io/api/v1/crates/nix/0.17.0/download -> nix-0.17.0.crate https://crates.io/api/v1/crates/ntapi/0.3.6/download -> ntapi-0.3.6.crate https://crates.io/api/v1/crates/num/0.3.1/download -> num-0.3.1.crate https://crates.io/api/v1/crates/num-bigint/0.3.3/download -> num-bigint-0.3.3.crate https://crates.io/api/v1/crates/num-complex/0.3.1/download -> num-complex-0.3.1.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-iter/0.1.42/download -> num-iter-0.1.42.crate https://crates.io/api/v1/crates/num-rational/0.3.2/download -> num-rational-0.3.2.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/num_cpus/1.13.0/download -> num_cpus-1.13.0.crate https://crates.io/api/v1/crates/object/0.27.1/download -> object-0.27.1.crate https://crates.io/api/v1/crates/once_cell/1.8.0/download -> once_cell-1.8.0.crate https://crates.io/api/v1/crates/opaque-debug/0.3.0/download -> opaque-debug-0.3.0.crate https://crates.io/api/v1/crates/os_type/2.3.0/download -> os_type-2.3.0.crate https://crates.io/api/v1/crates/parking/2.0.0/download -> parking-2.0.0.crate https://crates.io/api/v1/crates/percent-encoding/2.1.0/download -> percent-encoding-2.1.0.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.7/download -> pin-project-lite-0.2.7.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/pkg-config/0.3.22/download -> pkg-config-0.3.22.crate https://crates.io/api/v1/crates/plain/0.2.3/download -> plain-0.2.3.crate https://crates.io/api/v1/crates/platform-info/0.2.0/download -> platform-info-0.2.0.crate https://crates.io/api/v1/crates/polling/2.2.0/download -> polling-2.2.0.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.15/download -> ppv-lite86-0.2.15.crate https://crates.io/api/v1/crates/pretty_env_logger/0.4.0/download -> pretty_env_logger-0.4.0.crate https://crates.io/api/v1/crates/proc-macro-crate/0.1.5/download -> proc-macro-crate-0.1.5.crate https://crates.io/api/v1/crates/proc-macro-crate/1.1.0/download -> proc-macro-crate-1.1.0.crate https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download -> proc-macro-error-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download -> proc-macro-error-attr-1.0.4.crate https://crates.io/api/v1/crates/proc-macro2/1.0.33/download -> proc-macro2-1.0.33.crate https://crates.io/api/v1/crates/pyproject-toml/0.3.1/download -> pyproject-toml-0.3.1.crate https://crates.io/api/v1/crates/python-pkginfo/0.5.0/download -> python-pkginfo-0.5.0.crate https://crates.io/api/v1/crates/quick-error/1.2.3/download -> quick-error-1.2.3.crate https://crates.io/api/v1/crates/quote/1.0.10/download -> quote-1.0.10.crate https://crates.io/api/v1/crates/quoted_printable/0.4.5/download -> quoted_printable-0.4.5.crate https://crates.io/api/v1/crates/rand/0.8.4/download -> rand-0.8.4.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_core/0.6.3/download -> rand_core-0.6.3.crate https://crates.io/api/v1/crates/rand_hc/0.3.1/download -> rand_hc-0.3.1.crate https://crates.io/api/v1/crates/redox_syscall/0.2.10/download -> redox_syscall-0.2.10.crate https://crates.io/api/v1/crates/redox_users/0.4.0/download -> redox_users-0.4.0.crate https://crates.io/api/v1/crates/regex/1.5.4/download -> regex-1.5.4.crate https://crates.io/api/v1/crates/regex-syntax/0.6.25/download -> regex-syntax-0.6.25.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/reqwest/0.11.7/download -> reqwest-0.11.7.crate https://crates.io/api/v1/crates/rfc2047-decoder/0.1.2/download -> rfc2047-decoder-0.1.2.crate https://crates.io/api/v1/crates/ring/0.16.20/download -> ring-0.16.20.crate https://crates.io/api/v1/crates/rpassword/5.0.1/download -> rpassword-5.0.1.crate https://crates.io/api/v1/crates/rustc-demangle/0.1.21/download -> rustc-demangle-0.1.21.crate https://crates.io/api/v1/crates/rustls/0.20.2/download -> rustls-0.20.2.crate https://crates.io/api/v1/crates/rustls-pemfile/0.2.1/download -> rustls-pemfile-0.2.1.crate https://crates.io/api/v1/crates/ryu/1.0.6/download -> ryu-1.0.6.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/scoped-tls/1.0.0/download -> scoped-tls-1.0.0.crate https://crates.io/api/v1/crates/scroll/0.10.2/download -> scroll-0.10.2.crate https://crates.io/api/v1/crates/scroll_derive/0.10.5/download -> scroll_derive-0.10.5.crate https://crates.io/api/v1/crates/sct/0.7.0/download -> sct-0.7.0.crate https://crates.io/api/v1/crates/secret-service/2.0.1/download -> secret-service-2.0.1.crate https://crates.io/api/v1/crates/security-framework/2.4.2/download -> security-framework-2.4.2.crate https://crates.io/api/v1/crates/security-framework-sys/2.4.2/download -> security-framework-sys-2.4.2.crate https://crates.io/api/v1/crates/semver/1.0.4/download -> semver-1.0.4.crate https://crates.io/api/v1/crates/serde/1.0.130/download -> serde-1.0.130.crate https://crates.io/api/v1/crates/serde_derive/1.0.130/download -> serde_derive-1.0.130.crate https://crates.io/api/v1/crates/serde_json/1.0.72/download -> serde_json-1.0.72.crate https://crates.io/api/v1/crates/serde_repr/0.1.7/download -> serde_repr-0.1.7.crate https://crates.io/api/v1/crates/serde_urlencoded/0.7.0/download -> serde_urlencoded-0.7.0.crate https://crates.io/api/v1/crates/sha2/0.9.8/download -> sha2-0.9.8.crate https://crates.io/api/v1/crates/shlex/1.1.0/download -> shlex-1.1.0.crate https://crates.io/api/v1/crates/slab/0.4.5/download -> slab-0.4.5.crate https://crates.io/api/v1/crates/smawk/0.3.1/download -> smawk-0.3.1.crate https://crates.io/api/v1/crates/socket2/0.4.2/download -> socket2-0.4.2.crate https://crates.io/api/v1/crates/spin/0.5.2/download -> spin-0.5.2.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/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/structopt/0.3.25/download -> structopt-0.3.25.crate https://crates.io/api/v1/crates/structopt-derive/0.4.18/download -> structopt-derive-0.4.18.crate https://crates.io/api/v1/crates/subtle/2.4.1/download -> subtle-2.4.1.crate https://crates.io/api/v1/crates/syn/1.0.82/download -> syn-1.0.82.crate https://crates.io/api/v1/crates/tar/0.4.37/download -> tar-0.4.37.crate https://crates.io/api/v1/crates/target-lexicon/0.12.2/download -> target-lexicon-0.12.2.crate https://crates.io/api/v1/crates/tempfile/3.2.0/download -> tempfile-3.2.0.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/terminal_size/0.1.17/download -> terminal_size-0.1.17.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/textwrap/0.14.2/download -> textwrap-0.14.2.crate https://crates.io/api/v1/crates/thiserror/1.0.30/download -> thiserror-1.0.30.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.30/download -> thiserror-impl-1.0.30.crate https://crates.io/api/v1/crates/thread_local/1.1.3/download -> thread_local-1.1.3.crate https://crates.io/api/v1/crates/time/0.1.43/download -> time-0.1.43.crate https://crates.io/api/v1/crates/tinyvec/1.5.1/download -> tinyvec-1.5.1.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.0/download -> tinyvec_macros-0.1.0.crate https://crates.io/api/v1/crates/tokio/1.14.0/download -> tokio-1.14.0.crate https://crates.io/api/v1/crates/tokio-rustls/0.23.1/download -> tokio-rustls-0.23.1.crate https://crates.io/api/v1/crates/tokio-util/0.6.9/download -> tokio-util-0.6.9.crate https://crates.io/api/v1/crates/toml/0.5.8/download -> toml-0.5.8.crate https://crates.io/api/v1/crates/tower-service/0.3.1/download -> tower-service-0.3.1.crate https://crates.io/api/v1/crates/tracing/0.1.29/download -> tracing-0.1.29.crate https://crates.io/api/v1/crates/tracing-core/0.1.21/download -> tracing-core-0.1.21.crate https://crates.io/api/v1/crates/try-lock/0.2.3/download -> try-lock-0.2.3.crate https://crates.io/api/v1/crates/typenum/1.14.0/download -> typenum-1.14.0.crate https://crates.io/api/v1/crates/unicase/2.6.0/download -> unicase-2.6.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.7/download -> unicode-bidi-0.3.7.crate https://crates.io/api/v1/crates/unicode-linebreak/0.1.2/download -> unicode-linebreak-0.1.2.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.19/download -> unicode-normalization-0.1.19.crate https://crates.io/api/v1/crates/unicode-segmentation/1.8.0/download -> unicode-segmentation-1.8.0.crate https://crates.io/api/v1/crates/unicode-width/0.1.9/download -> unicode-width-0.1.9.crate https://crates.io/api/v1/crates/unicode-xid/0.2.2/download -> unicode-xid-0.2.2.crate https://crates.io/api/v1/crates/unindent/0.1.7/download -> unindent-0.1.7.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.2.2/download -> url-2.2.2.crate https://crates.io/api/v1/crates/uuid/0.8.2/download -> uuid-0.8.2.crate https://crates.io/api/v1/crates/vec_map/0.8.2/download -> vec_map-0.8.2.crate https://crates.io/api/v1/crates/version_check/0.9.3/download -> version_check-0.9.3.crate https://crates.io/api/v1/crates/void/1.0.2/download -> void-1.0.2.crate https://crates.io/api/v1/crates/waker-fn/1.1.0/download -> waker-fn-1.1.0.crate https://crates.io/api/v1/crates/walkdir/2.3.2/download -> walkdir-2.3.2.crate https://crates.io/api/v1/crates/want/0.3.0/download -> want-0.3.0.crate https://crates.io/api/v1/crates/wasi/0.10.2+wasi-snapshot-preview1/download -> wasi-0.10.2+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.78/download -> wasm-bindgen-0.2.78.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.78/download -> wasm-bindgen-backend-0.2.78.crate https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.28/download -> wasm-bindgen-futures-0.4.28.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.78/download -> wasm-bindgen-macro-0.2.78.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.78/download -> wasm-bindgen-macro-support-0.2.78.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.78/download -> wasm-bindgen-shared-0.2.78.crate https://crates.io/api/v1/crates/web-sys/0.3.55/download -> web-sys-0.3.55.crate https://crates.io/api/v1/crates/webpki/0.21.4/download -> webpki-0.21.4.crate https://crates.io/api/v1/crates/webpki/0.22.0/download -> webpki-0.22.0.crate https://crates.io/api/v1/crates/webpki-roots/0.21.1/download -> webpki-roots-0.21.1.crate https://crates.io/api/v1/crates/wepoll-ffi/0.1.2/download -> wepoll-ffi-0.1.2.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.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.5/download -> winapi-util-0.1.5.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/winreg/0.7.0/download -> winreg-0.7.0.crate https://crates.io/api/v1/crates/xattr/0.2.2/download -> xattr-0.2.2.crate https://crates.io/api/v1/crates/zbus/1.9.1/download -> zbus-1.9.1.crate https://crates.io/api/v1/crates/zbus_macros/1.9.1/download -> zbus_macros-1.9.1.crate https://crates.io/api/v1/crates/zeroize/1.4.3/download -> zeroize-1.4.3.crate https://crates.io/api/v1/crates/zip/0.5.13/download -> zip-0.5.13.crate https://crates.io/api/v1/crates/zvariant/2.10.0/download -> zvariant-2.10.0.crate https://crates.io/api/v1/crates/zvariant_derive/2.10.0/download -> zvariant_derive-2.10.0.crate test? ( https://crates.io/api/v1/crates/indoc/0.3.6/download -> indoc-0.3.6.crate https://crates.io/api/v1/crates/indoc-impl/0.3.6/download -> indoc-impl-0.3.6.crate https://crates.io/api/v1/crates/libc/0.2.107/download -> libc-0.2.107.crate https://crates.io/api/v1/crates/libc/0.2.108/download -> libc-0.2.108.crate https://crates.io/api/v1/crates/lock_api/0.4.5/download -> lock_api-0.4.5.crate https://crates.io/api/v1/crates/parking_lot/0.11.2/download -> parking_lot-0.11.2.crate https://crates.io/api/v1/crates/parking_lot_core/0.8.5/download -> parking_lot_core-0.8.5.crate https://crates.io/api/v1/crates/paste/0.1.18/download -> paste-0.1.18.crate https://crates.io/api/v1/crates/paste-impl/0.1.18/download -> paste-impl-0.1.18.crate https://crates.io/api/v1/crates/proc-macro-hack/0.5.19/download -> proc-macro-hack-0.5.19.crate https://crates.io/api/v1/crates/proc-macro2/1.0.32/download -> proc-macro2-1.0.32.crate https://crates.io/api/v1/crates/pyo3/0.15.1/download -> pyo3-0.15.1.crate https://crates.io/api/v1/crates/pyo3-build-config/0.15.1/download -> pyo3-build-config-0.15.1.crate https://crates.io/api/v1/crates/pyo3-macros/0.15.1/download -> pyo3-macros-0.15.1.crate https://crates.io/api/v1/crates/pyo3-macros-backend/0.15.1/download -> pyo3-macros-backend-0.15.1.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/smallvec/1.7.0/download -> smallvec-1.7.0.crate https://crates.io/api/v1/crates/syn/1.0.81/download -> syn-1.0.81.crate ) -_eclasses_=cargo c7fefacaebdcb455d2a7b59429eb47a6 distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 flag-o-matic d5e1306543bc457213f68bb18f830d14 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=977766b8604b916158d1c5c8b84bf17b diff --git a/metadata/md5-cache/dev-util/shunit2-2.1.8 b/metadata/md5-cache/dev-util/shunit2-2.1.8 index a48d973df035..582019e756c4 100644 --- a/metadata/md5-cache/dev-util/shunit2-2.1.8 +++ b/metadata/md5-cache/dev-util/shunit2-2.1.8 @@ -4,9 +4,9 @@ DESCRIPTION=Unit-test framework for Bourne-based shell scripts EAPI=8 HOMEPAGE=https://github.com/kward/shunit2 IUSE=test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/kward/shunit2/archive/v2.1.8.tar.gz -> shunit2-2.1.8.tar.gz -_md5_=bc8ab49c1df2849ab93ca6378d0efdc8 +_md5_=20ccf8987ea93fc0c9c04114cc67bf34 diff --git a/metadata/md5-cache/dev-vcs/Manifest.gz b/metadata/md5-cache/dev-vcs/Manifest.gz index a784fbf6f09a..f6d1ec782fce 100644 Binary files a/metadata/md5-cache/dev-vcs/Manifest.gz and b/metadata/md5-cache/dev-vcs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-vcs/git-2.34.1 b/metadata/md5-cache/dev-vcs/git-2.34.1 index aff65a9254b8..a6bc5f92a1ac 100644 --- a/metadata/md5-cache/dev-vcs/git-2.34.1 +++ b/metadata/md5-cache/dev-vcs/git-2.34.1 @@ -5,7 +5,7 @@ DESCRIPTION=stupid content tracker: distributed VCS designed for speed and effic EAPI=8 HOMEPAGE=https://www.git-scm.com/ IUSE=+blksha1 +curl cgi doc emacs gnome-keyring +gpg highlight +iconv mediawiki mediawiki-experimental +nls +pcre perforce +perl +ppcsha1 subversion tk +threads +webdav xinetd cvs test python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=gnome-keyring? ( app-crypt/libsecret dev-libs/glib:2 ) dev-libs/openssl:0= sys-libs/zlib pcre? ( dev-libs/libpcre2:= ) perl? ( dev-lang/perl:=[-build(-)] ) tk? ( dev-lang/tk:0= ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) iconv? ( virtual/libiconv ) gpg? ( app-crypt/gnupg ) perl? ( dev-perl/Error dev-perl/MailTools dev-perl/Authen-SASL >=virtual/perl-libnet-3.110.0-r4[ssl] cgi? ( dev-perl/CGI highlight? ( app-text/highlight ) ) cvs? ( >=dev-vcs/cvsps-2.1:0 dev-perl/DBI dev-perl/DBD-SQLite ) mediawiki? ( dev-perl/DateTime-Format-ISO8601 dev-perl/HTML-Tree dev-perl/MediaWiki-API ) subversion? ( dev-vcs/subversion[-dso(-),perl] dev-perl/libwww-perl dev-perl/TermReadKey ) ) perforce? ( python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) ) REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimental? ( mediawiki ) perforce? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) subversion? ( perl ) webdav? ( curl ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.34.1.tar.xz https://www.kernel.org/pub/software/scm/git/git-manpages-2.34.1.tar.xz doc? ( https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.34.1.tar.xz ) _eclasses_=bash-completion-r1 d3a60385655d9b402be765a6de333245 elisp-common cf4fd1b0835b9f3e638724840468064a multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module bd9574a79c5f0a347a9ea3db5ad9ca72 plocale 89c6aac5da68423465e6fd79fb4ad5fb python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ddcb0fba28d0938bd82ac1fc604e82ec +_md5_=d26a7dfaeb342f9864ba7727d8424485 diff --git a/metadata/md5-cache/games-action/Manifest.gz b/metadata/md5-cache/games-action/Manifest.gz index f6e00a5112fa..15019b320dc8 100644 Binary files a/metadata/md5-cache/games-action/Manifest.gz and b/metadata/md5-cache/games-action/Manifest.gz differ diff --git a/metadata/md5-cache/games-action/abuse-0.9_p20181213-r1 b/metadata/md5-cache/games-action/abuse-0.9_p20181213-r1 deleted file mode 100644 index cddf6b5c5a0a..000000000000 --- a/metadata/md5-cache/games-action/abuse-0.9_p20181213-r1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=>=media-libs/libsdl2-2.0.3[sound,video] media-libs/sdl2-mixer[midi,wav] -DESCRIPTION=Port of Abuse by Crack Dot Com -EAPI=7 -HOMEPAGE=https://github.com/Xenoveritas/abuse -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 public-domain WTFPL-2 -RDEPEND=>=media-libs/libsdl2-2.0.3[sound,video] media-libs/sdl2-mixer[midi,wav] -SLOT=0 -SRC_URI=https://github.com/Xenoveritas/abuse/archive/42b6acd19af00689e8f34355e3b13323d8ea3f79.tar.gz -> abuse-0.9_p20181213.tar.gz http://abuse.zoy.org/raw-attachment/wiki/download/abuse-0.8.tar.gz -_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=aca3c49cee0bb80ca24f76dcb4f86138 diff --git a/metadata/md5-cache/games-board/Manifest.gz b/metadata/md5-cache/games-board/Manifest.gz index 339ce5e0549f..c254464f1120 100644 Binary files a/metadata/md5-cache/games-board/Manifest.gz and b/metadata/md5-cache/games-board/Manifest.gz differ diff --git a/metadata/md5-cache/games-board/gnuchess-6.2.8-r1 b/metadata/md5-cache/games-board/gnuchess-6.2.8-r1 deleted file mode 100644 index 2557031c1c01..000000000000 --- a/metadata/md5-cache/games-board/gnuchess-6.2.8-r1 +++ /dev/null @@ -1,9 +0,0 @@ -DEFINED_PHASES=configure -DESCRIPTION=Console based chess interface -EAPI=7 -HOMEPAGE=https://www.gnu.org/software/chess/chess.html -KEYWORDS=amd64 ~arm arm64 ppc64 x86 -LICENSE=GPL-3 -SLOT=0 -SRC_URI=mirror://gnu/chess/gnuchess-6.2.8.tar.gz -_md5_=16673646f191521e35b5de38d588c1e6 diff --git a/metadata/md5-cache/games-board/xskat-4.0-r1 b/metadata/md5-cache/games-board/xskat-4.0-r1 deleted file mode 100644 index 426b8db65db9..000000000000 --- a/metadata/md5-cache/games-board/xskat-4.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=x11-base/xorg-proto x11-misc/gccmakedep >=x11-misc/imake-1.0.8-r1 -DEFINED_PHASES=compile configure install -DEPEND=media-fonts/font-misc-misc x11-libs/libX11 -DESCRIPTION=Famous german card game -EAPI=7 -HOMEPAGE=http://www.xskat.de/xskat.html -KEYWORDS=~amd64 ~ppc64 ~x86 -LICENSE=freedist -RDEPEND=media-fonts/font-misc-misc x11-libs/libX11 -SLOT=0 -SRC_URI=http://www.xskat.de/xskat-4.0.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ac7275f93b96ff0898f628ecd35fac32 diff --git a/metadata/md5-cache/games-emulation/Manifest.gz b/metadata/md5-cache/games-emulation/Manifest.gz index 0cc244beec9d..64ae5370eea4 100644 Binary files a/metadata/md5-cache/games-emulation/Manifest.gz and b/metadata/md5-cache/games-emulation/Manifest.gz differ diff --git a/metadata/md5-cache/games-emulation/openmsx-16.0-r1 b/metadata/md5-cache/games-emulation/openmsx-16.0-r1 deleted file mode 100644 index 515f0b74875a..000000000000 --- a/metadata/md5-cache/games-emulation/openmsx-16.0-r1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.10 dev-lang/python:3.9 dev-lang/python:3.8 ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=dev-lang/tcl:0= media-libs/alsa-lib media-libs/libogg media-libs/libpng:0= media-libs/libsdl2[joystick=,sound,video] media-libs/libtheora media-libs/libvorbis media-libs/sdl2-ttf >=media-libs/glew-1.3.2:0= sys-libs/zlib virtual/opengl dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=MSX emulator that aims for perfection -EAPI=7 -HOMEPAGE=https://openmsx.org/ -IUSE=+joystick -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=dev-lang/tcl:0= media-libs/alsa-lib media-libs/libogg media-libs/libpng:0= media-libs/libsdl2[joystick=,sound,video] media-libs/libtheora media-libs/libvorbis media-libs/sdl2-ttf >=media-libs/glew-1.3.2:0= sys-libs/zlib virtual/opengl -SLOT=0 -SRC_URI=https://github.com/openMSX/openMSX/releases/download/RELEASE_16_0/openmsx-16.0.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 13f6d423c5c5bc519a9b552654cc745f python-utils-r1 a8b7938ade305f087865de7e52d079b5 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=2dec3eb7147abe760093a892974b93c8 diff --git a/metadata/md5-cache/games-engines/Manifest.gz b/metadata/md5-cache/games-engines/Manifest.gz index 5cf024f43494..043943a8c72c 100644 Binary files a/metadata/md5-cache/games-engines/Manifest.gz and b/metadata/md5-cache/games-engines/Manifest.gz differ diff --git a/metadata/md5-cache/games-engines/frotz-2.52-r1 b/metadata/md5-cache/games-engines/frotz-2.52-r1 deleted file mode 100644 index c1c52bc29bd4..000000000000 --- a/metadata/md5-cache/games-engines/frotz-2.52-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=compile install postinst -DEPEND=ncurses? ( sys-libs/ncurses:=[unicode(+)?] sound? ( media-libs/libao media-libs/libmodplug media-libs/libsamplerate media-libs/libsndfile[-minimal] media-libs/libvorbis ) ) sdl? ( media-libs/freetype:2 media-libs/libpng:0= media-libs/libsdl2[sound,threads,video] media-libs/sdl2-mixer[mod,vorbis,wav] sys-libs/zlib virtual/jpeg:0= ) -DESCRIPTION=Interpreter for Z-code based text games -EAPI=7 -HOMEPAGE=https://661.org/proj/if/frotz/ -IUSE=ncurses sdl sound unicode -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=GPL-2 -RDEPEND=ncurses? ( sys-libs/ncurses:=[unicode(+)?] sound? ( media-libs/libao media-libs/libmodplug media-libs/libsamplerate media-libs/libsndfile[-minimal] media-libs/libvorbis ) ) sdl? ( media-libs/freetype:2 media-libs/libpng:0= media-libs/libsdl2[sound,threads,video] media-libs/sdl2-mixer[mod,vorbis,wav] sys-libs/zlib virtual/jpeg:0= ) -REQUIRED_USE=sound? ( || ( ncurses sdl ) ) -SLOT=0 -SRC_URI=https://gitlab.com/DavidGriffith/frotz/-/archive/2.52/frotz-2.52.tar.bz2 -_eclasses_=multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=c97df898b8584dd1093dddd6e5f71ef3 diff --git a/metadata/md5-cache/games-engines/qtads-3.0.0 b/metadata/md5-cache/games-engines/qtads-3.0.0 deleted file mode 100644 index ed259b1c18ba..000000000000 --- a/metadata/md5-cache/games-engines/qtads-3.0.0 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=configure install postinst postrm preinst prepare -DEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtwidgets:5 sound? ( media-libs/libsdl2[sound] media-libs/libsndfile media-libs/libvorbis media-sound/fluidsynth:0= media-sound/mpg123 ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Multimedia interpreter for TADS text adventures -EAPI=7 -HOMEPAGE=https://realnc.github.io/qtads -IUSE=+sound -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3+ -RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtwidgets:5 sound? ( media-libs/libsdl2[sound] media-libs/libsndfile media-libs/libvorbis media-sound/fluidsynth:0= media-sound/mpg123 ) -SLOT=0 -SRC_URI=https://github.com/realnc/qtads/releases/download/v3.0.0/qtads-3.0.0-source.tar.xz -_eclasses_=multilib 8a0248f83ae77f945d376ff4a7953257 qmake-utils f5eb2f69fffe94292aaaf802fb21c8d1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=a5bcde7a19c35e5f10031291ecfe6871 diff --git a/metadata/md5-cache/games-engines/residualvm-0.2.1-r1 b/metadata/md5-cache/games-engines/residualvm-0.2.1-r1 deleted file mode 100644 index 17c80a0da518..000000000000 --- a/metadata/md5-cache/games-engines/residualvm-0.2.1-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst -DEPEND=media-libs/alsa-lib media-libs/freetype:2 media-libs/libsdl[X,sound,alsa,joystick,opengl,video] sys-libs/zlib virtual/glu virtual/opengl -DESCRIPTION=A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures -EAPI=6 -HOMEPAGE=https://www.residualvm.org/ -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 LGPL-2.1 -RDEPEND=media-libs/alsa-lib media-libs/freetype:2 media-libs/libsdl[X,sound,alsa,joystick,opengl,video] sys-libs/zlib virtual/glu virtual/opengl -SLOT=0 -SRC_URI=mirror://sourceforge/residualvm/residualvm-0.2.1-sources.tar.bz2 -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 gnome2-utils 239e7afa214b50012f83b8bb61de7555 multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=8163aeeb31902333ea39ba6dc778a350 diff --git a/metadata/md5-cache/games-engines/scummvm-tools-2.1.0 b/metadata/md5-cache/games-engines/scummvm-tools-2.1.0 deleted file mode 100644 index a521c0c21615..000000000000 --- a/metadata/md5-cache/games-engines/scummvm-tools-2.1.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=configure install prepare -DEPEND=>=dev-libs/boost-1.32:= sys-libs/zlib x11-libs/wxGTK:3.0-gtk3 flac? ( media-libs/flac ) iconv? ( virtual/libiconv media-libs/freetype:2 ) mad? ( media-libs/libmad ) png? ( media-libs/libpng:0= ) vorbis? ( media-libs/libvorbis ) -DESCRIPTION=utilities for the SCUMM game engine -EAPI=7 -HOMEPAGE=http://scummvm.sourceforge.net/ -IUSE=flac iconv mad png vorbis -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 -LICENSE=GPL-2+ -RDEPEND=>=dev-libs/boost-1.32:= sys-libs/zlib x11-libs/wxGTK:3.0-gtk3 flac? ( media-libs/flac ) iconv? ( virtual/libiconv media-libs/freetype:2 ) mad? ( media-libs/libmad ) png? ( media-libs/libpng:0= ) vorbis? ( media-libs/libvorbis ) -RESTRICT=test -SLOT=0 -SRC_URI=http://scummvm.org/frs/scummvm-tools/2.1.0/scummvm-tools-2.1.0.tar.xz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 wxwidgets 7e8a20d3bacea0e3ecf6e96fb72180aa -_md5_=401446bf0aca2819e71d1c50adeb5125 diff --git a/metadata/md5-cache/games-fps/Manifest.gz b/metadata/md5-cache/games-fps/Manifest.gz index aa0baece9014..17664fe24b82 100644 Binary files a/metadata/md5-cache/games-fps/Manifest.gz and b/metadata/md5-cache/games-fps/Manifest.gz differ diff --git a/metadata/md5-cache/games-fps/gzdoom-4.7.0 b/metadata/md5-cache/games-fps/gzdoom-4.7.0 deleted file mode 100644 index 63df77ecbd86..000000000000 --- a/metadata/md5-cache/games-fps/gzdoom-4.7.0 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=app-arch/bzip2 media-libs/libsdl2[gles2?,opengl,vulkan?] media-libs/openal media-libs/zmusic sys-libs/zlib virtual/jpeg:0 gtk? ( x11-libs/gtk+:3 ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=A modder-friendly OpenGL source port based on the DOOM engine -EAPI=7 -HOMEPAGE=https://zdoom.org -IUSE=debug gles2 gtk +non-free openmp telemetry vulkan -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=Apache-2.0 BSD BZIP2 GPL-3 LGPL-2.1+ LGPL-3 MIT non-free? ( Activision ChexQuest3 DOOM-COLLECTORS-EDITION freedist WidePix ) -RDEPEND=app-arch/bzip2 media-libs/libsdl2[gles2?,opengl,vulkan?] media-libs/openal media-libs/zmusic sys-libs/zlib virtual/jpeg:0 gtk? ( x11-libs/gtk+:3 ) -SLOT=0 -SRC_URI=https://github.com/coelckers/gzdoom/archive/g4.7.0.tar.gz -> gzdoom-4.7.0.tar.gz non-free? ( https://github.com/nashmuhandes/WidePix/archive/d458411db4795dfd1420cf1c6456f6d2999b3bad.tar.gz -> widepix-d458411.tar.gz ) -_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=a49aa50acf94a425e332237616e34977 diff --git a/metadata/md5-cache/games-fps/prboom-plus-2.6 b/metadata/md5-cache/games-fps/prboom-plus-2.6 deleted file mode 100644 index 98e063d683cc..000000000000 --- a/metadata/md5-cache/games-fps/prboom-plus-2.6 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=media-libs/libsdl2[opengl?,joystick,sound,video] dumb? ( media-libs/dumb:= ) fluidsynth? ( media-sound/fluidsynth:= ) mad? ( media-libs/libmad ) net? ( media-libs/sdl2-net ) pcre? ( dev-libs/libpcre:3 ) portmidi? ( media-libs/portmidi ) sdl2-image? ( media-libs/sdl2-image ) sdl2-mixer? ( media-libs/sdl2-mixer[midi] ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=An enhanced clone of the classic first-person shooter Doom -EAPI=7 -HOMEPAGE=https://github.com/coelckers/prboom-plus/ -IUSE=dumb fluidsynth mad net +opengl +pcre portmidi sdl2-image +sdl2-mixer server vorbis zlib -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ GPL-3+ BSD BSD-2 BSD-with-disclosure CC-BY-3.0 CC0-1.0 LGPL-2.1+ MIT public-domain -RDEPEND=media-libs/libsdl2[opengl?,joystick,sound,video] dumb? ( media-libs/dumb:= ) fluidsynth? ( media-sound/fluidsynth:= ) mad? ( media-libs/libmad ) net? ( media-libs/sdl2-net ) pcre? ( dev-libs/libpcre:3 ) portmidi? ( media-libs/portmidi ) sdl2-image? ( media-libs/sdl2-image ) sdl2-mixer? ( media-libs/sdl2-mixer[midi] ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) -REQUIRED_USE=server? ( net ) -SLOT=0 -SRC_URI=http://deb.debian.org/debian/pool/main/p/prboom-plus/prboom-plus_2.6um.orig.tar.gz -> prboom-plus-2.6.tar.gz -_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=6e2f574fb714511ce85c64423a354d16 diff --git a/metadata/md5-cache/games-fps/redeclipse-1.6.0-r3 b/metadata/md5-cache/games-fps/redeclipse-1.6.0-r3 deleted file mode 100644 index c4cd7f7d127d..000000000000 --- a/metadata/md5-cache/games-fps/redeclipse-1.6.0-r3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install prepare -DEPEND=!dedicated? ( media-libs/freetype:2 media-libs/libsdl2[opengl] media-libs/sdl2-image:0[jpeg,png] media-libs/sdl2-mixer:0[mp3,vorbis] virtual/opengl x11-libs/libX11 ) >=net-libs/enet-1.3.9:= sys-libs/zlib -DESCRIPTION=First-person ego-shooter, built as a total conversion of Cube Engine 2 -EAPI=6 -HOMEPAGE=https://www.redeclipse.net -IUSE=dedicated -KEYWORDS=~amd64 ~x86 -LICENSE=HPND ZLIB CC-BY-SA-3.0 -RDEPEND=!dedicated? ( media-libs/freetype:2 media-libs/libsdl2[opengl] media-libs/sdl2-image:0[jpeg,png] media-libs/sdl2-mixer:0[mp3,vorbis] virtual/opengl x11-libs/libX11 ) >=net-libs/enet-1.3.9:= sys-libs/zlib -SLOT=0 -SRC_URI=https://github.com/red-eclipse/base/releases/download/v1.6.0/redeclipse_1.6.0_nix.tar.bz2 -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 -_md5_=239164288e69451c7ed016a5c12507c3 diff --git a/metadata/md5-cache/games-fps/yamagi-quake2-7.45 b/metadata/md5-cache/games-fps/yamagi-quake2-7.45 deleted file mode 100644 index 1bb2c4a0e8e9..000000000000 --- a/metadata/md5-cache/games-fps/yamagi-quake2-7.45 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst prepare -DEPEND=client? ( media-libs/libsdl2[video] !openal? ( media-libs/libsdl2[sound] ) opengl? ( media-libs/libsdl2[opengl] virtual/opengl ) ) -DESCRIPTION=Quake 2 engine focused on single player -EAPI=7 -HOMEPAGE=https://www.yamagi.org/quake2/ -IUSE=+client ctf dedicated openal +opengl rogue softrender xatrix -KEYWORDS=~amd64 ~arm64 ~x86 -LICENSE=GPL-2 -RDEPEND=client? ( media-libs/libsdl2[video] !openal? ( media-libs/libsdl2[sound] ) opengl? ( media-libs/libsdl2[opengl] virtual/opengl ) ) client? ( openal? ( media-libs/openal ) ) -REQUIRED_USE=|| ( client dedicated ) client? ( || ( opengl softrender ) ) -SLOT=0 -SRC_URI=https://deponie.yamagi.org/quake2/quake2-7.45.tar.xz ctf? ( https://deponie.yamagi.org/quake2/quake2-ctf-1.07.tar.xz ) rogue? ( https://deponie.yamagi.org/quake2/quake2-rogue-2.07.tar.xz ) xatrix? ( https://deponie.yamagi.org/quake2/quake2-xatrix-2.08.tar.xz ) -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=3ba8f76f91509696877a0d74ccc1a08b diff --git a/metadata/md5-cache/games-misc/Manifest.gz b/metadata/md5-cache/games-misc/Manifest.gz index bd453aae9fe3..6f6233646d3b 100644 Binary files a/metadata/md5-cache/games-misc/Manifest.gz and b/metadata/md5-cache/games-misc/Manifest.gz differ diff --git a/metadata/md5-cache/games-misc/funny-manpages-1.3_rc5-r1 b/metadata/md5-cache/games-misc/funny-manpages-1.3_rc5-r1 deleted file mode 100644 index 430e3fb036f0..000000000000 --- a/metadata/md5-cache/games-misc/funny-manpages-1.3_rc5-r1 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=install prepare -DESCRIPTION=Funny manpages collected from various sources -EAPI=7 -HOMEPAGE=https://www.debian.org/ -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~m68k ~mips ~ppc64 ~s390 ~x86 -LICENSE=freedist -RDEPEND=virtual/man -SLOT=0 -SRC_URI=mirror://debian/pool/main/f/funny-manpages/funny-manpages_1.3.orig.tar.gz mirror://debian/pool/main/f/funny-manpages/funny-manpages_1.3-5.diff.gz -_md5_=271fb25a04cb7f208784f2e9ce3defc0 diff --git a/metadata/md5-cache/games-misc/opengfx-0.6.1 b/metadata/md5-cache/games-misc/opengfx-0.6.1 deleted file mode 100644 index cdcc05c4ce40..000000000000 --- a/metadata/md5-cache/games-misc/opengfx-0.6.1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile install prepare setup test -DEPEND=games-util/grfcodec games-util/nml || ( dev-lang/python:3.9 dev-lang/python:3.8 ) -DESCRIPTION=OpenGFX data files for OpenTTD -EAPI=7 -HOMEPAGE=https://wiki.openttd.org/en/Basesets/OpenGFX https://github.com/OpenTTD/OpenGFX -KEYWORDS=~amd64 ~arm ~arm64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://cdn.openttd.org/opengfx-releases/0.6.1/opengfx-0.6.1-source.tar.xz -_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-any-r1 13f6d423c5c5bc519a9b552654cc745f python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=c9e6a8a79241bba719011285424517d7 diff --git a/metadata/md5-cache/games-roguelike/Manifest.gz b/metadata/md5-cache/games-roguelike/Manifest.gz index 183142312293..ae0afd5c63f2 100644 Binary files a/metadata/md5-cache/games-roguelike/Manifest.gz and b/metadata/md5-cache/games-roguelike/Manifest.gz differ diff --git a/metadata/md5-cache/games-roguelike/angband-4.2.2-r2 b/metadata/md5-cache/games-roguelike/angband-4.2.2-r2 deleted file mode 100644 index 86991dd211cc..000000000000 --- a/metadata/md5-cache/games-roguelike/angband-4.2.2-r2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=configure install postinst postrm prepare -DEPEND=X? ( media-fonts/font-misc-misc x11-libs/libX11 ) ncurses? ( sys-libs/ncurses:=[unicode(+)] ) sdl? ( media-libs/libsdl2[video,X] media-libs/sdl2-image[png] media-libs/sdl2-ttf sound? ( media-libs/libsdl2[sound] media-libs/sdl2-mixer[mp3] ) ) -DESCRIPTION=A roguelike dungeon exploration game based on the books of J.R.R. Tolkien -EAPI=7 -HOMEPAGE=https://rephial.org/ -IUSE=+ncurses sdl sound +X -KEYWORDS=~amd64 ~riscv ~x86 -LICENSE=GPL-2 -RDEPEND=X? ( media-fonts/font-misc-misc x11-libs/libX11 ) ncurses? ( sys-libs/ncurses:=[unicode(+)] ) sdl? ( media-libs/libsdl2[video,X] media-libs/sdl2-image[png] media-libs/sdl2-ttf sound? ( media-libs/libsdl2[sound] media-libs/sdl2-mixer[mp3] ) ) -REQUIRED_USE=sound? ( sdl ) || ( X ncurses ) -SLOT=0 -SRC_URI=https://github.com/angband/angband/archive/refs/tags/4.2.2.tar.gz -> angband-4.2.2.tar.gz https://dev.gentoo.org/~steils/distfiles/angband-4.2.2-man.tar.gz -_eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf desktop c0d27bf73aa08ca05b663dbd31fbef28 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=04c8a326ba793ba2191074026012639a diff --git a/metadata/md5-cache/games-simulation/Manifest.gz b/metadata/md5-cache/games-simulation/Manifest.gz index d5babe1a3289..dc926388a82a 100644 Binary files a/metadata/md5-cache/games-simulation/Manifest.gz and b/metadata/md5-cache/games-simulation/Manifest.gz differ diff --git a/metadata/md5-cache/games-simulation/corsix-th-0.64-r100 b/metadata/md5-cache/games-simulation/corsix-th-0.64-r100 deleted file mode 100644 index 8a9f2ab2a3cd..000000000000 --- a/metadata/md5-cache/games-simulation/corsix-th-0.64-r100 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig doc? ( app-doc/doxygen[dot] lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) ) dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-1? ( >=dev-lua/luafilesystem-1.5[lua_targets_lua5-1(-)] >=dev-lua/lpeg-0.9[lua_targets_lua5-1(-)] >=dev-lua/luasocket-3.0_rc1-r4[lua_targets_lua5-1(-)] ) lua_single_target_lua5-3? ( >=dev-lua/luafilesystem-1.5[lua_targets_lua5-3(-)] >=dev-lua/lpeg-0.9[lua_targets_lua5-3(-)] >=dev-lua/luasocket-3.0_rc1-r4[lua_targets_lua5-3(-)] ) media-libs/libsdl2[opengl,video] sound? ( media-libs/sdl2-mixer[midi?] ) truetype? ( >=media-libs/freetype-2.5.3:2 ) videos? ( >=media-video/ffmpeg-2.2.3:0= ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Open source clone of Theme Hospital -EAPI=7 -HOMEPAGE=https://corsixth.com -IUSE=doc +midi +sound +truetype +videos lua_single_target_lua5-1 lua_single_target_lua5-3 -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=MIT -RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-1? ( >=dev-lua/luafilesystem-1.5[lua_targets_lua5-1(-)] >=dev-lua/lpeg-0.9[lua_targets_lua5-1(-)] >=dev-lua/luasocket-3.0_rc1-r4[lua_targets_lua5-1(-)] ) lua_single_target_lua5-3? ( >=dev-lua/luafilesystem-1.5[lua_targets_lua5-3(-)] >=dev-lua/lpeg-0.9[lua_targets_lua5-3(-)] >=dev-lua/luasocket-3.0_rc1-r4[lua_targets_lua5-3(-)] ) media-libs/libsdl2[opengl,video] sound? ( media-libs/sdl2-mixer[midi?] ) truetype? ( >=media-libs/freetype-2.5.3:2 ) videos? ( >=media-video/ffmpeg-2.2.3:0= ) -REQUIRED_USE=^^ ( lua_single_target_lua5-1 lua_single_target_lua5-3 ) -SLOT=0 -SRC_URI=https://github.com/CorsixTH/CorsixTH/archive/v0.64.tar.gz -> corsix-th-0.64.tar.gz -_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 lua-single ba92a0c9d413e015c6625cdb0b9aaf99 lua-utils 7b7cd623ac8b9dd4a7a6ee27219cada6 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=d77ac0a852445b6a101840dd05c2ac73 diff --git a/metadata/md5-cache/games-util/Manifest.gz b/metadata/md5-cache/games-util/Manifest.gz index a83450b3e4fb..67ac94a203d2 100644 Binary files a/metadata/md5-cache/games-util/Manifest.gz and b/metadata/md5-cache/games-util/Manifest.gz differ diff --git a/metadata/md5-cache/games-util/acc-1.57 b/metadata/md5-cache/games-util/acc-1.57 deleted file mode 100644 index 1ccb1142e6a1..000000000000 --- a/metadata/md5-cache/games-util/acc-1.57 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=configure install -DESCRIPTION=ACS script compiler for use with ZDoom and Hexen -EAPI=7 -HOMEPAGE=https://zdoom.org/wiki/ACC -KEYWORDS=~amd64 -LICENSE=Activision -RESTRICT=bindist mirror -SLOT=0 -SRC_URI=https://github.com/rheit/acc/archive/1.57.tar.gz -> acc-1.57.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=de2beb7aa963e52e39a93a805688d46d diff --git a/metadata/md5-cache/games-util/lgogdownloader-3.7-r1 b/metadata/md5-cache/games-util/lgogdownloader-3.7-r1 deleted file mode 100644 index 4358e65fa3e6..000000000000 --- a/metadata/md5-cache/games-util/lgogdownloader-3.7-r1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=sys-apps/help2man virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=app-crypt/rhash-1.3.3-r2:0= dev-cpp/htmlcxx:0= dev-libs/boost:0=[zlib] >=dev-libs/jsoncpp-1.7:0= dev-libs/tinyxml2:0= >=net-misc/curl-7.32:0=[ssl] gui? ( dev-qt/qtwebengine:5=[widgets] ) -DESCRIPTION=Unofficial GOG.com downloader for Linux -EAPI=7 -HOMEPAGE=https://sites.google.com/site/gogdownloader/ -IUSE=gui -KEYWORDS=~amd64 ~x86 -LICENSE=WTFPL-2 -RDEPEND=>=app-crypt/rhash-1.3.3-r2:0= dev-cpp/htmlcxx:0= dev-libs/boost:0=[zlib] >=dev-libs/jsoncpp-1.7:0= dev-libs/tinyxml2:0= >=net-misc/curl-7.32:0=[ssl] gui? ( dev-qt/qtwebengine:5=[widgets] ) -SLOT=0 -SRC_URI=https://sites.google.com/site/gogdownloader/lgogdownloader-3.7.tar.gz -_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=4aee7ac69c4e79db2fabf7a4b3207d8f diff --git a/metadata/md5-cache/games-util/lutris-0.5.8.3 b/metadata/md5-cache/games-util/lutris-0.5.8.3 deleted file mode 100644 index 6bb61627e7b1..000000000000 --- a/metadata/md5-cache/games-util/lutris-0.5.8.3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( python_single_target_python3_8? ( dev-python/nose[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/nose[python_targets_python3_9(-)] ) ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite,threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite,threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_8? ( >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/setuptools-42.0.2[python_targets_python3_9(-)] ) test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=An open source gaming platform for GNU/Linux -EAPI=7 -HOMEPAGE=https://lutris.net/ -IUSE=python_single_target_python3_8 python_single_target_python3_9 test -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=app-arch/cabextract app-arch/p7zip app-arch/unzip python_single_target_python3_8? ( dev-python/dbus-python[python_targets_python3_8(-)] dev-python/pillow[python_targets_python3_8(-)] dev-python/pygobject:3[python_targets_python3_8(-)] dev-python/python-evdev[python_targets_python3_8(-)] dev-python/python-magic[python_targets_python3_8(-)] dev-python/pyyaml[python_targets_python3_8(-)] dev-python/requests[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/dbus-python[python_targets_python3_9(-)] dev-python/pillow[python_targets_python3_9(-)] dev-python/pygobject:3[python_targets_python3_9(-)] dev-python/python-evdev[python_targets_python3_9(-)] dev-python/python-magic[python_targets_python3_9(-)] dev-python/pyyaml[python_targets_python3_9(-)] dev-python/requests[python_targets_python3_9(-)] ) gnome-base/gnome-desktop:3[introspection] media-sound/fluid-soundfont net-libs/libsoup net-libs/webkit-gtk:4[introspection] x11-apps/mesa-progs x11-apps/xgamma x11-apps/xrandr x11-libs/gtk+:3[introspection] x11-libs/libnotify[introspection] python_single_target_python3_8? ( dev-lang/python:3.8[sqlite,threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite,threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) -REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://lutris.net/releases/lutris_0.5.8.3.tar.xz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx fa024aa649b6bd544144bf94893d402c xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=653413a805644baf8ca63bb59e88e789 diff --git a/metadata/md5-cache/games-util/sc-controller-0.4.8.1 b/metadata/md5-cache/games-util/sc-controller-0.4.8.1 deleted file mode 100644 index a50b02654dcd..000000000000 --- a/metadata/md5-cache/games-util/sc-controller-0.4.8.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=User-mode driver and GTK-based GUI for Steam Controllers and others -EAPI=7 -HOMEPAGE=https://github.com/Ryochan7/sc-controller/ -IUSE=+udev python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 CC0-1.0 -RDEPEND=python_single_target_python3_8? ( dev-python/pygobject[python_targets_python3_8(-),cairo] dev-python/pylibacl[python_targets_python3_8(-)] dev-python/python-evdev[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pygobject[python_targets_python3_9(-),cairo] dev-python/pylibacl[python_targets_python3_9(-)] dev-python/python-evdev[python_targets_python3_9(-)] ) gnome-base/librsvg x11-libs/gtk+:3 udev? ( games-util/game-device-udev-rules ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) -REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) -SLOT=0 -SRC_URI=https://github.com/Ryochan7/sc-controller/archive/v0.4.8.1.tar.gz -> sc-controller-0.4.8.1.tar.gz -_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=870c0cdcf74490c0d0fdf5b4daa118d7 diff --git a/metadata/md5-cache/gnome-extra/Manifest.gz b/metadata/md5-cache/gnome-extra/Manifest.gz index b2ba186f14df..8482cedff990 100644 Binary files a/metadata/md5-cache/gnome-extra/Manifest.gz and b/metadata/md5-cache/gnome-extra/Manifest.gz differ diff --git a/metadata/md5-cache/gnome-extra/libgsf-1.14.48 b/metadata/md5-cache/gnome-extra/libgsf-1.14.48 new file mode 100644 index 000000000000..f446e2f269d0 --- /dev/null +++ b/metadata/md5-cache/gnome-extra/libgsf-1.14.48 @@ -0,0 +1,14 @@ +BDEPEND=>=app-portage/elt-patches-20170815 app-arch/xz-utils +DEFINED_PHASES=compile configure install postinst postrm preinst prepare +DEPEND=>=dev-libs/glib-2.36:2 >=dev-libs/libxml2-2.4.16:2 sys-libs/zlib bzip2? ( app-arch/bzip2 ) gtk? ( x11-libs/gdk-pixbuf:2 virtual/imagemagick-tools ) introspection? ( >=dev-libs/gobject-introspection-1:= ) >=dev-util/gtk-doc-am-1.12 dev-libs/gobject-introspection-common >=sys-devel/gettext-0.19.6 virtual/pkgconfig +DESCRIPTION=The GNOME Structured File Library +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/libgsf +IUSE=bzip2 gtk +introspection +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 LGPL-2.1 +RDEPEND=>=dev-libs/glib-2.36:2 >=dev-libs/libxml2-2.4.16:2 sys-libs/zlib bzip2? ( app-arch/bzip2 ) gtk? ( x11-libs/gdk-pixbuf:2 virtual/imagemagick-tools ) introspection? ( >=dev-libs/gobject-introspection-1:= ) +SLOT=0/114 +SRC_URI=mirror://gnome/sources/libgsf/1.14/libgsf-1.14.48.tar.xz +_eclasses_=gnome.org b5c48cddff1da36a205d924d722b28c9 gnome2 397207e07bdf58b07ce295d0bc1049fe gnome2-utils 239e7afa214b50012f83b8bb61de7555 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 +_md5_=bb4a99049818c854e0d0f738ce8cf0bc diff --git a/metadata/md5-cache/gui-libs/Manifest.gz b/metadata/md5-cache/gui-libs/Manifest.gz index b1ac6f57e036..c9d6cd9ab685 100644 Binary files a/metadata/md5-cache/gui-libs/Manifest.gz and b/metadata/md5-cache/gui-libs/Manifest.gz differ diff --git a/metadata/md5-cache/gui-libs/egl-wayland-1.1.9 b/metadata/md5-cache/gui-libs/egl-wayland-1.1.9 deleted file mode 100644 index 521365420217..000000000000 --- a/metadata/md5-cache/gui-libs/egl-wayland-1.1.9 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/wayland-scanner >=dev-util/meson-0.58.2-r1 >=dev-util/ninja-1.8.2 dev-util/meson-format-array -DEFINED_PHASES=compile configure install postinst test -DEPEND=dev-libs/wayland !=media-libs/libglvnd-1.3.4 -DESCRIPTION=EGLStream-based Wayland external platform -EAPI=8 -HOMEPAGE=https://github.com/NVIDIA/egl-wayland -KEYWORDS=amd64 -LICENSE=MIT -RDEPEND=dev-libs/wayland ! egl-wayland-1.1.9.tar.gz -_eclasses_=meson 9f3e84959ae1d60e19bc91f212774dcc multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=1ab792c111b24132f06946a14309dfaa diff --git a/metadata/md5-cache/gui-wm/Manifest.gz b/metadata/md5-cache/gui-wm/Manifest.gz index 323378175fd5..1ff84a571164 100644 Binary files a/metadata/md5-cache/gui-wm/Manifest.gz and b/metadata/md5-cache/gui-wm/Manifest.gz differ diff --git a/metadata/md5-cache/gui-wm/hikari-2.2.2-r1 b/metadata/md5-cache/gui-wm/hikari-2.2.2-r1 deleted file mode 100644 index dd0bd12045f4..000000000000 --- a/metadata/md5-cache/gui-wm/hikari-2.2.2-r1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=sys-devel/bmake virtual/pkgconfig -DEFINED_PHASES=compile install setup -DEPEND=dev-libs/libinput:= dev-libs/libucl >=gui-libs/wlroots-0.11.0[X?] media-libs/libglvnd x11-libs/cairo[X?,svg] x11-libs/libxkbcommon[X?] x11-libs/pango[X?] x11-libs/pixman sys-libs/pam dev-libs/wayland-protocols -DESCRIPTION=Wayland compositor inspired by CWM -EAPI=7 -HOMEPAGE=https://hikari.acmelabs.space/ -IUSE=gamma layershell screencopy suid virtual-io +X -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=dev-libs/libinput:= dev-libs/libucl >=gui-libs/wlroots-0.11.0[X?] media-libs/libglvnd x11-libs/cairo[X?,svg] x11-libs/libxkbcommon[X?] x11-libs/pango[X?] x11-libs/pixman sys-libs/pam x11-misc/xkeyboard-config -SLOT=0 -SRC_URI=https://hikari.acmelabs.space/releases/hikari-2.2.2.tar.gz -_eclasses_=multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ef5762ec931d31d3d0101f111754a884 diff --git a/metadata/md5-cache/media-gfx/Manifest.gz b/metadata/md5-cache/media-gfx/Manifest.gz index 554e0de27af1..1c583630229c 100644 Binary files a/metadata/md5-cache/media-gfx/Manifest.gz and b/metadata/md5-cache/media-gfx/Manifest.gz differ diff --git a/metadata/md5-cache/media-gfx/cropgui-0.6 b/metadata/md5-cache/media-gfx/cropgui-0.6 new file mode 100644 index 000000000000..5ac3731a3c39 --- /dev/null +++ b/metadata/md5-cache/media-gfx/cropgui-0.6 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst postrm +DEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +DESCRIPTION=GUI for lossless cropping of jpeg images +EAPI=7 +HOMEPAGE=https://emergent.unpythonic.net/01248401946 +IUSE=python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pillow[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pygobject:3[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +SLOT=0 +SRC_URI=https://github.com/jepler/cropgui/archive/v0.6.tar.gz -> cropgui-0.6.tar.gz +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 +_md5_=68d14e65fa766cc554107fda3c01a00d diff --git a/metadata/md5-cache/media-gfx/darktable-3.6.1-r2 b/metadata/md5-cache/media-gfx/darktable-3.6.1-r2 index 4b244aa78561..51ec3b3337c4 100644 --- a/metadata/md5-cache/media-gfx/darktable-3.6.1-r2 +++ b/metadata/md5-cache/media-gfx/darktable-3.6.1-r2 @@ -11,6 +11,6 @@ RDEPEND=dev-db/sqlite:3 dev-libs/json-glib dev-libs/libxml2:2 >=dev-libs/pugixml REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-3 ) ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/darktable-org/darktable/releases/download/release-3.6.1/darktable-3.6.1.tar.xz doc? ( https://docs.darktable.org/usermanual/3.6/darktable_user_manual.pdf -> darktable-usermanual-3.6.pdf ) +SRC_URI=https://github.com/darktable-org/darktable/releases/download/release-3.6.1/darktable-3.6.1.tar.xz doc? ( https://docs.darktable.org/usermanual/3.6/en/darktable_user_manual.pdf -> darktable-usermanual-3.6.pdf ) _eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 flag-o-matic d5e1306543bc457213f68bb18f830d14 lua-single ba92a0c9d413e015c6625cdb0b9aaf99 lua-utils 7b7cd623ac8b9dd4a7a6ee27219cada6 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=6c24ba7a569101b504b78b846906c4f2 +_md5_=c22e1f3a71102c8ac0ba95b3f7b26408 diff --git a/metadata/md5-cache/media-gfx/darktable-3.6.1-r3 b/metadata/md5-cache/media-gfx/darktable-3.6.1-r3 index f1d83073a15d..593d73bc97e9 100644 --- a/metadata/md5-cache/media-gfx/darktable-3.6.1-r3 +++ b/metadata/md5-cache/media-gfx/darktable-3.6.1-r3 @@ -11,6 +11,6 @@ RDEPEND=dev-db/sqlite:3 dev-libs/json-glib dev-libs/libxml2:2 >=dev-libs/pugixml REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-3 ) ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/darktable-org/darktable/releases/download/release-3.6.1/darktable-3.6.1.tar.xz doc? ( https://docs.darktable.org/usermanual/3.6/darktable_user_manual.pdf -> darktable-usermanual-3.6.pdf ) +SRC_URI=https://github.com/darktable-org/darktable/releases/download/release-3.6.1/darktable-3.6.1.tar.xz doc? ( https://docs.darktable.org/usermanual/3.6/en/darktable_user_manual.pdf -> darktable-usermanual-3.6.pdf ) _eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 flag-o-matic d5e1306543bc457213f68bb18f830d14 lua-single ba92a0c9d413e015c6625cdb0b9aaf99 lua-utils 7b7cd623ac8b9dd4a7a6ee27219cada6 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=26a638c9dcde3efb5a7d1d5f694bfa25 +_md5_=0a0379ca19e287b54c76e71c58c3b614 diff --git a/metadata/md5-cache/media-gfx/darktable-3.8.0 b/metadata/md5-cache/media-gfx/darktable-3.8.0-r1 similarity index 66% rename from metadata/md5-cache/media-gfx/darktable-3.8.0 rename to metadata/md5-cache/media-gfx/darktable-3.8.0-r1 index 4388532b89dc..4b3507072e1a 100644 --- a/metadata/md5-cache/media-gfx/darktable-3.8.0 +++ b/metadata/md5-cache/media-gfx/darktable-3.8.0-r1 @@ -1,16 +1,16 @@ BDEPEND=dev-util/intltool virtual/pkgconfig nls? ( sys-devel/gettext ) test? ( >=dev-python/jsonschema-3.2.0 ) dev-util/ninja >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test -DEPEND=dev-db/sqlite:3 dev-libs/json-glib dev-libs/libxml2:2 >=dev-libs/pugixml-1.8:0= gnome-base/librsvg:2 >=media-gfx/exiv2-0.25-r2:0=[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3:0= media-libs/libpng:0= media-libs/tiff:0 net-libs/libsoup:2.4 net-misc/curl sys-libs/zlib:= virtual/jpeg:0 x11-libs/cairo >=x11-libs/gtk+-3.22:3 x11-libs/pango avif? ( >=media-libs/libavif-0.8.2:= ) colord? ( x11-libs/colord-gtk:0= ) cups? ( net-print/cups ) flickr? ( media-libs/flickcurl ) geolocation? ( >=sci-geosciences/osm-gps-map-1.1.0 ) gmic? ( media-gfx/gmic ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) gphoto2? ( media-libs/libgphoto2:= ) graphicsmagick? ( media-gfx/graphicsmagick ) jpeg2k? ( media-libs/openjpeg:2= ) lua? ( lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) ) opencl? ( virtual/opencl ) openexr? ( media-libs/openexr:= ) webp? ( media-libs/libwebp:0= ) +DEPEND=dev-db/sqlite:3 dev-libs/json-glib dev-libs/libxml2:2 >=dev-libs/pugixml-1.8:0= gnome-base/librsvg:2 >=media-gfx/exiv2-0.25-r2:0=[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3:0= media-libs/libpng:0= media-libs/tiff:0 net-libs/libsoup:2.4 net-misc/curl sys-libs/zlib:= virtual/jpeg:0 x11-libs/cairo >=x11-libs/gtk+-3.22:3 x11-libs/pango avif? ( >=media-libs/libavif-0.8.2:= ) colord? ( x11-libs/colord-gtk:0= ) cups? ( net-print/cups ) flickr? ( media-libs/flickcurl ) geolocation? ( >=sci-geosciences/osm-gps-map-1.1.0 ) gmic? ( media-gfx/gmic ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) gphoto2? ( media-libs/libgphoto2:= ) graphicsmagick? ( media-gfx/graphicsmagick ) jpeg2k? ( media-libs/openjpeg:2= ) lua? ( lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) ) opencl? ( virtual/opencl ) openexr? ( media-libs/openexr:= ) webp? ( media-libs/libwebp:0= ) DESCRIPTION=A virtual lighttable and darkroom for photographers EAPI=8 HOMEPAGE=https://www.darktable.org/ -IUSE=avif colord cups cpu_flags_x86_sse3 doc flickr geolocation gmic gnome-keyring gphoto2 graphicsmagick jpeg2k kwallet lto lua nls opencl openmp openexr test tools webp l10n_de l10n_eo l10n_es l10n_fi l10n_fr l10n_he l10n_hu l10n_it l10n_ja l10n_pl l10n_pt-BR l10n_sl l10n_uk l10n_zh-CN +lua_single_target_lua5-3 +IUSE=avif colord cpu_flags_x86_avx cpu_flags_x86_sse3 cups doc flickr geolocation gmic gnome-keyring gphoto2 graphicsmagick jpeg2k kwallet lto lua nls opencl openmp openexr test tools webp l10n_de l10n_eo l10n_es l10n_fi l10n_fr l10n_he l10n_hu l10n_it l10n_ja l10n_pl l10n_pt-BR l10n_sl l10n_uk l10n_zh-CN +lua_single_target_lua5-4 KEYWORDS=~amd64 ~arm64 -x86 LICENSE=GPL-3 CC-BY-3.0 -RDEPEND=dev-db/sqlite:3 dev-libs/json-glib dev-libs/libxml2:2 >=dev-libs/pugixml-1.8:0= gnome-base/librsvg:2 >=media-gfx/exiv2-0.25-r2:0=[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3:0= media-libs/libpng:0= media-libs/tiff:0 net-libs/libsoup:2.4 net-misc/curl sys-libs/zlib:= virtual/jpeg:0 x11-libs/cairo >=x11-libs/gtk+-3.22:3 x11-libs/pango avif? ( >=media-libs/libavif-0.8.2:= ) colord? ( x11-libs/colord-gtk:0= ) cups? ( net-print/cups ) flickr? ( media-libs/flickcurl ) geolocation? ( >=sci-geosciences/osm-gps-map-1.1.0 ) gmic? ( media-gfx/gmic ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) gphoto2? ( media-libs/libgphoto2:= ) graphicsmagick? ( media-gfx/graphicsmagick ) jpeg2k? ( media-libs/openjpeg:2= ) lua? ( lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) ) opencl? ( virtual/opencl ) openexr? ( media-libs/openexr:= ) webp? ( media-libs/libwebp:0= ) kwallet? ( >=kde-frameworks/kwallet-5.34.0-r1 ) -REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-3 ) ) +RDEPEND=dev-db/sqlite:3 dev-libs/json-glib dev-libs/libxml2:2 >=dev-libs/pugixml-1.8:0= gnome-base/librsvg:2 >=media-gfx/exiv2-0.25-r2:0=[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3:0= media-libs/libpng:0= media-libs/tiff:0 net-libs/libsoup:2.4 net-misc/curl sys-libs/zlib:= virtual/jpeg:0 x11-libs/cairo >=x11-libs/gtk+-3.22:3 x11-libs/pango avif? ( >=media-libs/libavif-0.8.2:= ) colord? ( x11-libs/colord-gtk:0= ) cups? ( net-print/cups ) flickr? ( media-libs/flickcurl ) geolocation? ( >=sci-geosciences/osm-gps-map-1.1.0 ) gmic? ( media-gfx/gmic ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) gphoto2? ( media-libs/libgphoto2:= ) graphicsmagick? ( media-gfx/graphicsmagick ) jpeg2k? ( media-libs/openjpeg:2= ) lua? ( lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) ) opencl? ( virtual/opencl ) openexr? ( media-libs/openexr:= ) webp? ( media-libs/libwebp:0= ) kwallet? ( >=kde-frameworks/kwallet-5.34.0-r1 ) +REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-4 ) ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/darktable-org/darktable/releases/download/release-3.8.0/darktable-3.8.0.tar.xz doc? ( https://docs.darktable.org/usermanual/3.6/darktable_user_manual.pdf -> darktable-usermanual-3.6.pdf ) +SRC_URI=https://github.com/darktable-org/darktable/releases/download/release-3.8.0/darktable-3.8.0.tar.xz doc? ( https://docs.darktable.org/usermanual/3.8/en/darktable_user_manual.pdf -> darktable-usermanual-3.8.en.pdf l10n_de? ( https://docs.darktable.org/usermanual/3.8/de/darktable_user_manual.pdf -> darktable-usermanual-3.8.de.pdf ) l10n_fr? ( https://docs.darktable.org/usermanual/3.8/fr/darktable_user_manual.pdf -> darktable-usermanual-3.8.fr.pdf ) l10n_pt-BR? ( https://docs.darktable.org/usermanual/3.8/pt_br/darktable_user_manual.pdf -> darktable-usermanual-3.8.pt_br.pdf ) l10n_uk? ( https://docs.darktable.org/usermanual/3.8/uk/darktable_user_manual.pdf -> darktable-usermanual-3.8.uk.pdf ) ) _eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 flag-o-matic d5e1306543bc457213f68bb18f830d14 lua-single ba92a0c9d413e015c6625cdb0b9aaf99 lua-utils 7b7cd623ac8b9dd4a7a6ee27219cada6 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=bf430d699e33276d987556f7289a07ae +_md5_=1e0ce800e2043d601a52448541913a12 diff --git a/metadata/md5-cache/media-gfx/gscan2pdf-2.12.4 b/metadata/md5-cache/media-gfx/gscan2pdf-2.12.4 index 6735a12960b6..9a23e2474d48 100644 --- a/metadata/md5-cache/media-gfx/gscan2pdf-2.12.4 +++ b/metadata/md5-cache/media-gfx/gscan2pdf-2.12.4 @@ -5,11 +5,11 @@ DESCRIPTION=Scan documents, perform OCR, produce PDFs and DjVus EAPI=8 HOMEPAGE=http://gscan2pdf.sourceforge.net/ IUSE=test test test -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=dev-perl/Config-General dev-perl/Data-UUID dev-perl/Date-Calc dev-perl/Filesys-Df dev-perl/glib-perl dev-perl/GooCanvas2 dev-perl/Gtk3 >=dev-perl/Gtk3-ImageView-10.0.0 dev-perl/Gtk3-SimpleList dev-perl/HTML-Parser dev-perl/Image-Sane dev-perl/List-MoreUtils dev-perl/Locale-Codes dev-perl/Locale-gettext dev-perl/Log-Log4perl >=dev-perl/PDF-Builder-3.23.0 dev-perl/Proc-ProcessTable dev-perl/Readonly dev-perl/Set-IntSpan dev-perl/Try-Tiny virtual/perl-Archive-Tar virtual/perl-Carp virtual/perl-Data-Dumper virtual/perl-File-Temp virtual/perl-Getopt-Long virtual/perl-threads virtual/perl-threads-shared media-gfx/imagemagick[png,tiff,perl] media-gfx/sane-backends media-libs/tiff dev-lang/perl:= RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/gscan2pdf/gscan2pdf-2.12.4.tar.xz _eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature 30ce9dec2b8943338c9b015bd32bac6a perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module bd9574a79c5f0a347a9ea3db5ad9ca72 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c virtualx fa024aa649b6bd544144bf94893d402c xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=0203cef84893d8126773f6ec3d20ce0f +_md5_=2ac2f5fc27efad743296b2ec20cab70f diff --git a/metadata/md5-cache/media-gfx/slic3r-1.3.1_pre20200824-r1 b/metadata/md5-cache/media-gfx/slic3r-1.3.1_pre20200824-r1 index 601cc067f103..4025ac7cf2d2 100644 --- a/metadata/md5-cache/media-gfx/slic3r-1.3.1_pre20200824-r1 +++ b/metadata/md5-cache/media-gfx/slic3r-1.3.1_pre20200824-r1 @@ -1,6 +1,6 @@ -BDEPEND=dev-lang/perl +BDEPEND=>=dev-perl/Module-Build-0.380.0 >=dev-perl/Module-Build-WithXSpp-0.140.0 dev-perl/Devel-CheckLib dev-lang/perl DEFINED_PHASES=compile configure install prepare test -DEPEND=!=dev-lang/perl-5.16* >=dev-libs/boost-1.55[threads(+)] dev-perl/Class-XSAccessor dev-perl/Devel-CheckLib dev-perl/Devel-Size >=dev-perl/Encode-Locale-1.50.0 dev-perl/IO-stringy >=dev-perl/Math-PlanePath-53.0.0 >=dev-perl/Moo-1.3.1 dev-perl/XML-SAX-ExpatXS virtual/perl-Carp virtual/perl-Encode virtual/perl-File-Spec virtual/perl-Getopt-Long virtual/perl-parent virtual/perl-Scalar-List-Utils virtual/perl-Test-Simple virtual/perl-Thread-Semaphore >=virtual/perl-threads-1.960.0 virtual/perl-Time-HiRes virtual/perl-Unicode-Normalize virtual/perl-XSLoader gui? ( dev-perl/Class-Accessor dev-perl/Growl-GNTP dev-perl/libwww-perl dev-perl/Module-Pluggable dev-perl/Net-Bonjour dev-perl/Net-DBus dev-perl/OpenGL >=dev-perl/Wx-0.991.800 dev-perl/Wx-GLCanvas >=media-libs/freeglut-3 virtual/perl-Math-Complex >=virtual/perl-Socket-2.16.0 x11-libs/libXmu ) dev-libs/clipper dev-perl/Devel-CheckLib >=dev-perl/ExtUtils-CppGuess-0.70.0 >=dev-perl/ExtUtils-Typemaps-Default-1.50.0 >=dev-perl/ExtUtils-XSpp-0.170.0 >=dev-perl/Module-Build-0.380.0 >=dev-perl/Module-Build-WithXSpp-0.140.0 >=virtual/perl-ExtUtils-MakeMaker-6.800.0 >=virtual/perl-ExtUtils-ParseXS-3.220.0 test? ( virtual/perl-Test-Harness virtual/perl-Test-Simple ) dev-lang/perl +DEPEND=!=dev-lang/perl-5.16* >=dev-libs/boost-1.55[threads(+)] dev-perl/Class-XSAccessor dev-perl/Devel-CheckLib dev-perl/Devel-Size >=dev-perl/Encode-Locale-1.50.0 dev-perl/IO-stringy >=dev-perl/Math-PlanePath-53.0.0 >=dev-perl/Moo-1.3.1 dev-perl/XML-SAX-ExpatXS virtual/perl-Carp virtual/perl-Encode virtual/perl-File-Spec virtual/perl-Getopt-Long virtual/perl-parent virtual/perl-Scalar-List-Utils virtual/perl-Test-Simple virtual/perl-Thread-Semaphore >=virtual/perl-threads-1.960.0 virtual/perl-Time-HiRes virtual/perl-Unicode-Normalize virtual/perl-XSLoader gui? ( dev-perl/Class-Accessor dev-perl/Growl-GNTP dev-perl/libwww-perl dev-perl/Module-Pluggable dev-perl/Net-Bonjour dev-perl/Net-DBus dev-perl/OpenGL >=dev-perl/Wx-0.991.800 dev-perl/Wx-GLCanvas >=media-libs/freeglut-3 virtual/perl-Math-Complex >=virtual/perl-Socket-2.16.0 x11-libs/libXmu ) dev-libs/clipper >=dev-perl/ExtUtils-CppGuess-0.70.0 >=dev-perl/ExtUtils-Typemaps-Default-1.50.0 >=dev-perl/ExtUtils-XSpp-0.170.0 >=virtual/perl-ExtUtils-MakeMaker-6.800.0 >=virtual/perl-ExtUtils-ParseXS-3.220.0 test? ( virtual/perl-Test-Harness virtual/perl-Test-Simple ) dev-lang/perl DESCRIPTION=A mesh slicer to generate G-code for fused-filament-fabrication (3D printers) EAPI=7 HOMEPAGE=https://slic3r.org @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/slic3r/slic3r/archive/92abbc42dfdd5385c1f9c3a450e2f3da835f8b8d.tar.gz -> slic3r-1.3.1_pre20200824.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module bd9574a79c5f0a347a9ea3db5ad9ca72 -_md5_=fe2c6918d4719fb0c27be75b3e9583b3 +_md5_=3b347049e0e66d13b4da2200529fd95c diff --git a/metadata/md5-cache/media-libs/Manifest.gz b/metadata/md5-cache/media-libs/Manifest.gz index a2560e64b585..fe8d221f90ea 100644 Binary files a/metadata/md5-cache/media-libs/Manifest.gz and b/metadata/md5-cache/media-libs/Manifest.gz differ diff --git a/metadata/md5-cache/media-libs/allegro-5.2.6.0 b/metadata/md5-cache/media-libs/allegro-5.2.6.0 deleted file mode 100644 index 29abc9cfbe84..000000000000 --- a/metadata/md5-cache/media-libs/allegro-5.2.6.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare test -DEPEND=alsa? ( >=media-libs/alsa-lib-1.0.27.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dumb? ( >=media-libs/dumb-0.9.3-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(-)?] ) flac? ( >=media-libs/flac-1.2.1-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(-)?] ) gtk? ( >=x11-libs/gtk+-2.24.23:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg? ( >=virtual/jpeg-0-r2: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(-)?] ) openal? ( >=media-libs/openal-1.15.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=virtual/glu-9.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(-)?] >=virtual/opengl-7.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(-)?] ) opus? ( media-libs/opus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) physfs? ( >=dev-games/physfs-2.0.3-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(-)?] ) png? ( >=media-libs/libpng-1.5.18: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(-)?] ) pulseaudio? ( >=media-sound/pulseaudio-2.1-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(-)?] ) truetype? ( >=media-libs/freetype-2.5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( >=media-libs/libvorbis-1.3.3-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(-)?] ) webp? ( media-libs/libwebp: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(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXcursor-1.1.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(-)?] >=x11-libs/libXrandr-1.4.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXxf86vm-1.1.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( >=x11-libs/libXinerama-1.1.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x11-base/xorg-proto -DESCRIPTION=Cross-platform library aimed at video game and multimedia programming -EAPI=7 -HOMEPAGE=https://liballeg.org/ -IUSE=alsa dumb flac gtk jpeg openal opengl opus oss physfs png pulseaudio test truetype vorbis webp X xinerama 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 ~arm64 ppc ppc64 x86 -LICENSE=BSD ZLIB -RDEPEND=alsa? ( >=media-libs/alsa-lib-1.0.27.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dumb? ( >=media-libs/dumb-0.9.3-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(-)?] ) flac? ( >=media-libs/flac-1.2.1-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(-)?] ) gtk? ( >=x11-libs/gtk+-2.24.23:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg? ( >=virtual/jpeg-0-r2: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(-)?] ) openal? ( >=media-libs/openal-1.15.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=virtual/glu-9.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(-)?] >=virtual/opengl-7.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(-)?] ) opus? ( media-libs/opus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) physfs? ( >=dev-games/physfs-2.0.3-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(-)?] ) png? ( >=media-libs/libpng-1.5.18: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(-)?] ) pulseaudio? ( >=media-sound/pulseaudio-2.1-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(-)?] ) truetype? ( >=media-libs/freetype-2.5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( >=media-libs/libvorbis-1.3.3-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(-)?] ) webp? ( media-libs/libwebp: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(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXcursor-1.1.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(-)?] >=x11-libs/libXrandr-1.4.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXxf86vm-1.1.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xinerama? ( >=x11-libs/libXinerama-1.1.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) -REQUIRED_USE=X? ( opengl ) xinerama? ( X ) || ( alsa openal oss pulseaudio ) -RESTRICT=!test? ( test ) -SLOT=5 -SRC_URI=https://github.com/liballeg/allegro5/releases/download/5.2.6.0/allegro-5.2.6.0.tar.gz -_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 cmake-multilib de2335e0bd21535a925d008ee3b98e2a edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 multilib-minimal be5919734a8448dddd49c2b26db45091 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=7cb48bfa720c24a8dfdda67e07b29b51 diff --git a/metadata/md5-cache/media-libs/freeimage-3.18.0-r2 b/metadata/md5-cache/media-libs/freeimage-3.18.0-r2 deleted file mode 100644 index 2b2d99a9f08b..000000000000 --- a/metadata/md5-cache/media-libs/freeimage-3.18.0-r2 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install prepare -DEPEND=sys-libs/zlib jpeg? ( virtual/jpeg:0 ) jpeg2k? ( media-libs/openjpeg:2= ) mng? ( media-libs/libmng:= ) openexr? ( media-libs/openexr:= ) png? ( media-libs/libpng:0= ) raw? ( media-libs/libraw:= ) tiff? ( media-libs/ilmbase:= media-libs/tiff:0 ) webp? ( media-libs/libwebp:= ) -DESCRIPTION=Image library supporting many formats -EAPI=7 -HOMEPAGE=https://freeimage.sourceforge.io/ -IUSE=jpeg jpeg2k mng openexr png raw static-libs tiff webp -KEYWORDS=amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=|| ( GPL-2 FIPL-1.0 ) -RDEPEND=sys-libs/zlib jpeg? ( virtual/jpeg:0 ) jpeg2k? ( media-libs/openjpeg:2= ) mng? ( media-libs/libmng:= ) openexr? ( media-libs/openexr:= ) png? ( media-libs/libpng:0= ) raw? ( media-libs/libraw:= ) tiff? ( media-libs/ilmbase:= media-libs/tiff:0 ) webp? ( media-libs/libwebp:= ) -SLOT=0 -SRC_URI=mirror://sourceforge/freeimage/FreeImage3180.zip mirror://sourceforge/freeimage/FreeImage3180.pdf https://dev.gentoo.org/~juippis/distfiles/tmp/freeimage-3.18.0-unbundling.patch -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ea001834bd2bab407501ce4031651f48 diff --git a/metadata/md5-cache/media-libs/glfw-3.3.4-r3 b/metadata/md5-cache/media-libs/glfw-3.3.4-r3 deleted file mode 100644 index 8d11f4b5c7a9..000000000000 --- a/metadata/md5-cache/media-libs/glfw-3.3.4-r3 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=wayland-only? ( dev-util/wayland-scanner kde-frameworks/extra-cmake-modules ) dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare test -DEPEND=x11-libs/libxkbcommon[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] wayland-only? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/mesa[egl(+),wayland,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !wayland-only? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wayland-only? ( dev-libs/wayland-protocols ) !wayland-only? ( x11-base/xorg-proto x11-libs/libXi[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=Portable OpenGL FrameWork -EAPI=7 -HOMEPAGE=https://www.glfw.org/ -IUSE=wayland-only 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 ~hppa ~ppc64 x86 -LICENSE=ZLIB -RDEPEND=x11-libs/libxkbcommon[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] wayland-only? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/mesa[egl(+),wayland,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !wayland-only? ( virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) -SLOT=0 -SRC_URI=https://github.com/glfw/glfw/archive/3.3.4.tar.gz -> glfw-3.3.4.tar.gz -_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 cmake-multilib de2335e0bd21535a925d008ee3b98e2a edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 multilib-minimal be5919734a8448dddd49c2b26db45091 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=6bb1330373b474e3102cca9aa73bb565 diff --git a/metadata/md5-cache/media-libs/libpulse-15.0 b/metadata/md5-cache/media-libs/libpulse-15.0 index 5bc5a53e7309..d1cd902ba259 100644 --- a/metadata/md5-cache/media-libs/libpulse-15.0 +++ b/metadata/md5-cache/media-libs/libpulse-15.0 @@ -1,15 +1,15 @@ BDEPEND=dev-lang/perl dev-perl/XML-Parser sys-devel/gettext sys-devel/m4 virtual/libiconv virtual/libintl virtual/pkgconfig doc? ( app-doc/doxygen ) >=dev-util/meson-0.58.2-r1 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig virtual/pkgconfig DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=dev-libs/libatomic_ops >=media-libs/libsndfile-1.0.20[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/libc asyncns? ( >=net-libs/libasyncns-0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dbus? ( >=sys-apps/dbus-1.4.12[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) glib? ( >=dev-libs/glib-2.28.0:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk? ( x11-libs/gtk+:3 ) selinux? ( sec-policy/selinux-pulseaudio ) systemd? ( sys-apps/systemd:= ) tcpd? ( sys-apps/tcp-wrappers ) X? ( >=x11-libs/libxcb-1.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) || ( elibc_glibc? ( virtual/libc ) elibc_uclibc? ( virtual/libc ) dev-libs/libpcre:3 ) !=dev-libs/check-0.9.10 ) X? ( x11-base/xorg-proto ) +DEPEND=dev-libs/libatomic_ops >=media-libs/libsndfile-1.0.20[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/libc asyncns? ( >=net-libs/libasyncns-0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dbus? ( >=sys-apps/dbus-1.4.12[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) glib? ( >=dev-libs/glib-2.28.0:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk? ( x11-libs/gtk+:3 ) selinux? ( sec-policy/selinux-pulseaudio ) systemd? ( sys-apps/systemd:= ) tcpd? ( sys-apps/tcp-wrappers ) X? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libxcb-1.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) || ( elibc_glibc? ( virtual/libc ) elibc_uclibc? ( virtual/libc ) dev-libs/libpcre:3 ) !=dev-libs/check-0.9.10 ) X? ( x11-base/xorg-proto ) DESCRIPTION=Libraries for PulseAudio clients EAPI=7 HOMEPAGE=https://www.freedesktop.org/wiki/Software/PulseAudio/ IUSE=+asyncns dbus doc +glib gtk selinux systemd tcpd test X 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 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux LICENSE=LGPL-2.1+ -RDEPEND=dev-libs/libatomic_ops >=media-libs/libsndfile-1.0.20[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/libc asyncns? ( >=net-libs/libasyncns-0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dbus? ( >=sys-apps/dbus-1.4.12[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) glib? ( >=dev-libs/glib-2.28.0:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk? ( x11-libs/gtk+:3 ) selinux? ( sec-policy/selinux-pulseaudio ) systemd? ( sys-apps/systemd:= ) tcpd? ( sys-apps/tcp-wrappers ) X? ( >=x11-libs/libxcb-1.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) || ( elibc_glibc? ( virtual/libc ) elibc_uclibc? ( virtual/libc ) dev-libs/libpcre:3 ) !=media-libs/libsndfile-1.0.20[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/libc asyncns? ( >=net-libs/libasyncns-0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dbus? ( >=sys-apps/dbus-1.4.12[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) glib? ( >=dev-libs/glib-2.28.0:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk? ( x11-libs/gtk+:3 ) selinux? ( sec-policy/selinux-pulseaudio ) systemd? ( sys-apps/systemd:= ) tcpd? ( sys-apps/tcp-wrappers ) X? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libxcb-1.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) || ( elibc_glibc? ( virtual/libc ) elibc_uclibc? ( virtual/libc ) dev-libs/libpcre:3 ) !=dev-util/cmake-3.16.2-r1 virtual/pkgconfig doc? ( python_single_target_python3_8? ( dev-python/sphinx[python_targets_python3_8(-)] dev-python/testresources[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/sphinx[python_targets_python3_9(-)] dev-python/testresources[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/sphinx[python_targets_python3_10(-)] dev-python/testresources[python_targets_python3_10(-)] ) ) dev-util/ninja >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install prepare setup test -DEPEND=dev-cpp/pystring dev-python/pybind11 =dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) ) +DEPEND=dev-cpp/pystring dev-python/pybind11 >=dev-cpp/yaml-cpp-0.7.0:= dev-libs/tinyxml media-libs/ilmbase:= opengl? ( media-libs/lcms:2 =dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) ) DESCRIPTION=A color management framework for visual effects and animation EAPI=7 HOMEPAGE=https://opencolorio.org https://github.com/AcademySoftwareFoundation/OpenColorIO IUSE=cpu_flags_x86_sse2 doc opengl python static-libs test python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 LICENSE=BSD -RDEPEND=dev-cpp/pystring dev-python/pybind11 =dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) ) +RDEPEND=dev-cpp/pystring dev-python/pybind11 >=dev-cpp/yaml-cpp-0.7.0:= dev-libs/tinyxml media-libs/ilmbase:= opengl? ( media-libs/lcms:2 =dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) ) REQUIRED_USE=doc? ( python ) python? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/refs/tags/v2.1.1.tar.gz -> opencolorio-2.1.1.tar.gz _eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=a80ec07fe0ac05324b6fe5618de05e18 +_md5_=24de623041a1ba396dfa7f3f31703f46 diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index 78b2f906d626..34628578ec92 100644 Binary files a/metadata/md5-cache/media-sound/Manifest.gz and b/metadata/md5-cache/media-sound/Manifest.gz differ diff --git a/metadata/md5-cache/media-sound/pulseaudio-15.0-r1 b/metadata/md5-cache/media-sound/pulseaudio-15.0-r2 similarity index 82% rename from metadata/md5-cache/media-sound/pulseaudio-15.0-r1 rename to metadata/md5-cache/media-sound/pulseaudio-15.0-r2 index 6c7ddc5fafbc..7f498bb91158 100644 --- a/metadata/md5-cache/media-sound/pulseaudio-15.0-r1 +++ b/metadata/md5-cache/media-sound/pulseaudio-15.0-r2 @@ -1,6 +1,6 @@ BDEPEND=dev-lang/perl dev-perl/XML-Parser sys-devel/gettext sys-devel/m4 virtual/libiconv virtual/libintl virtual/pkgconfig doc? ( app-doc/doxygen ) orc? ( >=dev-lang/orc-0.4.15 ) system-wide? ( dev-util/unifdef ) >=dev-util/meson-0.58.2-r1 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig virtual/pkgconfig DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=>=media-libs/libsndfile-1.0.20[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/speexdsp-1.2[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/libc alsa? ( >=media-libs/alsa-lib-1.0.24 ) asyncns? ( >=net-libs/libasyncns-0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluetooth? ( >=net-wireless/bluez-5 media-libs/sbc ) daemon? ( dev-libs/libltdl sys-kernel/linux-headers >=sys-libs/libcap-2.22-r2 ) dbus? ( >=sys-apps/dbus-1.4.12[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) elogind? ( sys-auth/elogind ) equalizer? ( sci-libs/fftw:3.0 ) gdbm? ( sys-libs/gdbm:= ) glib? ( >=dev-libs/glib-2.28.0:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gst-plugins-base >=media-libs/gstreamer-1.14 ) gtk? ( x11-libs/gtk+:3 ) jack? ( virtual/jack ) lirc? ( app-misc/lirc ) ofono-headset? ( >=net-misc/ofono-1.13 ) orc? ( >=dev-lang/orc-0.4.15 ) selinux? ( sec-policy/selinux-pulseaudio ) sox? ( >=media-libs/soxr-0.1.1 ) ssl? ( dev-libs/openssl:= ) systemd? ( sys-apps/systemd:= ) tcpd? ( sys-apps/tcp-wrappers ) udev? ( >=virtual/udev-143[hwdb(+)] ) webrtc-aec? ( >=media-libs/webrtc-audio-processing-0.2:0 ) X? ( >=x11-libs/libxcb-1.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] daemon? ( x11-libs/libICE x11-libs/libSM >=x11-libs/libX11-1.4.0 >=x11-libs/libXtst-1.0.99.2 ) ) zeroconf? ( >=net-dns/avahi-0.6.12[dbus] ) dev-libs/libatomic_ops dev-libs/libpcre:* test? ( >=dev-libs/check-0.9.10 ) X? ( x11-base/xorg-proto ) +DEPEND=>=media-libs/libsndfile-1.0.20[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/speexdsp-1.2[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/libc alsa? ( >=media-libs/alsa-lib-1.0.24 ) asyncns? ( >=net-libs/libasyncns-0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluetooth? ( >=net-wireless/bluez-5 media-libs/sbc ) daemon? ( dev-libs/libltdl sys-kernel/linux-headers >=sys-libs/libcap-2.22-r2 ) dbus? ( >=sys-apps/dbus-1.4.12[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) elogind? ( sys-auth/elogind ) equalizer? ( sci-libs/fftw:3.0 ) gdbm? ( sys-libs/gdbm:= ) glib? ( >=dev-libs/glib-2.28.0:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gst-plugins-base >=media-libs/gstreamer-1.14 ) gtk? ( x11-libs/gtk+:3 ) jack? ( virtual/jack ) lirc? ( app-misc/lirc ) ofono-headset? ( >=net-misc/ofono-1.13 ) orc? ( >=dev-lang/orc-0.4.15 ) selinux? ( sec-policy/selinux-pulseaudio ) sox? ( >=media-libs/soxr-0.1.1 ) ssl? ( dev-libs/openssl:= ) systemd? ( sys-apps/systemd:= ) tcpd? ( sys-apps/tcp-wrappers ) udev? ( >=virtual/udev-143[hwdb(+)] ) webrtc-aec? ( >=media-libs/webrtc-audio-processing-0.2:0 ) X? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libxcb-1.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] daemon? ( x11-libs/libICE x11-libs/libSM >=x11-libs/libX11-1.4.0 >=x11-libs/libXtst-1.0.99.2 ) ) zeroconf? ( >=net-dns/avahi-0.6.12[dbus] ) dev-libs/libatomic_ops dev-libs/libpcre:* test? ( >=dev-libs/check-0.9.10 ) X? ( x11-base/xorg-proto ) DESCRIPTION=A networked sound server with an advanced plugin system EAPI=7 HOMEPAGE=https://www.freedesktop.org/wiki/Software/PulseAudio/ @@ -8,10 +8,10 @@ IUSE=+alsa +alsa-plugin +asyncns bluetooth dbus +daemon doc elogind equalizer +g KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux LICENSE=!gdbm? ( LGPL-2.1 ) gdbm? ( GPL-2 ) PDEPEND=alsa? ( alsa-plugin? ( >=media-plugins/alsa-plugins-1.0.27-r1[pulseaudio,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=>=media-libs/libsndfile-1.0.20[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/speexdsp-1.2[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/libc alsa? ( >=media-libs/alsa-lib-1.0.24 ) asyncns? ( >=net-libs/libasyncns-0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluetooth? ( >=net-wireless/bluez-5 media-libs/sbc ) daemon? ( dev-libs/libltdl sys-kernel/linux-headers >=sys-libs/libcap-2.22-r2 ) dbus? ( >=sys-apps/dbus-1.4.12[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) elogind? ( sys-auth/elogind ) equalizer? ( sci-libs/fftw:3.0 ) gdbm? ( sys-libs/gdbm:= ) glib? ( >=dev-libs/glib-2.28.0:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gst-plugins-base >=media-libs/gstreamer-1.14 ) gtk? ( x11-libs/gtk+:3 ) jack? ( virtual/jack ) lirc? ( app-misc/lirc ) ofono-headset? ( >=net-misc/ofono-1.13 ) orc? ( >=dev-lang/orc-0.4.15 ) selinux? ( sec-policy/selinux-pulseaudio ) sox? ( >=media-libs/soxr-0.1.1 ) ssl? ( dev-libs/openssl:= ) systemd? ( sys-apps/systemd:= ) tcpd? ( sys-apps/tcp-wrappers ) udev? ( >=virtual/udev-143[hwdb(+)] ) webrtc-aec? ( >=media-libs/webrtc-audio-processing-0.2:0 ) X? ( >=x11-libs/libxcb-1.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] daemon? ( x11-libs/libICE x11-libs/libSM >=x11-libs/libX11-1.4.0 >=x11-libs/libXtst-1.0.99.2 ) ) zeroconf? ( >=net-dns/avahi-0.6.12[dbus] ) system-wide? ( alsa? ( media-sound/alsa-utils ) acct-user/pulse acct-group/audio acct-group/pulse-access ) virtual/tmpfiles +RDEPEND=>=media-libs/libsndfile-1.0.20[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/speexdsp-1.2[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/libc alsa? ( >=media-libs/alsa-lib-1.0.24 ) asyncns? ( >=net-libs/libasyncns-0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluetooth? ( >=net-wireless/bluez-5 media-libs/sbc ) daemon? ( dev-libs/libltdl sys-kernel/linux-headers >=sys-libs/libcap-2.22-r2 ) dbus? ( >=sys-apps/dbus-1.4.12[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) elogind? ( sys-auth/elogind ) equalizer? ( sci-libs/fftw:3.0 ) gdbm? ( sys-libs/gdbm:= ) glib? ( >=dev-libs/glib-2.28.0:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gstreamer? ( media-libs/gst-plugins-base >=media-libs/gstreamer-1.14 ) gtk? ( x11-libs/gtk+:3 ) jack? ( virtual/jack ) lirc? ( app-misc/lirc ) ofono-headset? ( >=net-misc/ofono-1.13 ) orc? ( >=dev-lang/orc-0.4.15 ) selinux? ( sec-policy/selinux-pulseaudio ) sox? ( >=media-libs/soxr-0.1.1 ) ssl? ( dev-libs/openssl:= ) systemd? ( sys-apps/systemd:= ) tcpd? ( sys-apps/tcp-wrappers ) udev? ( >=virtual/udev-143[hwdb(+)] ) webrtc-aec? ( >=media-libs/webrtc-audio-processing-0.2:0 ) X? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libxcb-1.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] daemon? ( x11-libs/libICE x11-libs/libSM >=x11-libs/libX11-1.4.0 >=x11-libs/libXtst-1.0.99.2 ) ) zeroconf? ( >=net-dns/avahi-0.6.12[dbus] ) system-wide? ( alsa? ( media-sound/alsa-utils ) acct-user/pulse acct-group/audio acct-group/pulse-access ) virtual/tmpfiles REQUIRED_USE=alsa-plugin? ( alsa ) bluetooth? ( dbus ) daemon? ( ?? ( elogind systemd ) ) !daemon? ( !alsa !alsa-plugin !bluetooth !equalizer !gdbm !gstreamer !gtk !jack !lirc !native-headset !ofono-headset !orc !oss !sox !ssl !system-wide !udev !webrtc-aec !zeroconf ) equalizer? ( dbus ) native-headset? ( bluetooth ) ofono-headset? ( bluetooth ) udev? ( || ( alsa oss ) ) zeroconf? ( dbus ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://freedesktop.org/software/pulseaudio/releases/pulseaudio-15.0.tar.xz _eclasses_=bash-completion-r1 d3a60385655d9b402be765a6de333245 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 gnome2-utils 239e7afa214b50012f83b8bb61de7555 meson 9f3e84959ae1d60e19bc91f212774dcc meson-multilib 84c0d4019bf29be0d9d0a2d98fb8b0d9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 multilib-minimal be5919734a8448dddd49c2b26db45091 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 optfeature 30ce9dec2b8943338c9b015bd32bac6a python-utils-r1 a8b7938ade305f087865de7e52d079b5 systemd 2736b403a83f194b59b767f3b344c2c1 tmpfiles 11d91b11caf3bbb725c7d9eba90335c8 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=5493eae63a2b8ff8d63f8d8d32297d6d +_md5_=b85ad5b831e876385fd98fb5e4c2324f diff --git a/metadata/md5-cache/media-video/Manifest.gz b/metadata/md5-cache/media-video/Manifest.gz index 60cd7bc6462d..eedf6bdbbac7 100644 Binary files a/metadata/md5-cache/media-video/Manifest.gz and b/metadata/md5-cache/media-video/Manifest.gz differ diff --git a/metadata/md5-cache/media-video/popcorntime-bin-0.4.6 b/metadata/md5-cache/media-video/popcorntime-bin-0.4.6 index 7e1ce066e612..8dc0eda9e6db 100644 --- a/metadata/md5-cache/media-video/popcorntime-bin-0.4.6 +++ b/metadata/md5-cache/media-video/popcorntime-bin-0.4.6 @@ -8,4 +8,4 @@ RDEPEND=app-accessibility/at-spi2-core:2 dev-libs/atk dev-libs/expat dev-libs/ns SLOT=0 SRC_URI=amd64? ( https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.6/Popcorn-Time-0.4.6-amd64.deb ) x86? ( https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.6/Popcorn-Time-0.4.6-i386.deb ) _eclasses_=multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 928e1f35ef78ba9fc2b214e29c2b55a4 xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=1bfbcc1e84751e77a0fd48133b386a5c +_md5_=ee72d1de6950492bc3fab03b7fb46bf6 diff --git a/metadata/md5-cache/net-analyzer/Manifest.gz b/metadata/md5-cache/net-analyzer/Manifest.gz index f606c439e3c3..02bd7a5885f7 100644 Binary files a/metadata/md5-cache/net-analyzer/Manifest.gz and b/metadata/md5-cache/net-analyzer/Manifest.gz differ diff --git a/metadata/md5-cache/net-analyzer/snallygaster-0.0.11 b/metadata/md5-cache/net-analyzer/snallygaster-0.0.11 new file mode 100644 index 000000000000..95cee9b5c992 --- /dev/null +++ b/metadata/md5-cache/net-analyzer/snallygaster-0.0.11 @@ -0,0 +1,16 @@ +BDEPEND=python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_8? ( >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/setuptools-42.0.2[python_targets_python3_9(-)] ) +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=dev-python/dnspython dev-python/urllib3 dev-python/beautifulsoup4 +DESCRIPTION=Finds file leaks and other security problems on HTTP servers +EAPI=7 +HOMEPAGE=https://github.com/hannob/snallygaster +IUSE=python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~amd64 +LICENSE=CC0-1.0 +RDEPEND=dev-python/dnspython dev-python/urllib3 dev-python/beautifulsoup4 python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) +REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://pypi/s/snallygaster/snallygaster-0.0.11.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=b8f4b892d02314ede9f1c4487da37e81 diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz index 00237ce43860..00790af46d63 100644 Binary files a/metadata/md5-cache/net-dns/Manifest.gz and b/metadata/md5-cache/net-dns/Manifest.gz differ diff --git a/metadata/md5-cache/net-dns/unbound-1.13.2-r1 b/metadata/md5-cache/net-dns/unbound-1.13.2-r1 index d2bc5636ffca..b1676e1a47ef 100644 --- a/metadata/md5-cache/net-dns/unbound-1.13.2-r1 +++ b/metadata/md5-cache/net-dns/unbound-1.13.2-r1 @@ -5,7 +5,7 @@ DESCRIPTION=A validating, recursive and caching DNS resolver EAPI=8 HOMEPAGE=https://unbound.net/ https://nlnetlabs.nl/projects/unbound/about/ IUSE=debug dnscrypt dnstap +ecdsa ecs gost +http2 python redis selinux static-libs systemd test +tfo threads abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=~alpha ~amd64 arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~x86 +KEYWORDS=~alpha ~amd64 arm ~arm64 ~hppa ~mips ppc ppc64 x86 LICENSE=BSD GPL-2 RDEPEND=acct-group/unbound acct-user/unbound >=dev-libs/expat-2.1.0-r3[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/libevent-2.0.21: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(-)?] >=dev-libs/openssl-1.0.1h-r2: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(-)?] dnscrypt? ( dev-libs/libsodium:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dnstap? ( dev-libs/fstrm[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/protobuf-c-1.0.2-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(-)?] ) ecdsa? ( dev-libs/openssl:0[-bindist(-)] ) http2? ( net-libs/nghttp2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) python? ( python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) ) redis? ( dev-libs/hiredis:= ) systemd? ( sys-apps/systemd ) net-dns/dnssec-root selinux? ( sec-policy/selinux-bind ) net-dns/dnssec-root REQUIRED_USE=python? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0/8 SRC_URI=https://nlnetlabs.nl/downloads/unbound/unbound-1.13.2.tar.gz _eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 multilib-minimal be5919734a8448dddd49c2b26db45091 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=6d5889e3be2eeeec06aa22fe114c6ba3 +_md5_=1588ebccb6ba0e7f71d0eb510fb995a0 diff --git a/metadata/md5-cache/net-im/Manifest.gz b/metadata/md5-cache/net-im/Manifest.gz index 8bc9a2add53a..f08012e5a332 100644 Binary files a/metadata/md5-cache/net-im/Manifest.gz and b/metadata/md5-cache/net-im/Manifest.gz differ diff --git a/metadata/md5-cache/net-im/rocketchat-desktop-bin-3.7.2 b/metadata/md5-cache/net-im/rocketchat-desktop-bin-3.7.3 similarity index 95% rename from metadata/md5-cache/net-im/rocketchat-desktop-bin-3.7.2 rename to metadata/md5-cache/net-im/rocketchat-desktop-bin-3.7.3 index f01eca500de6..b882b0e5f6b7 100644 --- a/metadata/md5-cache/net-im/rocketchat-desktop-bin-3.7.2 +++ b/metadata/md5-cache/net-im/rocketchat-desktop-bin-3.7.3 @@ -7,6 +7,6 @@ KEYWORDS=-* ~amd64 LICENSE=MIT RDEPEND=app-accessibility/at-spi2-atk:2 dev-libs/atk dev-libs/expat dev-libs/libappindicator dev-libs/nspr dev-libs/nss media-fonts/noto-emoji media-libs/alsa-lib net-print/cups x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libnotify 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/libxkbcommon x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/libXScrnSaver x11-libs/pango SLOT=0 -SRC_URI=https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/3.7.2/rocketchat-3.7.2.x86_64.rpm +SRC_URI=https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/3.7.3/rocketchat-3.7.3.x86_64.rpm _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 rpm f73e907469f65e52192f110dec72dce0 xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 _md5_=61a75ef3eb848da78f229cfbd2771e45 diff --git a/metadata/md5-cache/net-libs/Manifest.gz b/metadata/md5-cache/net-libs/Manifest.gz index de34fa13a39f..3799d61ea868 100644 Binary files a/metadata/md5-cache/net-libs/Manifest.gz and b/metadata/md5-cache/net-libs/Manifest.gz differ diff --git a/metadata/md5-cache/net-libs/enet-1.3.13 b/metadata/md5-cache/net-libs/enet-1.3.13 deleted file mode 100644 index 6ec72adc0045..000000000000 --- a/metadata/md5-cache/net-libs/enet-1.3.13 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=configure install -DESCRIPTION=Relatively thin, simple and robust network communication layer on top of UDP -EAPI=7 -HOMEPAGE=http://enet.bespin.org/ -IUSE=static-libs -KEYWORDS=amd64 ~arm64 ~ppc ~ppc64 x86 -LICENSE=MIT -RDEPEND=!net-libs/enet:0 -SLOT=1.3/7 -SRC_URI=http://enet.bespin.org/download/enet-1.3.13.tar.gz -_md5_=fd7782dc2aa4ec0c88ce7fa2ab4b74f3 diff --git a/metadata/md5-cache/net-libs/libmicrohttpd-0.9.75 b/metadata/md5-cache/net-libs/libmicrohttpd-0.9.75 new file mode 100644 index 000000000000..1770a35ecf3a --- /dev/null +++ b/metadata/md5-cache/net-libs/libmicrohttpd-0.9.75 @@ -0,0 +1,15 @@ +BDEPEND=ssl? ( virtual/pkgconfig ) +DEFINED_PHASES=compile configure install test +DEPEND=ssl? ( >net-libs/gnutls-2.12.20:= ) test? ( net-misc/curl[ssl?] ) +DESCRIPTION=Small C library to run an HTTP server as part of another application +EAPI=8 +HOMEPAGE=https://www.gnu.org/software/libmicrohttpd/ +IUSE=+epoll ssl static-libs test +thread-names 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 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=LGPL-2.1+ +RDEPEND=ssl? ( >net-libs/gnutls-2.12.20:= ) +RESTRICT=!test? ( test ) +SLOT=0/12 +SRC_URI=mirror://gnu/libmicrohttpd/libmicrohttpd-0.9.75.tar.gz +_eclasses_=multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 multilib-minimal be5919734a8448dddd49c2b26db45091 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=f336cf5a269f16862432ea8dd1d47fad diff --git a/metadata/md5-cache/net-libs/mbedtls-2.16.11 b/metadata/md5-cache/net-libs/mbedtls-2.16.11 deleted file mode 100644 index c083a4dea8e7..000000000000 --- a/metadata/md5-cache/net-libs/mbedtls-2.16.11 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare test -DEPEND=programs? ( dev-libs/openssl:0= ) zlib? ( >=sys-libs/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(-)?] ) doc? ( app-doc/doxygen media-gfx/graphviz ) test? ( dev-lang/perl ) -DESCRIPTION=Cryptographic library for embedded systems -EAPI=7 -HOMEPAGE=https://tls.mbed.org/ -IUSE=cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib 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 ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 -LICENSE=Apache-2.0 -RDEPEND=programs? ( dev-libs/openssl:0= ) zlib? ( >=sys-libs/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(-)?] ) -RESTRICT=!test? ( test ) -SLOT=0/3.12.0 -SRC_URI=https://github.com/ARMmbed/mbedtls/archive/mbedtls-2.16.11.tar.gz -_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 multilib-minimal be5919734a8448dddd49c2b26db45091 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=4339a11dc5a39e46fd4cd8a1bf16d2ce diff --git a/metadata/md5-cache/net-libs/mbedtls-2.16.12 b/metadata/md5-cache/net-libs/mbedtls-2.16.12 index 8a19e014b7de..dec3a7c1de8c 100644 --- a/metadata/md5-cache/net-libs/mbedtls-2.16.12 +++ b/metadata/md5-cache/net-libs/mbedtls-2.16.12 @@ -4,7 +4,7 @@ DEPEND=programs? ( dev-libs/openssl:0= ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x8 DESCRIPTION=Cryptographic library for embedded systems EAPI=7 HOMEPAGE=https://tls.mbed.org/ -IUSE=cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +IUSE=cmac cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib 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 ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 LICENSE=Apache-2.0 RDEPEND=programs? ( dev-libs/openssl:0= ) zlib? ( >=sys-libs/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(-)?] ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0/3.12.0 SRC_URI=https://github.com/ARMmbed/mbedtls/archive/mbedtls-2.16.12.tar.gz _eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 multilib-minimal be5919734a8448dddd49c2b26db45091 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=4339a11dc5a39e46fd4cd8a1bf16d2ce +_md5_=d137c4a75da3cde887e6f8803faee7db diff --git a/metadata/md5-cache/net-libs/mbedtls-2.27.0-r1 b/metadata/md5-cache/net-libs/mbedtls-2.27.0-r1 index 0de3028a599a..7f2b33d64c4f 100644 --- a/metadata/md5-cache/net-libs/mbedtls-2.27.0-r1 +++ b/metadata/md5-cache/net-libs/mbedtls-2.27.0-r1 @@ -4,7 +4,7 @@ DEPEND=programs? ( dev-libs/openssl:0= ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x8 DESCRIPTION=Cryptographic library for embedded systems EAPI=7 HOMEPAGE=https://tls.mbed.org/ -IUSE=cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +IUSE=cmac cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib 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 ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=Apache-2.0 RDEPEND=programs? ( dev-libs/openssl:0= ) zlib? ( >=sys-libs/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(-)?] ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0/7.13.1 SRC_URI=https://github.com/ARMmbed/mbedtls/archive/mbedtls-2.27.0.tar.gz _eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 multilib-minimal be5919734a8448dddd49c2b26db45091 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=04feac0a27eed0bc166631c50bc96973 +_md5_=8bb164c04384f35dcac29a4b323e45ff diff --git a/metadata/md5-cache/net-libs/mbedtls-2.28.0-r1 b/metadata/md5-cache/net-libs/mbedtls-2.28.0-r1 index 7a369262102e..f7834a28acf0 100644 --- a/metadata/md5-cache/net-libs/mbedtls-2.28.0-r1 +++ b/metadata/md5-cache/net-libs/mbedtls-2.28.0-r1 @@ -4,7 +4,7 @@ DEPEND=programs? ( dev-libs/openssl:0= ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x8 DESCRIPTION=Cryptographic library for embedded systems EAPI=7 HOMEPAGE=https://tls.mbed.org/ -IUSE=cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +IUSE=cmac cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib 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 ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=Apache-2.0 RDEPEND=programs? ( dev-libs/openssl:0= ) zlib? ( >=sys-libs/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(-)?] ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0/7.14.1 SRC_URI=https://github.com/ARMmbed/mbedtls/archive/mbedtls-2.28.0.tar.gz _eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 multilib-minimal be5919734a8448dddd49c2b26db45091 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=3f33f5fdb3432ccf606d47847b2d539f +_md5_=7b9091cb610b26830f87f819e409849a diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz index def5437c148c..6f98ff50e99c 100644 Binary files a/metadata/md5-cache/net-misc/Manifest.gz and b/metadata/md5-cache/net-misc/Manifest.gz differ diff --git a/metadata/md5-cache/net-misc/pcapfix-1.1.7 b/metadata/md5-cache/net-misc/pcapfix-1.1.7 new file mode 100644 index 000000000000..d946bf9ad0d8 --- /dev/null +++ b/metadata/md5-cache/net-misc/pcapfix-1.1.7 @@ -0,0 +1,11 @@ +DEFINED_PHASES=configure install prepare +DESCRIPTION=Repair and fix broken pcap files +EAPI=7 +HOMEPAGE=https://f00l.de/pcapfix/ +IUSE=debug +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +SLOT=0 +SRC_URI=https://f00l.de/pcapfix/pcapfix-1.1.7.tar.gz https://dev.gentoo.org/~sam/distfiles/net-misc/pcapfix/pcapfix-1.1.7-musl-stdint.patch.bz2 +_eclasses_=multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=0cfca27b29ea21b6d19613ea3068b2f2 diff --git a/metadata/md5-cache/net-misc/yt-dlp-2021.12.25 b/metadata/md5-cache/net-misc/yt-dlp-2021.12.25 deleted file mode 100644 index 42db532622cc..000000000000 --- a/metadata/md5-cache/net-misc/yt-dlp-2021.12.25 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/pycryptodome[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !net-misc/youtube-dl >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install postinst prepare test -DESCRIPTION=youtube-dl fork with additional features and fixes -EAPI=8 -HOMEPAGE=https://github.com/yt-dlp/yt-dlp -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86 -LICENSE=Unlicense -RDEPEND=dev-python/pycryptodome[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !net-misc/youtube-dl python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/y/yt-dlp/yt-dlp-2021.12.25.tar.gz -_eclasses_=bash-completion-r1 d3a60385655d9b402be765a6de333245 distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature 30ce9dec2b8943338c9b015bd32bac6a python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=b386c900e3ccfad00875e26cb0ff61ab diff --git a/metadata/md5-cache/net-p2p/Manifest.gz b/metadata/md5-cache/net-p2p/Manifest.gz index 3118ff5775ae..58183053d731 100644 Binary files a/metadata/md5-cache/net-p2p/Manifest.gz and b/metadata/md5-cache/net-p2p/Manifest.gz differ diff --git a/metadata/md5-cache/net-p2p/go-ipfs-0.11.0 b/metadata/md5-cache/net-p2p/go-ipfs-0.11.0 new file mode 100644 index 000000000000..7da968b5d6e6 --- /dev/null +++ b/metadata/md5-cache/net-p2p/go-ipfs-0.11.0 @@ -0,0 +1,13 @@ +BDEPEND=>=dev-lang/go-1.12 app-arch/unzip virtual/pkgconfig +DEFINED_PHASES=compile install postinst test unpack +DESCRIPTION=Main implementation of IPFS +EAPI=7 +HOMEPAGE=https://ipfs.io/ +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 +RDEPEND=!net-p2p/go-ipfs-bin acct-group/ipfs acct-user/ipfs sys-fs/fuse:0 +RESTRICT=strip +SLOT=0 +SRC_URI=https://github.com/ipfs/go-ipfs/archive/v0.11.0.tar.gz -> go-ipfs-0.11.0.tar.gz mirror://goproxy//bazil.org/fuse/@v/v0.0.0-20200117225306-7b5117fecadc.zip -> bazil.org%2Ffuse%2F@v%2Fv0.0.0-20200117225306-7b5117fecadc.zip mirror://goproxy//bazil.org/fuse/@v/v0.0.0-20200117225306-7b5117fecadc.mod -> bazil.org%2Ffuse%2F@v%2Fv0.0.0-20200117225306-7b5117fecadc.mod mirror://goproxy//cloud.google.com/go/@v/v0.26.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.26.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.31.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.31.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.34.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.34.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.37.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.37.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.38.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.38.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.44.1.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.44.1.mod mirror://goproxy//cloud.google.com/go/@v/v0.44.2.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.44.2.mod mirror://goproxy//cloud.google.com/go/@v/v0.45.1.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.45.1.mod mirror://goproxy//cloud.google.com/go/@v/v0.46.3.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.46.3.mod mirror://goproxy//cloud.google.com/go/@v/v0.50.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.50.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.52.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.52.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.53.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.53.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.54.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.54.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.56.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.56.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.57.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.57.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.62.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.62.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.65.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.65.0.mod mirror://goproxy//cloud.google.com/go/bigquery/@v/v1.0.1.mod -> cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.0.1.mod mirror://goproxy//cloud.google.com/go/bigquery/@v/v1.3.0.mod -> cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.3.0.mod mirror://goproxy//cloud.google.com/go/bigquery/@v/v1.4.0.mod -> cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.4.0.mod mirror://goproxy//cloud.google.com/go/bigquery/@v/v1.5.0.mod -> cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.5.0.mod mirror://goproxy//cloud.google.com/go/bigquery/@v/v1.7.0.mod -> cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.7.0.mod mirror://goproxy//cloud.google.com/go/bigquery/@v/v1.8.0.mod -> cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.8.0.mod mirror://goproxy//cloud.google.com/go/datastore/@v/v1.0.0.mod -> cloud.google.com%2Fgo%2Fdatastore%2F@v%2Fv1.0.0.mod mirror://goproxy//cloud.google.com/go/datastore/@v/v1.1.0.mod -> cloud.google.com%2Fgo%2Fdatastore%2F@v%2Fv1.1.0.mod mirror://goproxy//cloud.google.com/go/pubsub/@v/v1.0.1.mod -> cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.0.1.mod mirror://goproxy//cloud.google.com/go/pubsub/@v/v1.1.0.mod -> cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.1.0.mod mirror://goproxy//cloud.google.com/go/pubsub/@v/v1.2.0.mod -> cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.2.0.mod mirror://goproxy//cloud.google.com/go/pubsub/@v/v1.3.1.mod -> cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.3.1.mod mirror://goproxy//cloud.google.com/go/storage/@v/v1.0.0.mod -> cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.0.0.mod mirror://goproxy//cloud.google.com/go/storage/@v/v1.5.0.mod -> cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.5.0.mod mirror://goproxy//cloud.google.com/go/storage/@v/v1.6.0.mod -> cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.6.0.mod mirror://goproxy//cloud.google.com/go/storage/@v/v1.8.0.mod -> cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.8.0.mod mirror://goproxy//cloud.google.com/go/storage/@v/v1.10.0.mod -> cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.10.0.mod mirror://goproxy//contrib.go.opencensus.io/exporter/prometheus/@v/v0.4.0.zip -> contrib.go.opencensus.io%2Fexporter%2Fprometheus%2F@v%2Fv0.4.0.zip mirror://goproxy//contrib.go.opencensus.io/exporter/prometheus/@v/v0.4.0.mod -> contrib.go.opencensus.io%2Fexporter%2Fprometheus%2F@v%2Fv0.4.0.mod mirror://goproxy//dmitri.shuralyov.com/app/changes/@v/v0.0.0-20180602232624-0a106ad413e3.mod -> dmitri.shuralyov.com%2Fapp%2Fchanges%2F@v%2Fv0.0.0-20180602232624-0a106ad413e3.mod mirror://goproxy//dmitri.shuralyov.com/gpu/mtl/@v/v0.0.0-20190408044501-666a987793e9.mod -> dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod mirror://goproxy//dmitri.shuralyov.com/html/belt/@v/v0.0.0-20180602232347-f7d459c86be0.mod -> dmitri.shuralyov.com%2Fhtml%2Fbelt%2F@v%2Fv0.0.0-20180602232347-f7d459c86be0.mod mirror://goproxy//dmitri.shuralyov.com/service/change/@v/v0.0.0-20181023043359-a85b471d5412.mod -> dmitri.shuralyov.com%2Fservice%2Fchange%2F@v%2Fv0.0.0-20181023043359-a85b471d5412.mod mirror://goproxy//dmitri.shuralyov.com/state/@v/v0.0.0-20180228185332-28bcc343414c.mod -> dmitri.shuralyov.com%2Fstate%2F@v%2Fv0.0.0-20180228185332-28bcc343414c.mod mirror://goproxy//git.apache.org/thrift.git/@v/v0.0.0-20180902110319-2566ecd5d999.mod -> git.apache.org%2Fthrift.git%2F@v%2Fv0.0.0-20180902110319-2566ecd5d999.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20180913140656-343706a395b7.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20180913140656-343706a395b7.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190306092124-e2d15f34fcf9.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190306092124-e2d15f34fcf9.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190825152654-46b345b51c96.zip -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.zip mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190825152654-46b345b51c96.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.mod mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.mod -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/!burnt!sushi/xgb/@v/v0.0.0-20160522181843-27f122750802.mod -> github.com%2F!burnt!sushi%2Fxgb%2F@v%2Fv0.0.0-20160522181843-27f122750802.mod mirror://goproxy//github.com/!knetic/govaluate/@v/v3.0.1-0.20171022003610-9aa49832a739+incompatible.mod -> github.com%2F!knetic%2Fgovaluate%2F@v%2Fv3.0.1-0.20171022003610-9aa49832a739+incompatible.mod mirror://goproxy//github.com/!kubuxu/go-os-helper/@v/v0.0.1.zip -> github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/!kubuxu/go-os-helper/@v/v0.0.1.mod -> github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.zip -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.zip mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.mod -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/!shopify/sarama/@v/v1.19.0.mod -> github.com%2F!shopify%2Fsarama%2F@v%2Fv1.19.0.mod mirror://goproxy//github.com/!shopify/toxiproxy/@v/v2.1.4+incompatible.mod -> github.com%2F!shopify%2Ftoxiproxy%2F@v%2Fv2.1.4+incompatible.mod mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.1.zip -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.1.mod -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/!vivid!cortex/gohistogram/@v/v1.0.0.mod -> github.com%2F!vivid!cortex%2Fgohistogram%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/aead/siphash/@v/v1.0.1.mod -> github.com%2Faead%2Fsiphash%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/afex/hystrix-go/@v/v0.0.0-20180502004556-fa1af6a1f4f5.mod -> github.com%2Fafex%2Fhystrix-go%2F@v%2Fv0.0.0-20180502004556-fa1af6a1f4f5.mod mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20160405071501-a0175ee3bccc.mod -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.mod mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20190718012654-fb15b899a751.mod -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20190718012654-fb15b899a751.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20151022065526-2efee857e7cf.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20190717042225-c3de453c63f4.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190717042225-c3de453c63f4.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20190924025748-f65c72e2690d.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190924025748-f65c72e2690d.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20210927113745-59d0afb8317a.zip -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20210927113745-59d0afb8317a.zip mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20210927113745-59d0afb8317a.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20210927113745-59d0afb8317a.mod mirror://goproxy//github.com/alexbrainman/goissue34681/@v/v0.0.0-20191006012335-3fc7a47baff5.zip -> github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.zip mirror://goproxy//github.com/alexbrainman/goissue34681/@v/v0.0.0-20191006012335-3fc7a47baff5.mod -> github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.mod mirror://goproxy//github.com/anmitsu/go-shlex/@v/v0.0.0-20161002113705-648efa622239.mod -> github.com%2Fanmitsu%2Fgo-shlex%2F@v%2Fv0.0.0-20161002113705-648efa622239.mod mirror://goproxy//github.com/antihax/optional/@v/v1.0.0.mod -> github.com%2Fantihax%2Foptional%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/apache/thrift/@v/v0.12.0.mod -> github.com%2Fapache%2Fthrift%2F@v%2Fv0.12.0.mod mirror://goproxy//github.com/apache/thrift/@v/v0.13.0.mod -> github.com%2Fapache%2Fthrift%2F@v%2Fv0.13.0.mod mirror://goproxy//github.com/armon/circbuf/@v/v0.0.0-20150827004946-bbbad097214e.mod -> github.com%2Farmon%2Fcircbuf%2F@v%2Fv0.0.0-20150827004946-bbbad097214e.mod mirror://goproxy//github.com/armon/consul-api/@v/v0.0.0-20180202201655-eb2c6b5be1b6.mod -> github.com%2Farmon%2Fconsul-api%2F@v%2Fv0.0.0-20180202201655-eb2c6b5be1b6.mod mirror://goproxy//github.com/armon/go-metrics/@v/v0.0.0-20180917152333-f0300d1749da.mod -> github.com%2Farmon%2Fgo-metrics%2F@v%2Fv0.0.0-20180917152333-f0300d1749da.mod mirror://goproxy//github.com/armon/go-radix/@v/v0.0.0-20180808171621-7fddfc383310.mod -> github.com%2Farmon%2Fgo-radix%2F@v%2Fv0.0.0-20180808171621-7fddfc383310.mod mirror://goproxy//github.com/aryann/difflib/@v/v0.0.0-20170710044230-e206f873d14a.mod -> github.com%2Faryann%2Fdifflib%2F@v%2Fv0.0.0-20170710044230-e206f873d14a.mod mirror://goproxy//github.com/aws/aws-lambda-go/@v/v1.13.3.mod -> github.com%2Faws%2Faws-lambda-go%2F@v%2Fv1.13.3.mod mirror://goproxy//github.com/aws/aws-sdk-go/@v/v1.27.0.mod -> github.com%2Faws%2Faws-sdk-go%2F@v%2Fv1.27.0.mod mirror://goproxy//github.com/aws/aws-sdk-go-v2/@v/v0.18.0.mod -> github.com%2Faws%2Faws-sdk-go-v2%2F@v%2Fv0.18.0.mod mirror://goproxy//github.com/benbjohnson/clock/@v/v1.0.2.mod -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/benbjohnson/clock/@v/v1.0.3.mod -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/benbjohnson/clock/@v/v1.1.0.zip -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/benbjohnson/clock/@v/v1.1.0.mod -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/beorn7/perks/@v/v0.0.0-20180321164747-3a771d992973.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv0.0.0-20180321164747-3a771d992973.mod mirror://goproxy//github.com/beorn7/perks/@v/v1.0.0.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/beorn7/perks/@v/v1.0.1.zip -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/beorn7/perks/@v/v1.0.1.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/bgentry/speakeasy/@v/v0.1.0.mod -> github.com%2Fbgentry%2Fspeakeasy%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/blang/semver/v4/@v/v4.0.0.zip -> github.com%2Fblang%2Fsemver%2Fv4%2F@v%2Fv4.0.0.zip mirror://goproxy//github.com/blang/semver/v4/@v/v4.0.0.mod -> github.com%2Fblang%2Fsemver%2Fv4%2F@v%2Fv4.0.0.mod mirror://goproxy//github.com/bradfitz/go-smtpd/@v/v0.0.0-20170404230938-deb6d6237625.mod -> github.com%2Fbradfitz%2Fgo-smtpd%2F@v%2Fv0.0.0-20170404230938-deb6d6237625.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190213025234-306aecffea32.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190213025234-306aecffea32.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190523000118-16327141da8c.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190523000118-16327141da8c.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190605094302-a0d1e3e36d50.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190605094302-a0d1e3e36d50.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190824003749-130ea5bddde3.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190824003749-130ea5bddde3.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.20.1-beta.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.20.1-beta.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.21.0-beta.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.21.0-beta.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.22.0-beta.zip -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.22.0-beta.zip mirror://goproxy//github.com/btcsuite/btcd/@v/v0.22.0-beta.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.22.0-beta.mod mirror://goproxy//github.com/btcsuite/btclog/@v/v0.0.0-20170628155309-84c8d2346e9f.mod -> github.com%2Fbtcsuite%2Fbtclog%2F@v%2Fv0.0.0-20170628155309-84c8d2346e9f.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v0.0.0-20190207003914-4c204d697803.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190207003914-4c204d697803.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v0.0.0-20190425235716-9e5f4b9a998d.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190425235716-9e5f4b9a998d.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v1.0.2.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v1.0.3-0.20201208143702-a53e38424cce.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv1.0.3-0.20201208143702-a53e38424cce.mod mirror://goproxy//github.com/btcsuite/go-socks/@v/v0.0.0-20170105172521-4720035b7bfd.mod -> github.com%2Fbtcsuite%2Fgo-socks%2F@v%2Fv0.0.0-20170105172521-4720035b7bfd.mod mirror://goproxy//github.com/btcsuite/goleveldb/@v/v0.0.0-20160330041536-7834afc9e8cd.mod -> github.com%2Fbtcsuite%2Fgoleveldb%2F@v%2Fv0.0.0-20160330041536-7834afc9e8cd.mod mirror://goproxy//github.com/btcsuite/goleveldb/@v/v1.0.0.mod -> github.com%2Fbtcsuite%2Fgoleveldb%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/btcsuite/snappy-go/@v/v0.0.0-20151229074030-0bdef8d06723.mod -> github.com%2Fbtcsuite%2Fsnappy-go%2F@v%2Fv0.0.0-20151229074030-0bdef8d06723.mod mirror://goproxy//github.com/btcsuite/snappy-go/@v/v1.0.0.mod -> github.com%2Fbtcsuite%2Fsnappy-go%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/btcsuite/websocket/@v/v0.0.0-20150119174127-31079b680792.mod -> github.com%2Fbtcsuite%2Fwebsocket%2F@v%2Fv0.0.0-20150119174127-31079b680792.mod mirror://goproxy//github.com/btcsuite/winsvc/@v/v1.0.0.mod -> github.com%2Fbtcsuite%2Fwinsvc%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/buger/jsonparser/@v/v0.0.0-20181115193947-bf1c66bbce23.mod -> github.com%2Fbuger%2Fjsonparser%2F@v%2Fv0.0.0-20181115193947-bf1c66bbce23.mod mirror://goproxy//github.com/casbin/casbin/v2/@v/v2.1.2.mod -> github.com%2Fcasbin%2Fcasbin%2Fv2%2F@v%2Fv2.1.2.mod mirror://goproxy//github.com/cenkalti/backoff/@v/v2.2.1+incompatible.zip -> github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.2.1+incompatible.zip mirror://goproxy//github.com/cenkalti/backoff/@v/v2.2.1+incompatible.mod -> github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.2.1+incompatible.mod mirror://goproxy//github.com/census-instrumentation/opencensus-proto/@v/v0.2.1.mod -> github.com%2Fcensus-instrumentation%2Fopencensus-proto%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/ceramicnetwork/go-dag-jose/@v/v0.1.0.zip -> github.com%2Fceramicnetwork%2Fgo-dag-jose%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ceramicnetwork/go-dag-jose/@v/v0.1.0.mod -> github.com%2Fceramicnetwork%2Fgo-dag-jose%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.zip -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.mod -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/cespare/xxhash/v2/@v/v2.1.1.zip -> github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.zip mirror://goproxy//github.com/cespare/xxhash/v2/@v/v2.1.1.mod -> github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.mod mirror://goproxy//github.com/cheekybits/genny/@v/v1.0.0.zip -> github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/cheekybits/genny/@v/v1.0.0.mod -> github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/cheggaaa/pb/@v/v1.0.29.zip -> github.com%2Fcheggaaa%2Fpb%2F@v%2Fv1.0.29.zip mirror://goproxy//github.com/cheggaaa/pb/@v/v1.0.29.mod -> github.com%2Fcheggaaa%2Fpb%2F@v%2Fv1.0.29.mod mirror://goproxy//github.com/chzyer/logex/@v/v1.1.10.mod -> github.com%2Fchzyer%2Flogex%2F@v%2Fv1.1.10.mod mirror://goproxy//github.com/chzyer/readline/@v/v0.0.0-20180603132655-2972be24d48e.mod -> github.com%2Fchzyer%2Freadline%2F@v%2Fv0.0.0-20180603132655-2972be24d48e.mod mirror://goproxy//github.com/chzyer/test/@v/v0.0.0-20180213035817-a1ea475d72b1.mod -> github.com%2Fchzyer%2Ftest%2F@v%2Fv0.0.0-20180213035817-a1ea475d72b1.mod mirror://goproxy//github.com/clbanning/x2j/@v/v0.0.0-20191024224557-825249438eec.mod -> github.com%2Fclbanning%2Fx2j%2F@v%2Fv0.0.0-20191024224557-825249438eec.mod mirror://goproxy//github.com/client9/misspell/@v/v0.3.4.mod -> github.com%2Fclient9%2Fmisspell%2F@v%2Fv0.3.4.mod mirror://goproxy//github.com/cncf/udpa/go/@v/v0.0.0-20191209042840-269d4d468f6f.mod -> github.com%2Fcncf%2Fudpa%2Fgo%2F@v%2Fv0.0.0-20191209042840-269d4d468f6f.mod mirror://goproxy//github.com/cncf/udpa/go/@v/v0.0.0-20201120205902-5459f2c99403.mod -> github.com%2Fcncf%2Fudpa%2Fgo%2F@v%2Fv0.0.0-20201120205902-5459f2c99403.mod mirror://goproxy//github.com/cncf/xds/go/@v/v0.0.0-20210312221358-fbca930ec8ed.mod -> github.com%2Fcncf%2Fxds%2Fgo%2F@v%2Fv0.0.0-20210312221358-fbca930ec8ed.mod mirror://goproxy//github.com/cockroachdb/datadriven/@v/v0.0.0-20190809214429-80d97fb3cbaa.mod -> github.com%2Fcockroachdb%2Fdatadriven%2F@v%2Fv0.0.0-20190809214429-80d97fb3cbaa.mod mirror://goproxy//github.com/codahale/hdrhistogram/@v/v0.0.0-20161010025455-3a0bb77429bd.mod -> github.com%2Fcodahale%2Fhdrhistogram%2F@v%2Fv0.0.0-20161010025455-3a0bb77429bd.mod mirror://goproxy//github.com/coreos/etcd/@v/v3.3.10+incompatible.mod -> github.com%2Fcoreos%2Fetcd%2F@v%2Fv3.3.10+incompatible.mod mirror://goproxy//github.com/coreos/go-etcd/@v/v2.0.0+incompatible.mod -> github.com%2Fcoreos%2Fgo-etcd%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.1-0.20180108230905-e214231b295a.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.1-0.20180108230905-e214231b295a.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.3.0.zip -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/coreos/go-semver/@v/v0.3.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/coreos/go-systemd/@v/v0.0.0-20180511133405-39ca1b05acc7.mod -> github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20180511133405-39ca1b05acc7.mod mirror://goproxy//github.com/coreos/go-systemd/@v/v0.0.0-20181012123002-c6f51f82210d.zip -> github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.zip mirror://goproxy//github.com/coreos/go-systemd/@v/v0.0.0-20181012123002-c6f51f82210d.mod -> github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.mod mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.0.0.mod -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.0.0.mod mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.3.2.zip -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.3.2.zip mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.3.2.mod -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.3.2.mod mirror://goproxy//github.com/coreos/pkg/@v/v0.0.0-20160727233714-3ac0863d7acf.mod -> github.com%2Fcoreos%2Fpkg%2F@v%2Fv0.0.0-20160727233714-3ac0863d7acf.mod mirror://goproxy//github.com/cpuguy83/go-md2man/@v/v1.0.10.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2F@v%2Fv1.0.10.mod mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0-20190314233015-f79a8a8ca69d.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0-20190314233015-f79a8a8ca69d.mod mirror://goproxy//github.com/crackcomm/go-gitignore/@v/v0.0.0-20170627025303-887ab5e44cc3.zip -> github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.zip mirror://goproxy//github.com/crackcomm/go-gitignore/@v/v0.0.0-20170627025303-887ab5e44cc3.mod -> github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.mod mirror://goproxy//github.com/creack/pty/@v/v1.1.7.mod -> github.com%2Fcreack%2Fpty%2F@v%2Fv1.1.7.mod mirror://goproxy//github.com/creack/pty/@v/v1.1.9.mod -> github.com%2Fcreack%2Fpty%2F@v%2Fv1.1.9.mod mirror://goproxy//github.com/cskr/pubsub/@v/v1.0.2.zip -> github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/cskr/pubsub/@v/v1.0.2.mod -> github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v0.0.0-20171005155431-ecdeabc65495.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv0.0.0-20171005155431-ecdeabc65495.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20170701192655-dcfb0a7ac018.mod -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.mod mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20200604182044-b73af7476f6c.zip -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20200604182044-b73af7476f6c.zip mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20200604182044-b73af7476f6c.mod -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20200604182044-b73af7476f6c.mod mirror://goproxy//github.com/decred/dcrd/lru/@v/v1.0.0.mod -> github.com%2Fdecred%2Fdcrd%2Flru%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.5.5-0.20190226225317-8115aed38f8f.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.5.5-0.20190226225317-8115aed38f8f.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0-rc1.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0-rc1.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.1.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.2.zip -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.2.zip mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.2.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.2.mod mirror://goproxy//github.com/dgraph-io/ristretto/@v/v0.0.2.zip -> github.com%2Fdgraph-io%2Fristretto%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/dgraph-io/ristretto/@v/v0.0.2.mod -> github.com%2Fdgraph-io%2Fristretto%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/dgrijalva/jwt-go/@v/v3.2.0+incompatible.mod -> github.com%2Fdgrijalva%2Fjwt-go%2F@v%2Fv3.2.0+incompatible.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190104051053-3adb47b1fb0f.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190104051053-3adb47b1fb0f.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.zip -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.zip mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.mod mirror://goproxy//github.com/dustin/go-humanize/@v/v0.0.0-20171111073723-bb3d318650d4.mod -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv0.0.0-20171111073723-bb3d318650d4.mod mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.zip -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.mod -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/eapache/go-resiliency/@v/v1.1.0.mod -> github.com%2Feapache%2Fgo-resiliency%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/eapache/go-xerial-snappy/@v/v0.0.0-20180814174437-776d5712da21.mod -> github.com%2Feapache%2Fgo-xerial-snappy%2F@v%2Fv0.0.0-20180814174437-776d5712da21.mod mirror://goproxy//github.com/eapache/queue/@v/v1.1.0.mod -> github.com%2Feapache%2Fqueue%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/edsrzf/mmap-go/@v/v1.0.0.mod -> github.com%2Fedsrzf%2Fmmap-go%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/elgris/jsondiff/@v/v0.0.0-20160530203242-765b5c24c302.zip -> github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.zip mirror://goproxy//github.com/elgris/jsondiff/@v/v0.0.0-20160530203242-765b5c24c302.mod -> github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.6.9.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.6.9.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.9.0.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.9.1-0.20191026205805-5f8ba28d4473.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.9.1-0.20191026205805-5f8ba28d4473.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.9.4.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.9.4.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.9.9-0.20201210154907-fd9021fe5dad.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.9.9-0.20201210154907-fd9021fe5dad.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.9.9-0.20210512163311-63b5d3c536b0.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.9.9-0.20210512163311-63b5d3c536b0.mod mirror://goproxy//github.com/envoyproxy/protoc-gen-validate/@v/v0.1.0.mod -> github.com%2Fenvoyproxy%2Fprotoc-gen-validate%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/facebookgo/atomicfile/@v/v0.0.0-20151019160806-2de1f203e7d5.zip -> github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.zip mirror://goproxy//github.com/facebookgo/atomicfile/@v/v0.0.0-20151019160806-2de1f203e7d5.mod -> github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.mod mirror://goproxy//github.com/fatih/color/@v/v1.7.0.mod -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/fatih/color/@v/v1.9.0.zip -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.zip mirror://goproxy//github.com/fatih/color/@v/v1.9.0.mod -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/flynn/go-shlex/@v/v0.0.0-20150515145356-3f9db97f8568.mod -> github.com%2Fflynn%2Fgo-shlex%2F@v%2Fv0.0.0-20150515145356-3f9db97f8568.mod mirror://goproxy//github.com/flynn/noise/@v/v0.0.0-20180327030543-2492fe189ae6.mod -> github.com%2Fflynn%2Fnoise%2F@v%2Fv0.0.0-20180327030543-2492fe189ae6.mod mirror://goproxy//github.com/flynn/noise/@v/v1.0.0.zip -> github.com%2Fflynn%2Fnoise%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/flynn/noise/@v/v1.0.0.mod -> github.com%2Fflynn%2Fnoise%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/francoispqt/gojay/@v/v1.2.13.zip -> github.com%2Ffrancoispqt%2Fgojay%2F@v%2Fv1.2.13.zip mirror://goproxy//github.com/francoispqt/gojay/@v/v1.2.13.mod -> github.com%2Ffrancoispqt%2Fgojay%2F@v%2Fv1.2.13.mod mirror://goproxy//github.com/franela/goblin/@v/v0.0.0-20200105215937-c9ffbefa60db.mod -> github.com%2Ffranela%2Fgoblin%2F@v%2Fv0.0.0-20200105215937-c9ffbefa60db.mod mirror://goproxy//github.com/franela/goreq/@v/v0.0.0-20171204163338-bcd34c9993f8.mod -> github.com%2Ffranela%2Fgoreq%2F@v%2Fv0.0.0-20171204163338-bcd34c9993f8.mod mirror://goproxy//github.com/frankban/quicktest/@v/v1.11.3.mod -> github.com%2Ffrankban%2Fquicktest%2F@v%2Fv1.11.3.mod mirror://goproxy//github.com/frankban/quicktest/@v/v1.14.0.zip -> github.com%2Ffrankban%2Fquicktest%2F@v%2Fv1.14.0.zip mirror://goproxy//github.com/frankban/quicktest/@v/v1.14.0.mod -> github.com%2Ffrankban%2Fquicktest%2F@v%2Fv1.14.0.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.7.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.9.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.9.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.5.1.zip -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.5.1.zip mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.5.1.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/gabriel-vasile/mimetype/@v/v1.4.0.zip -> github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.4.0.zip mirror://goproxy//github.com/gabriel-vasile/mimetype/@v/v1.4.0.mod -> github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/ghodss/yaml/@v/v1.0.0.mod -> github.com%2Fghodss%2Fyaml%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/gliderlabs/ssh/@v/v0.1.1.mod -> github.com%2Fgliderlabs%2Fssh%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/go-bindata/go-bindata/v3/@v/v3.1.3.zip -> github.com%2Fgo-bindata%2Fgo-bindata%2Fv3%2F@v%2Fv3.1.3.zip mirror://goproxy//github.com/go-bindata/go-bindata/v3/@v/v3.1.3.mod -> github.com%2Fgo-bindata%2Fgo-bindata%2Fv3%2F@v%2Fv3.1.3.mod mirror://goproxy//github.com/go-check/check/@v/v0.0.0-20180628173108-788fd7840127.mod -> github.com%2Fgo-check%2Fcheck%2F@v%2Fv0.0.0-20180628173108-788fd7840127.mod mirror://goproxy//github.com/go-errors/errors/@v/v1.0.1.mod -> github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/go-gl/glfw/@v/v0.0.0-20190409004039-e6da0acd62b1.mod -> github.com%2Fgo-gl%2Fglfw%2F@v%2Fv0.0.0-20190409004039-e6da0acd62b1.mod mirror://goproxy//github.com/go-gl/glfw/v3.3/glfw/@v/v0.0.0-20191125211704-12ad95a8df72.mod -> github.com%2Fgo-gl%2Fglfw%2Fv3.3%2Fglfw%2F@v%2Fv0.0.0-20191125211704-12ad95a8df72.mod mirror://goproxy//github.com/go-gl/glfw/v3.3/glfw/@v/v0.0.0-20200222043503-6f7a984d4dc4.mod -> github.com%2Fgo-gl%2Fglfw%2Fv3.3%2Fglfw%2F@v%2Fv0.0.0-20200222043503-6f7a984d4dc4.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.8.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.9.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.10.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/go-kit/log/@v/v0.1.0.zip -> github.com%2Fgo-kit%2Flog%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/go-kit/log/@v/v0.1.0.mod -> github.com%2Fgo-kit%2Flog%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.3.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.4.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.5.0.zip -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.5.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/go-sql-driver/mysql/@v/v1.4.0.mod -> github.com%2Fgo-sql-driver%2Fmysql%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/go-stack/stack/@v/v1.8.0.zip -> github.com%2Fgo-stack%2Fstack%2F@v%2Fv1.8.0.zip mirror://goproxy//github.com/go-stack/stack/@v/v1.8.0.mod -> github.com%2Fgo-stack%2Fstack%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/go-task/slim-sprig/@v/v0.0.0-20210107165309-348f09dbbbc0.zip -> github.com%2Fgo-task%2Fslim-sprig%2F@v%2Fv0.0.0-20210107165309-348f09dbbbc0.zip mirror://goproxy//github.com/go-task/slim-sprig/@v/v0.0.0-20210107165309-348f09dbbbc0.mod -> github.com%2Fgo-task%2Fslim-sprig%2F@v%2Fv0.0.0-20210107165309-348f09dbbbc0.mod mirror://goproxy//github.com/godbus/dbus/v5/@v/v5.0.3.mod -> github.com%2Fgodbus%2Fdbus%2Fv5%2F@v%2Fv5.0.3.mod mirror://goproxy//github.com/godbus/dbus/v5/@v/v5.0.4.mod -> github.com%2Fgodbus%2Fdbus%2Fv5%2F@v%2Fv5.0.4.mod mirror://goproxy//github.com/gogo/googleapis/@v/v1.1.0.mod -> github.com%2Fgogo%2Fgoogleapis%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.1.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.2.0.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.2.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.0.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.2.zip -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.2.zip mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.2.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/golang/glog/@v/v0.0.0-20160126235308-23def4e6c14b.mod -> github.com%2Fgolang%2Fglog%2F@v%2Fv0.0.0-20160126235308-23def4e6c14b.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20160516000752-02826c3e7903.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20160516000752-02826c3e7903.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20190702054246-869f871628b6.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20190702054246-869f871628b6.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20191027212112-611e8accdfc9.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20191027212112-611e8accdfc9.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20191227052852-215e87163ea7.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20191227052852-215e87163ea7.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20200121045136-8c9f03a8e57e.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20200121045136-8c9f03a8e57e.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20210331224755-41bb18bfe9da.zip -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20210331224755-41bb18bfe9da.zip mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20210331224755-41bb18bfe9da.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20210331224755-41bb18bfe9da.mod mirror://goproxy//github.com/golang/lint/@v/v0.0.0-20180702182130-06c8688daad7.mod -> github.com%2Fgolang%2Flint%2F@v%2Fv0.0.0-20180702182130-06c8688daad7.mod mirror://goproxy//github.com/golang/mock/@v/v1.1.1.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/golang/mock/@v/v1.2.0.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/mock/@v/v1.3.1.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/golang/mock/@v/v1.4.0.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/golang/mock/@v/v1.4.1.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/golang/mock/@v/v1.4.3.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.3.mod mirror://goproxy//github.com/golang/mock/@v/v1.4.4.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.mod mirror://goproxy//github.com/golang/mock/@v/v1.6.0.zip -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.6.0.zip mirror://goproxy//github.com/golang/mock/@v/v1.6.0.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.2.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.3.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.3.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.4.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.4.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.5.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.5.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.1.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.1.0.20200221234624-67d41d38c208.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.1.0.20200221234624-67d41d38c208.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.2.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.4.0.20200313231945-b860323f09d0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.4.0.20200313231945-b860323f09d0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.3.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.3.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.5.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.5.2.zip -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.5.2.zip mirror://goproxy//github.com/golang/protobuf/@v/v1.5.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.5.2.mod mirror://goproxy//github.com/golang/snappy/@v/v0.0.0-20180518054509-2e65f85255db.zip -> github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.zip mirror://goproxy//github.com/golang/snappy/@v/v0.0.0-20180518054509-2e65f85255db.mod -> github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.mod mirror://goproxy//github.com/google/btree/@v/v0.0.0-20180813153112-4030bb1f1f0c.mod -> github.com%2Fgoogle%2Fbtree%2F@v%2Fv0.0.0-20180813153112-4030bb1f1f0c.mod mirror://goproxy//github.com/google/btree/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fbtree%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.2.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.3.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.3.1.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.4.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.4.1.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.5.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.5.1.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.5.3.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.3.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.5.4.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.4.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.5.5.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.5.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.5.6.zip -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.6.zip mirror://goproxy//github.com/google/go-cmp/@v/v0.5.6.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.6.mod mirror://goproxy//github.com/google/go-github/@v/v17.0.0+incompatible.mod -> github.com%2Fgoogle%2Fgo-github%2F@v%2Fv17.0.0+incompatible.mod mirror://goproxy//github.com/google/go-querystring/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgo-querystring%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/gofuzz/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgofuzz%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/gopacket/@v/v1.1.17.mod -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.17.mod mirror://goproxy//github.com/google/gopacket/@v/v1.1.19.zip -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.19.zip mirror://goproxy//github.com/google/gopacket/@v/v1.1.19.mod -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.19.mod mirror://goproxy//github.com/google/martian/@v/v2.1.0+incompatible.mod -> github.com%2Fgoogle%2Fmartian%2F@v%2Fv2.1.0+incompatible.mod mirror://goproxy//github.com/google/martian/v3/@v/v3.0.0.mod -> github.com%2Fgoogle%2Fmartian%2Fv3%2F@v%2Fv3.0.0.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20181206194817-3ea8567a2e57.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20181206194817-3ea8567a2e57.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20190515194954-54271f7e092f.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20190515194954-54271f7e092f.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20191218002539-d4f498aebedc.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20191218002539-d4f498aebedc.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20200212024743-f11f1df84d12.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20200212024743-f11f1df84d12.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20200229191704-1ebb73c60ed3.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20200229191704-1ebb73c60ed3.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20200430221834-fc25d7d30c6d.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20200430221834-fc25d7d30c6d.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20200708004538-1a94d8640e99.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20200708004538-1a94d8640e99.mod mirror://goproxy//github.com/google/renameio/@v/v0.1.0.mod -> github.com%2Fgoogle%2Frenameio%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/google/uuid/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/uuid/@v/v1.1.1.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/google/uuid/@v/v1.1.2.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/google/uuid/@v/v1.2.0.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/google/uuid/@v/v1.3.0.zip -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.3.0.zip mirror://goproxy//github.com/google/uuid/@v/v1.3.0.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/googleapis/gax-go/@v/v2.0.0+incompatible.mod -> github.com%2Fgoogleapis%2Fgax-go%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/googleapis/gax-go/v2/@v/v2.0.3.mod -> github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.3.mod mirror://goproxy//github.com/googleapis/gax-go/v2/@v/v2.0.4.mod -> github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.4.mod mirror://goproxy//github.com/googleapis/gax-go/v2/@v/v2.0.5.mod -> github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.5.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20181017120253-0766667cb4d1.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20181017120253-0766667cb4d1.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190430165422-3e4dfb77656c.zip -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.zip mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190430165422-3e4dfb77656c.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.mod mirror://goproxy//github.com/gorilla/context/@v/v1.1.1.mod -> github.com%2Fgorilla%2Fcontext%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/gorilla/mux/@v/v1.6.2.mod -> github.com%2Fgorilla%2Fmux%2F@v%2Fv1.6.2.mod mirror://goproxy//github.com/gorilla/mux/@v/v1.7.3.mod -> github.com%2Fgorilla%2Fmux%2F@v%2Fv1.7.3.mod mirror://goproxy//github.com/gorilla/websocket/@v/v0.0.0-20170926233335-4201258b820c.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv0.0.0-20170926233335-4201258b820c.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.0.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.1.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.2.zip -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.2.zip mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.2.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/gregjones/httpcache/@v/v0.0.0-20180305231024-9cad4c3443a7.mod -> github.com%2Fgregjones%2Fhttpcache%2F@v%2Fv0.0.0-20180305231024-9cad4c3443a7.mod mirror://goproxy//github.com/grpc-ecosystem/go-grpc-middleware/@v/v1.0.1-0.20190118093823-f849b5445de4.mod -> github.com%2Fgrpc-ecosystem%2Fgo-grpc-middleware%2F@v%2Fv1.0.1-0.20190118093823-f849b5445de4.mod mirror://goproxy//github.com/grpc-ecosystem/go-grpc-prometheus/@v/v1.2.0.mod -> github.com%2Fgrpc-ecosystem%2Fgo-grpc-prometheus%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/grpc-ecosystem/grpc-gateway/@v/v1.5.0.mod -> github.com%2Fgrpc-ecosystem%2Fgrpc-gateway%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/grpc-ecosystem/grpc-gateway/@v/v1.9.5.mod -> github.com%2Fgrpc-ecosystem%2Fgrpc-gateway%2F@v%2Fv1.9.5.mod mirror://goproxy//github.com/grpc-ecosystem/grpc-gateway/@v/v1.16.0.mod -> github.com%2Fgrpc-ecosystem%2Fgrpc-gateway%2F@v%2Fv1.16.0.mod mirror://goproxy//github.com/gxed/hashland/keccakpg/@v/v0.0.1.mod -> github.com%2Fgxed%2Fhashland%2Fkeccakpg%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/gxed/hashland/murmur3/@v/v0.0.1.mod -> github.com%2Fgxed%2Fhashland%2Fmurmur3%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/hannahhoward/cbor-gen-for/@v/v0.0.0-20200817222906-ea96cece81f1.mod -> github.com%2Fhannahhoward%2Fcbor-gen-for%2F@v%2Fv0.0.0-20200817222906-ea96cece81f1.mod mirror://goproxy//github.com/hannahhoward/go-pubsub/@v/v0.0.0-20200423002714-8d62886cc36e.zip -> github.com%2Fhannahhoward%2Fgo-pubsub%2F@v%2Fv0.0.0-20200423002714-8d62886cc36e.zip mirror://goproxy//github.com/hannahhoward/go-pubsub/@v/v0.0.0-20200423002714-8d62886cc36e.mod -> github.com%2Fhannahhoward%2Fgo-pubsub%2F@v%2Fv0.0.0-20200423002714-8d62886cc36e.mod mirror://goproxy//github.com/hashicorp/consul/api/@v/v1.3.0.mod -> github.com%2Fhashicorp%2Fconsul%2Fapi%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/hashicorp/consul/sdk/@v/v0.3.0.mod -> github.com%2Fhashicorp%2Fconsul%2Fsdk%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.zip -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-cleanhttp/@v/v0.5.1.mod -> github.com%2Fhashicorp%2Fgo-cleanhttp%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/hashicorp/go-immutable-radix/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fgo-immutable-radix%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-msgpack/@v/v0.5.3.mod -> github.com%2Fhashicorp%2Fgo-msgpack%2F@v%2Fv0.5.3.mod mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.0.mod -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.1.zip -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.1.mod -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/hashicorp/go-rootcerts/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fgo-rootcerts%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-sockaddr/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fgo-sockaddr%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-syslog/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fgo-syslog%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-uuid/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fgo-uuid%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-uuid/@v/v1.0.1.mod -> github.com%2Fhashicorp%2Fgo-uuid%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/hashicorp/go-version/@v/v1.2.0.mod -> github.com%2Fhashicorp%2Fgo-version%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/hashicorp/go.net/@v/v0.0.1.mod -> github.com%2Fhashicorp%2Fgo.net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.0.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.1.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.4.zip -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.4.zip mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.4.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.4.mod mirror://goproxy//github.com/hashicorp/hcl/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fhcl%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/logutils/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Flogutils%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/mdns/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fmdns%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/memberlist/@v/v0.1.3.mod -> github.com%2Fhashicorp%2Fmemberlist%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/hashicorp/serf/@v/v0.8.2.mod -> github.com%2Fhashicorp%2Fserf%2F@v%2Fv0.8.2.mod mirror://goproxy//github.com/hpcloud/tail/@v/v1.0.0.mod -> github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hudl/fargo/@v/v1.3.0.mod -> github.com%2Fhudl%2Ffargo%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/huin/goupnp/@v/v1.0.0.mod -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/huin/goupnp/@v/v1.0.2.zip -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/huin/goupnp/@v/v1.0.2.mod -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/huin/goutil/@v/v0.0.0-20170803182201-1ca381bf3150.mod -> github.com%2Fhuin%2Fgoutil%2F@v%2Fv0.0.0-20170803182201-1ca381bf3150.mod mirror://goproxy//github.com/ianlancetaylor/demangle/@v/v0.0.0-20181102032728-5e5cf60278f6.mod -> github.com%2Fianlancetaylor%2Fdemangle%2F@v%2Fv0.0.0-20181102032728-5e5cf60278f6.mod mirror://goproxy//github.com/inconshreveable/mousetrap/@v/v1.0.0.mod -> github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/influxdata/influxdb1-client/@v/v0.0.0-20191209144304-8bf82d3c094d.mod -> github.com%2Finfluxdata%2Finfluxdb1-client%2F@v%2Fv0.0.0-20191209144304-8bf82d3c094d.mod mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.1.mod -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.4.zip -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.4.mod -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-bitfield/@v/v1.0.0.zip -> github.com%2Fipfs%2Fgo-bitfield%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/ipfs/go-bitfield/@v/v1.0.0.mod -> github.com%2Fipfs%2Fgo-bitfield%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.0.9.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.2.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.8.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.8.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.3.4.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.3.4.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.5.1.zip -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.5.1.zip mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.5.1.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.4.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.7.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.7.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.2.1.zip -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.2.1.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.6.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-cidutil/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-cidutil/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.3.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.4.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.4.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.5.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.5.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.5.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.5.1.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.5.1.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.5.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/ipfs/go-detect-race/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-detect-race/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.1.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.3.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.7.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.7.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.3.0.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.3.0.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/ipfs/go-ds-flatfs/@v/v0.5.1.zip -> github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.5.1.zip mirror://goproxy//github.com/ipfs/go-ds-flatfs/@v/v0.5.1.mod -> github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.1.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.2.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.2.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.5.0.zip -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.5.0.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/ipfs/go-ds-measure/@v/v0.2.0.zip -> github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/ipfs/go-ds-measure/@v/v0.2.0.mod -> github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/ipfs/go-fetcher/@v/v1.5.0.mod -> github.com%2Fipfs%2Fgo-fetcher%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/ipfs/go-fetcher/@v/v1.6.1.zip -> github.com%2Fipfs%2Fgo-fetcher%2F@v%2Fv1.6.1.zip mirror://goproxy//github.com/ipfs/go-fetcher/@v/v1.6.1.mod -> github.com%2Fipfs%2Fgo-fetcher%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/ipfs/go-filestore/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-filestore/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-fs-lock/@v/v0.0.7.zip -> github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/ipfs/go-fs-lock/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-graphsync/@v/v0.11.0.zip -> github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.11.0.zip mirror://goproxy//github.com/ipfs/go-graphsync/@v/v0.11.0.mod -> github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.11.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.4.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.6.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.6.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.2.1.zip -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.2.1.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-blocksutil/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-blocksutil/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ipfs-cmds/@v/v0.6.0.zip -> github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.6.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-cmds/@v/v0.6.0.mod -> github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-config/@v/v0.18.0.zip -> github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.18.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-config/@v/v0.18.0.mod -> github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.18.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.0-20181109222059-70721b86a9a8.mod -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.0-20181109222059-70721b86a9a8.mod mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.1.1.zip -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-interface/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-interface/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-exchange-interface/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-offline/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-offline/@v/v0.1.1.zip -> github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-exchange-offline/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.8.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.9.zip -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.9.zip mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.9.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/ipfs/go-ipfs-keystore/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipfs-keystore%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipfs-keystore/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-keystore%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipfs-pinner/@v/v0.2.1.zip -> github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-pinner/@v/v0.2.1.mod -> github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-posinfo/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-posinfo/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipfs-provider/@v/v0.7.1.zip -> github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.7.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-provider/@v/v0.7.1.mod -> github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.7.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.2.1.zip -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.2.1.mod -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.2.0.zip -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.2.0.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/ipfs/go-ipld-git/@v/v0.1.1.zip -> github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/ipfs/go-ipld-git/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-ipld-legacy/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ipld-legacy%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ipld-legacy/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ipld-legacy%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ipns/@v/v0.1.2.zip -> github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/ipfs/go-ipns/@v/v0.1.2.mod -> github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/ipfs/go-log/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.2.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.3.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.4.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.4.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.5.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.5.zip mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.5.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.5.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.2.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.2.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.3.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.3.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.5.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.5.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.1.1.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.1.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.1.3.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.3.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.3.0.zip -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.3.0.zip mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.3.0.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.3.0.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.0.6.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.2.3.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.2.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.2.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.4.0.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.5.1.zip -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.5.1.zip mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.5.1.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/ipfs/go-metrics-interface/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-metrics-interface/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-metrics-prometheus/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-metrics-prometheus/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-mfs/@v/v0.2.1.zip -> github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/ipfs/go-mfs/@v/v0.2.1.mod -> github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/ipfs/go-namesys/@v/v0.4.0.zip -> github.com%2Fipfs%2Fgo-namesys%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/ipfs/go-namesys/@v/v0.4.0.mod -> github.com%2Fipfs%2Fgo-namesys%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.9.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.2.1.zip -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/ipfs/go-path/@v/v0.2.1.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.2.0.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.7.0.zip -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.7.0.zip mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.7.0.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.7.0.mod mirror://goproxy//github.com/ipfs/go-pinning-service-http-client/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-pinning-service-http-client%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-pinning-service-http-client/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-pinning-service-http-client%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.2.4.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.3.1.zip -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.3.1.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/ipfs/go-unixfsnode/@v/v1.1.2.mod -> github.com%2Fipfs%2Fgo-unixfsnode%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/ipfs/go-unixfsnode/@v/v1.1.3.zip -> github.com%2Fipfs%2Fgo-unixfsnode%2F@v%2Fv1.1.3.zip mirror://goproxy//github.com/ipfs/go-unixfsnode/@v/v1.1.3.mod -> github.com%2Fipfs%2Fgo-unixfsnode%2F@v%2Fv1.1.3.mod mirror://goproxy//github.com/ipfs/go-verifcid/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-verifcid/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.4.0.mod -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.5.2.zip -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.5.2.zip mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.5.2.mod -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.5.2.mod mirror://goproxy//github.com/ipfs/tar-utils/@v/v0.0.2.zip -> github.com%2Fipfs%2Ftar-utils%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/tar-utils/@v/v0.0.2.mod -> github.com%2Fipfs%2Ftar-utils%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipld/go-car/@v/v0.3.2.zip -> github.com%2Fipld%2Fgo-car%2F@v%2Fv0.3.2.zip mirror://goproxy//github.com/ipld/go-car/@v/v0.3.2.mod -> github.com%2Fipld%2Fgo-car%2F@v%2Fv0.3.2.mod mirror://goproxy//github.com/ipld/go-codec-dagpb/@v/v1.2.0.mod -> github.com%2Fipld%2Fgo-codec-dagpb%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/ipld/go-codec-dagpb/@v/v1.3.0.zip -> github.com%2Fipld%2Fgo-codec-dagpb%2F@v%2Fv1.3.0.zip mirror://goproxy//github.com/ipld/go-codec-dagpb/@v/v1.3.0.mod -> github.com%2Fipld%2Fgo-codec-dagpb%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.9.0.mod -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.9.1-0.20210324083106-dc342a9917db.mod -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.9.1-0.20210324083106-dc342a9917db.mod mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.11.0.mod -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.11.0.mod mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.12.3.mod -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.12.3.mod mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.14.1.mod -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.14.1.mod mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.14.2.zip -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.14.2.zip mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.14.2.mod -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.14.2.mod mirror://goproxy//github.com/jackpal/gateway/@v/v1.0.5.mod -> github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.5.mod mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.1.mod -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.2.zip -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.2.mod -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.0.0-20150120210510-1bb1476777ec.mod -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.0.0-20150120210510-1bb1476777ec.mod mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.1.0.zip -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.1.0.mod -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jbenet/go-random/@v/v0.0.0-20190219211222-123a90aedc0c.zip -> github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.zip mirror://goproxy//github.com/jbenet/go-random/@v/v0.0.0-20190219211222-123a90aedc0c.mod -> github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.mod mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.0.0-20150120210811-aac704a3f4f2.mod -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.0.0-20150120210811-aac704a3f4f2.mod mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.1.0.zip -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.1.0.mod -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.0.0-20160826012719-b497e2f366b8.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.0.0-20160826012719-b497e2f366b8.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.3.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.4.zip -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.4.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/jellevandenhooff/dkim/@v/v0.0.0-20150330215556-f50fe3d243e1.mod -> github.com%2Fjellevandenhooff%2Fdkim%2F@v%2Fv0.0.0-20150330215556-f50fe3d243e1.mod mirror://goproxy//github.com/jessevdk/go-flags/@v/v0.0.0-20141203071132-1679536dcc89.mod -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv0.0.0-20141203071132-1679536dcc89.mod mirror://goproxy//github.com/jessevdk/go-flags/@v/v1.4.0.mod -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/jmespath/go-jmespath/@v/v0.0.0-20180206201540-c2b33e8439af.mod -> github.com%2Fjmespath%2Fgo-jmespath%2F@v%2Fv0.0.0-20180206201540-c2b33e8439af.mod mirror://goproxy//github.com/jonboulle/clockwork/@v/v0.1.0.mod -> github.com%2Fjonboulle%2Fclockwork%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jpillora/backoff/@v/v1.0.0.mod -> github.com%2Fjpillora%2Fbackoff%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/jrick/logrotate/@v/v1.0.0.mod -> github.com%2Fjrick%2Flogrotate%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.6.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.6.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.7.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.7.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.8.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.8.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.10.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.10.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.11.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.11.mod mirror://goproxy//github.com/jstemmer/go-junit-report/@v/v0.0.0-20190106144839-af01ea7f8024.mod -> github.com%2Fjstemmer%2Fgo-junit-report%2F@v%2Fv0.0.0-20190106144839-af01ea7f8024.mod mirror://goproxy//github.com/jstemmer/go-junit-report/@v/v0.9.1.mod -> github.com%2Fjstemmer%2Fgo-junit-report%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/jtolds/gls/@v/v4.2.1+incompatible.mod -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.2.1+incompatible.mod mirror://goproxy//github.com/jtolds/gls/@v/v4.20.0+incompatible.zip -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.zip mirror://goproxy//github.com/jtolds/gls/@v/v4.20.0+incompatible.mod -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.mod mirror://goproxy//github.com/julienschmidt/httprouter/@v/v1.2.0.mod -> github.com%2Fjulienschmidt%2Fhttprouter%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/julienschmidt/httprouter/@v/v1.3.0.mod -> github.com%2Fjulienschmidt%2Fhttprouter%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/kami-zh/go-capturer/@v/v0.0.0-20171211120116-e492ea43421d.mod -> github.com%2Fkami-zh%2Fgo-capturer%2F@v%2Fv0.0.0-20171211120116-e492ea43421d.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.1.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.2.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.5.0.zip -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.5.0.zip mirror://goproxy//github.com/kisielk/errcheck/@v/v1.5.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/kisielk/gotool/@v/v1.0.0.mod -> github.com%2Fkisielk%2Fgotool%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/kkdai/bstream/@v/v0.0.0-20161212061736-f391b8402d23.mod -> github.com%2Fkkdai%2Fbstream%2F@v%2Fv0.0.0-20161212061736-f391b8402d23.mod mirror://goproxy//github.com/klauspost/compress/@v/v1.11.7.zip -> github.com%2Fklauspost%2Fcompress%2F@v%2Fv1.11.7.zip mirror://goproxy//github.com/klauspost/compress/@v/v1.11.7.mod -> github.com%2Fklauspost%2Fcompress%2F@v%2Fv1.11.7.mod mirror://goproxy//github.com/klauspost/cpuid/v2/@v/v2.0.4.mod -> github.com%2Fklauspost%2Fcpuid%2Fv2%2F@v%2Fv2.0.4.mod mirror://goproxy//github.com/klauspost/cpuid/v2/@v/v2.0.6.mod -> github.com%2Fklauspost%2Fcpuid%2Fv2%2F@v%2Fv2.0.6.mod mirror://goproxy//github.com/klauspost/cpuid/v2/@v/v2.0.9.zip -> github.com%2Fklauspost%2Fcpuid%2Fv2%2F@v%2Fv2.0.9.zip mirror://goproxy//github.com/klauspost/cpuid/v2/@v/v2.0.9.mod -> github.com%2Fklauspost%2Fcpuid%2Fv2%2F@v%2Fv2.0.9.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.1.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.3.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20180514024734-4a0ed625a78b.mod -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20180514024734-4a0ed625a78b.mod mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20191105050749-2e1c40ed0b5d.mod -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20191105050749-2e1c40ed0b5d.mod mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.2.zip -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.2.mod -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/kr/logfmt/@v/v0.0.0-20140226030751-b84e30acd515.mod -> github.com%2Fkr%2Flogfmt%2F@v%2Fv0.0.0-20140226030751-b84e30acd515.mod mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/pretty/@v/v0.2.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/kr/pretty/@v/v0.2.1.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/kr/pretty/@v/v0.3.0.zip -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/kr/pretty/@v/v0.3.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.1.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.3.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.3.mod mirror://goproxy//github.com/kr/text/@v/v0.1.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/text/@v/v0.2.0.zip -> github.com%2Fkr%2Ftext%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/kr/text/@v/v0.2.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-cidranger/@v/v1.1.0.zip -> github.com%2Flibp2p%2Fgo-cidranger%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/libp2p/go-cidranger/@v/v1.1.0.mod -> github.com%2Flibp2p%2Fgo-cidranger%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/libp2p/go-conn-security/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-conn-security%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-doh-resolver/@v/v0.3.1.zip -> github.com%2Flibp2p%2Fgo-doh-resolver%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/libp2p/go-doh-resolver/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-doh-resolver%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.0.30.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.30.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.6.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.4.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.4.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.8.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.12.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.12.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.13.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.13.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.14.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.14.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.14.3.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.14.3.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.14.4.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.14.4.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.16.0.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.16.0.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.16.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.16.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-asn-util/@v/v0.0.0-20200825225859-85005c6cf052.mod -> github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.0.0-20200825225859-85005c6cf052.mod mirror://goproxy//github.com/libp2p/go-libp2p-asn-util/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-asn-util/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.4.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.4.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.6.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.6.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.6.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.0.9.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-connmgr/@v/v0.2.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-connmgr/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.6.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.6.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.7.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.7.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.8.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.8.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.8.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.8.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.8.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.9.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.10.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.11.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.11.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.11.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.11.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.6.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.6.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.6.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-gostream/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-gostream/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-http/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-http/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-pnet/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-pnet%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-kad-dht/@v/v0.15.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.15.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-kad-dht/@v/v0.15.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.15.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.4.7.zip -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.7.zip mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.4.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-metrics/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-metrics%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.4.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.4.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.4.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-noise/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-noise/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-noise/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-noise/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.8.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.8.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-pnet/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-pnet/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-protocol/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-protocol/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.6.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.6.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.6.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub-router/@v/v0.5.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub-router/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.10.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.11.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.11.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.13.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.13.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.15.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.15.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.15.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.15.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-routing/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-routing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-routing-helpers/@v/v0.2.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-routing-helpers/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.8.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.8.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.5.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.5.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.8.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.8.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.8.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.2-0.20200422005655-8775583591d8.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.2-0.20200422005655-8775583591d8.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.4.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.4.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.5.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.3.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.4.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.4.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.4.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.5.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-xor/@v/v0.0.0-20210714161855-5c005aca55db.zip -> github.com%2Flibp2p%2Fgo-libp2p-xor%2F@v%2Fv0.0.0-20210714161855-5c005aca55db.zip mirror://goproxy//github.com/libp2p/go-libp2p-xor/@v/v0.0.0-20210714161855-5c005aca55db.mod -> github.com%2Flibp2p%2Fgo-libp2p-xor%2F@v%2Fv0.0.0-20210714161855-5c005aca55db.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.8.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.8.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.5.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.5.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.5.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.6.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.6.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.6.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-nat/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.5.mod -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.5.mod mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.6.zip -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.6.zip mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.6.mod -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.6.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.7.zip -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.7.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-socket-activation/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-socket-activation/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-stream-muxer/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-stream-muxer/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.7.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.7.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-testutil/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-testutil/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.5.0.zip -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.1.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.2.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.3.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.3.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.3.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.3.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.5.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.5.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.7.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.7.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.4.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.4.1.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.4.1.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.4.1.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/libp2p/go-yamux/v2/@v/v2.0.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.0.0.mod mirror://goproxy//github.com/libp2p/go-yamux/v2/@v/v2.1.1.mod -> github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.1.1.mod mirror://goproxy//github.com/libp2p/go-yamux/v2/@v/v2.2.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.2.0.mod mirror://goproxy//github.com/libp2p/go-yamux/v2/@v/v2.3.0.zip -> github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.3.0.zip mirror://goproxy//github.com/libp2p/go-yamux/v2/@v/v2.3.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.3.0.mod mirror://goproxy//github.com/libp2p/zeroconf/v2/@v/v2.1.1.zip -> github.com%2Flibp2p%2Fzeroconf%2Fv2%2F@v%2Fv2.1.1.zip mirror://goproxy//github.com/libp2p/zeroconf/v2/@v/v2.1.1.mod -> github.com%2Flibp2p%2Fzeroconf%2Fv2%2F@v%2Fv2.1.1.mod mirror://goproxy//github.com/lightstep/lightstep-tracer-common/golang/gogo/@v/v0.0.0-20190605223551-bc2310a04743.mod -> github.com%2Flightstep%2Flightstep-tracer-common%2Fgolang%2Fgogo%2F@v%2Fv0.0.0-20190605223551-bc2310a04743.mod mirror://goproxy//github.com/lightstep/lightstep-tracer-go/@v/v0.18.1.mod -> github.com%2Flightstep%2Flightstep-tracer-go%2F@v%2Fv0.18.1.mod mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.19.3.mod -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.19.3.mod mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.21.2.mod -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.21.2.mod mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.23.0.mod -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.23.0.mod mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.24.0.zip -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.24.0.zip mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.24.0.mod -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.24.0.mod mirror://goproxy//github.com/lunixbochs/vtclean/@v/v1.0.0.mod -> github.com%2Flunixbochs%2Fvtclean%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/lyft/protoc-gen-validate/@v/v0.0.13.mod -> github.com%2Flyft%2Fprotoc-gen-validate%2F@v%2Fv0.0.13.mod mirror://goproxy//github.com/magiconair/properties/@v/v1.8.0.mod -> github.com%2Fmagiconair%2Fproperties%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/mailru/easyjson/@v/v0.0.0-20180823135443-60711f1a8329.mod -> github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20180823135443-60711f1a8329.mod mirror://goproxy//github.com/mailru/easyjson/@v/v0.0.0-20190312143242-1de009706dbe.mod -> github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20190312143242-1de009706dbe.mod mirror://goproxy//github.com/marten-seemann/qpack/@v/v0.2.1.mod -> github.com%2Fmarten-seemann%2Fqpack%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/marten-seemann/qtls/@v/v0.10.0.mod -> github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/marten-seemann/qtls-go1-15/@v/v0.1.1.mod -> github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/marten-seemann/qtls-go1-15/@v/v0.1.4.mod -> github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/marten-seemann/qtls-go1-15/@v/v0.1.5.mod -> github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.5.mod mirror://goproxy//github.com/marten-seemann/qtls-go1-16/@v/v0.1.4.zip -> github.com%2Fmarten-seemann%2Fqtls-go1-16%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/marten-seemann/qtls-go1-16/@v/v0.1.4.mod -> github.com%2Fmarten-seemann%2Fqtls-go1-16%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/marten-seemann/qtls-go1-17/@v/v0.1.0-rc.1.mod -> github.com%2Fmarten-seemann%2Fqtls-go1-17%2F@v%2Fv0.1.0-rc.1.mod mirror://goproxy//github.com/marten-seemann/qtls-go1-17/@v/v0.1.0.zip -> github.com%2Fmarten-seemann%2Fqtls-go1-17%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/marten-seemann/qtls-go1-17/@v/v0.1.0.mod -> github.com%2Fmarten-seemann%2Fqtls-go1-17%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/marten-seemann/tcp/@v/v0.0.0-20210406111302-dfbc87cc63fd.zip -> github.com%2Fmarten-seemann%2Ftcp%2F@v%2Fv0.0.0-20210406111302-dfbc87cc63fd.zip mirror://goproxy//github.com/marten-seemann/tcp/@v/v0.0.0-20210406111302-dfbc87cc63fd.mod -> github.com%2Fmarten-seemann%2Ftcp%2F@v%2Fv0.0.0-20210406111302-dfbc87cc63fd.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.1.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.2.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.zip -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.3.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.4.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.5.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.8.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.13.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.13.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.13.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.13.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.2.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.4.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.4.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.zip -> github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.mod -> github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/mgutz/ansi/@v/v0.0.0-20170206155736-9520e82c474b.zip -> github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.zip mirror://goproxy//github.com/mgutz/ansi/@v/v0.0.0-20170206155736-9520e82c474b.mod -> github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.mod mirror://goproxy//github.com/microcosm-cc/bluemonday/@v/v1.0.1.mod -> github.com%2Fmicrocosm-cc%2Fbluemonday%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/miekg/dns/@v/v1.0.14.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.0.14.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.12.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.12.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.28.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.28.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.31.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.31.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.41.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.41.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.43.zip -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.43.zip mirror://goproxy//github.com/miekg/dns/@v/v1.1.43.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.43.mod mirror://goproxy//github.com/mikioh/tcp/@v/v0.0.0-20190314235350-803a9b46060c.zip -> github.com%2Fmikioh%2Ftcp%2F@v%2Fv0.0.0-20190314235350-803a9b46060c.zip mirror://goproxy//github.com/mikioh/tcp/@v/v0.0.0-20190314235350-803a9b46060c.mod -> github.com%2Fmikioh%2Ftcp%2F@v%2Fv0.0.0-20190314235350-803a9b46060c.mod mirror://goproxy//github.com/mikioh/tcpinfo/@v/v0.0.0-20190314235526-30a79bb1804b.zip -> github.com%2Fmikioh%2Ftcpinfo%2F@v%2Fv0.0.0-20190314235526-30a79bb1804b.zip mirror://goproxy//github.com/mikioh/tcpinfo/@v/v0.0.0-20190314235526-30a79bb1804b.mod -> github.com%2Fmikioh%2Ftcpinfo%2F@v%2Fv0.0.0-20190314235526-30a79bb1804b.mod mirror://goproxy//github.com/mikioh/tcpopt/@v/v0.0.0-20190314235656-172688c1accc.zip -> github.com%2Fmikioh%2Ftcpopt%2F@v%2Fv0.0.0-20190314235656-172688c1accc.zip mirror://goproxy//github.com/mikioh/tcpopt/@v/v0.0.0-20190314235656-172688c1accc.mod -> github.com%2Fmikioh%2Ftcpopt%2F@v%2Fv0.0.0-20190314235656-172688c1accc.mod mirror://goproxy//github.com/minio/blake2b-simd/@v/v0.0.0-20160723061019-3f5f724cb5b1.zip -> github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.zip mirror://goproxy//github.com/minio/blake2b-simd/@v/v0.0.0-20160723061019-3f5f724cb5b1.mod -> github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190131020904-2d45a736cd16.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190131020904-2d45a736cd16.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190328051042-05b4dd3047e5.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190328051042-05b4dd3047e5.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.0.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1-0.20190913151208-6de447530771.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1-0.20190913151208-6de447530771.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v1.0.0.zip -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/minio/sha256-simd/@v/v1.0.0.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/mitchellh/cli/@v/v1.0.0.mod -> github.com%2Fmitchellh%2Fcli%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.0.0.mod -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.zip -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.mod -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mitchellh/go-testing-interface/@v/v1.0.0.mod -> github.com%2Fmitchellh%2Fgo-testing-interface%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/mitchellh/gox/@v/v0.4.0.mod -> github.com%2Fmitchellh%2Fgox%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/mitchellh/iochan/@v/v1.0.0.mod -> github.com%2Fmitchellh%2Fiochan%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/mitchellh/mapstructure/@v/v0.0.0-20160808181253-ca63d7c062ee.mod -> github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv0.0.0-20160808181253-ca63d7c062ee.mod mirror://goproxy//github.com/mitchellh/mapstructure/@v/v1.1.2.mod -> github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180228061459-e0a39a4cb421.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180228061459-e0a39a4cb421.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180306012644-bacd9c7ef1dd.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180306012644-bacd9c7ef1dd.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v0.0.0-20180701023420-4b7aa43c6742.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv0.0.0-20180701023420-4b7aa43c6742.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v1.0.1.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.0.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.1.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.2.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.3.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.3.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.2.0.zip -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/mr-tron/base58/@v/v1.2.0.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/multiformats/go-base32/@v/v0.0.3.zip -> github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/multiformats/go-base32/@v/v0.0.3.mod -> github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/multiformats/go-base36/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-base36%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-base36/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-base36%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.4.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.3.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.3.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.4.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.4.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.4.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.4.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.3.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.3.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.3.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.3.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.4.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.5.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.5.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.3.zip -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.3.mod -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/multiformats/go-multicodec/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multicodec%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multicodec/@v/v0.3.0.zip -> github.com%2Fmultiformats%2Fgo-multicodec%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/multiformats/go-multicodec/@v/v0.3.0.mod -> github.com%2Fmultiformats%2Fgo-multicodec%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.5.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.8.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.9.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.10.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.10.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.13.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.13.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.14.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.14.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.15.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.15.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.16.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.16.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.4.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.2.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.2.2.zip -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.2.2.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.5.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.6.zip -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.6.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/mwitkow/go-conntrack/@v/v0.0.0-20161129095857-cc309e4a2223.mod -> github.com%2Fmwitkow%2Fgo-conntrack%2F@v%2Fv0.0.0-20161129095857-cc309e4a2223.mod mirror://goproxy//github.com/mwitkow/go-conntrack/@v/v0.0.0-20190716064945-2f068394615f.mod -> github.com%2Fmwitkow%2Fgo-conntrack%2F@v%2Fv0.0.0-20190716064945-2f068394615f.mod mirror://goproxy//github.com/nats-io/jwt/@v/v0.3.0.mod -> github.com%2Fnats-io%2Fjwt%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/nats-io/jwt/@v/v0.3.2.mod -> github.com%2Fnats-io%2Fjwt%2F@v%2Fv0.3.2.mod mirror://goproxy//github.com/nats-io/nats-server/v2/@v/v2.1.2.mod -> github.com%2Fnats-io%2Fnats-server%2Fv2%2F@v%2Fv2.1.2.mod mirror://goproxy//github.com/nats-io/nats.go/@v/v1.9.1.mod -> github.com%2Fnats-io%2Fnats.go%2F@v%2Fv1.9.1.mod mirror://goproxy//github.com/nats-io/nkeys/@v/v0.1.0.mod -> github.com%2Fnats-io%2Fnkeys%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/nats-io/nkeys/@v/v0.1.3.mod -> github.com%2Fnats-io%2Fnkeys%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/nats-io/nuid/@v/v1.0.1.mod -> github.com%2Fnats-io%2Fnuid%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/neelance/astrewrite/@v/v0.0.0-20160511093645-99348263ae86.mod -> github.com%2Fneelance%2Fastrewrite%2F@v%2Fv0.0.0-20160511093645-99348263ae86.mod mirror://goproxy//github.com/neelance/sourcemap/@v/v0.0.0-20151028013722-8c68805598ab.mod -> github.com%2Fneelance%2Fsourcemap%2F@v%2Fv0.0.0-20151028013722-8c68805598ab.mod mirror://goproxy//github.com/nxadm/tail/@v/v1.4.4.mod -> github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.4.mod mirror://goproxy//github.com/nxadm/tail/@v/v1.4.8.zip -> github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.8.zip mirror://goproxy//github.com/nxadm/tail/@v/v1.4.8.mod -> github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.8.mod mirror://goproxy//github.com/oklog/oklog/@v/v0.3.2.mod -> github.com%2Foklog%2Foklog%2F@v%2Fv0.3.2.mod mirror://goproxy//github.com/oklog/run/@v/v1.0.0.mod -> github.com%2Foklog%2Frun%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/olekukonko/tablewriter/@v/v0.0.0-20170122224234-a0225b3f23b5.mod -> github.com%2Folekukonko%2Ftablewriter%2F@v%2Fv0.0.0-20170122224234-a0225b3f23b5.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.6.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.7.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.8.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.12.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.12.1.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.1.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.14.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.14.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.16.2.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.16.2.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.16.4.zip -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.16.4.zip mirror://goproxy//github.com/onsi/ginkgo/@v/v1.16.4.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.16.4.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.4.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.4.3.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.4.3.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.5.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.7.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.7.1.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.9.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.10.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.10.1.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.13.0.zip -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.13.0.zip mirror://goproxy//github.com/onsi/gomega/@v/v1.13.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.13.0.mod mirror://goproxy//github.com/op/go-logging/@v/v0.0.0-20160315200505-970db520ece7.mod -> github.com%2Fop%2Fgo-logging%2F@v%2Fv0.0.0-20160315200505-970db520ece7.mod mirror://goproxy//github.com/opentracing-contrib/go-observer/@v/v0.0.0-20170622124052-a52f23424492.mod -> github.com%2Fopentracing-contrib%2Fgo-observer%2F@v%2Fv0.0.0-20170622124052-a52f23424492.mod mirror://goproxy//github.com/opentracing/basictracer-go/@v/v1.0.0.mod -> github.com%2Fopentracing%2Fbasictracer-go%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.0.2.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.1.0.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.2.0.zip -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.2.0.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/openzipkin-contrib/zipkin-go-opentracing/@v/v0.4.5.mod -> github.com%2Fopenzipkin-contrib%2Fzipkin-go-opentracing%2F@v%2Fv0.4.5.mod mirror://goproxy//github.com/openzipkin/zipkin-go/@v/v0.1.1.mod -> github.com%2Fopenzipkin%2Fzipkin-go%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/openzipkin/zipkin-go/@v/v0.1.6.mod -> github.com%2Fopenzipkin%2Fzipkin-go%2F@v%2Fv0.1.6.mod mirror://goproxy//github.com/openzipkin/zipkin-go/@v/v0.2.1.mod -> github.com%2Fopenzipkin%2Fzipkin-go%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/openzipkin/zipkin-go/@v/v0.2.2.mod -> github.com%2Fopenzipkin%2Fzipkin-go%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/pact-foundation/pact-go/@v/v1.0.4.mod -> github.com%2Fpact-foundation%2Fpact-go%2F@v%2Fv1.0.4.mod mirror://goproxy//github.com/pascaldekloe/goe/@v/v0.0.0-20180627143212-57f6aae5913c.mod -> github.com%2Fpascaldekloe%2Fgoe%2F@v%2Fv0.0.0-20180627143212-57f6aae5913c.mod mirror://goproxy//github.com/pborman/uuid/@v/v1.2.0.mod -> github.com%2Fpborman%2Fuuid%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/pelletier/go-toml/@v/v1.2.0.mod -> github.com%2Fpelletier%2Fgo-toml%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/performancecopilot/speed/@v/v3.0.0+incompatible.mod -> github.com%2Fperformancecopilot%2Fspeed%2F@v%2Fv3.0.0+incompatible.mod mirror://goproxy//github.com/pierrec/lz4/@v/v1.0.2-0.20190131084431-473cd7ce01a1.mod -> github.com%2Fpierrec%2Flz4%2F@v%2Fv1.0.2-0.20190131084431-473cd7ce01a1.mod mirror://goproxy//github.com/pierrec/lz4/@v/v2.0.5+incompatible.mod -> github.com%2Fpierrec%2Flz4%2F@v%2Fv2.0.5+incompatible.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.0.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.zip -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.zip mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/pkg/profile/@v/v1.2.1.mod -> github.com%2Fpkg%2Fprofile%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190221155625-df39d6c2d992.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190221155625-df39d6c2d992.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190408063855-01bf1e26dd14.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190408063855-01bf1e26dd14.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190807091052-3d65705ee9f1.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190807091052-3d65705ee9f1.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20201211092308-30ac6d18308e.zip -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20201211092308-30ac6d18308e.zip mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20201211092308-30ac6d18308e.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20201211092308-30ac6d18308e.mod mirror://goproxy//github.com/posener/complete/@v/v1.1.1.mod -> github.com%2Fposener%2Fcomplete%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.8.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.1.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.2.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.2.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.3-0.20190127221311-3c4408c8b829.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.3-0.20190127221311-3c4408c8b829.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.0.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.3.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.7.1.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.7.1.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.9.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.10.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.10.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.11.0.zip -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.11.0.zip mirror://goproxy//github.com/prometheus/client_golang/@v/v1.11.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.11.0.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20180712105110-5c3871d89910.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20180712105110-5c3871d89910.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190115171406-56726106282f.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190115171406-56726106282f.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190129233127-fd36f4220a90.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190129233127-fd36f4220a90.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190812154241-14fe0d1b01d4.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190812154241-14fe0d1b01d4.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.1.0.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.2.0.zip -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/prometheus/client_model/@v/v0.2.0.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20180801064454-c7de2306084e.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20180801064454-c7de2306084e.mod mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20181126121408-4724e9255275.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181126121408-4724e9255275.mod mirror://goproxy//github.com/prometheus/common/@v/v0.2.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.4.1.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/prometheus/common/@v/v0.7.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.7.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.10.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.15.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.15.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.18.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.18.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.26.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.26.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.28.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.28.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.30.0.zip -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.30.0.zip mirror://goproxy//github.com/prometheus/common/@v/v0.30.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.30.0.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20180725123919-05ee40e3a273.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20180725123919-05ee40e3a273.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181005140218-185b4288413d.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181005140218-185b4288413d.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181204211112-1dc9a6cbc91a.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181204211112-1dc9a6cbc91a.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20190117184657-bf6a532e95b1.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20190117184657-bf6a532e95b1.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.2.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.8.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.1.3.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.2.0.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.6.0.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.7.3.zip -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.7.3.zip mirror://goproxy//github.com/prometheus/procfs/@v/v0.7.3.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.7.3.mod mirror://goproxy//github.com/prometheus/statsd_exporter/@v/v0.21.0.zip -> github.com%2Fprometheus%2Fstatsd_exporter%2F@v%2Fv0.21.0.zip mirror://goproxy//github.com/prometheus/statsd_exporter/@v/v0.21.0.mod -> github.com%2Fprometheus%2Fstatsd_exporter%2F@v%2Fv0.21.0.mod mirror://goproxy//github.com/rcrowley/go-metrics/@v/v0.0.0-20181016184325-3113b8401b8a.mod -> github.com%2Frcrowley%2Fgo-metrics%2F@v%2Fv0.0.0-20181016184325-3113b8401b8a.mod mirror://goproxy//github.com/rogpeppe/fastuuid/@v/v0.0.0-20150106093220-6724a57986af.mod -> github.com%2Frogpeppe%2Ffastuuid%2F@v%2Fv0.0.0-20150106093220-6724a57986af.mod mirror://goproxy//github.com/rogpeppe/fastuuid/@v/v1.2.0.mod -> github.com%2Frogpeppe%2Ffastuuid%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/rogpeppe/go-internal/@v/v1.3.0.mod -> github.com%2Frogpeppe%2Fgo-internal%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/rogpeppe/go-internal/@v/v1.6.1.zip -> github.com%2Frogpeppe%2Fgo-internal%2F@v%2Fv1.6.1.zip mirror://goproxy//github.com/rogpeppe/go-internal/@v/v1.6.1.mod -> github.com%2Frogpeppe%2Fgo-internal%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/rs/cors/@v/v1.7.0.zip -> github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/rs/cors/@v/v1.7.0.mod -> github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/russross/blackfriday/@v/v1.5.2.mod -> github.com%2Frussross%2Fblackfriday%2F@v%2Fv1.5.2.mod mirror://goproxy//github.com/russross/blackfriday/v2/@v/v2.0.1.mod -> github.com%2Frussross%2Fblackfriday%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/rwcarlsen/goexif/@v/v0.0.0-20190401172101-9e8deecbddbd.mod -> github.com%2Frwcarlsen%2Fgoexif%2F@v%2Fv0.0.0-20190401172101-9e8deecbddbd.mod mirror://goproxy//github.com/ryanuber/columnize/@v/v0.0.0-20160712163229-9b3edd62028f.mod -> github.com%2Fryanuber%2Fcolumnize%2F@v%2Fv0.0.0-20160712163229-9b3edd62028f.mod mirror://goproxy//github.com/samuel/go-zookeeper/@v/v0.0.0-20190923202752-2cc03de413da.mod -> github.com%2Fsamuel%2Fgo-zookeeper%2F@v%2Fv0.0.0-20190923202752-2cc03de413da.mod mirror://goproxy//github.com/sean-/seed/@v/v0.0.0-20170313163322-e2103e2c3529.mod -> github.com%2Fsean-%2Fseed%2F@v%2Fv0.0.0-20170313163322-e2103e2c3529.mod mirror://goproxy//github.com/sergi/go-diff/@v/v1.0.0.mod -> github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/shurcoo!l/component/@v/v0.0.0-20170202220835-f88ec8f54cc4.mod -> github.com%2Fshurcoo!l%2Fcomponent%2F@v%2Fv0.0.0-20170202220835-f88ec8f54cc4.mod mirror://goproxy//github.com/shurcoo!l/events/@v/v0.0.0-20181021180414-410e4ca65f48.mod -> github.com%2Fshurcoo!l%2Fevents%2F@v%2Fv0.0.0-20181021180414-410e4ca65f48.mod mirror://goproxy//github.com/shurcoo!l/github_flavored_markdown/@v/v0.0.0-20181002035957-2122de532470.mod -> github.com%2Fshurcoo!l%2Fgithub_flavored_markdown%2F@v%2Fv0.0.0-20181002035957-2122de532470.mod mirror://goproxy//github.com/shurcoo!l/go/@v/v0.0.0-20180423040247-9e1955d9fb6e.mod -> github.com%2Fshurcoo!l%2Fgo%2F@v%2Fv0.0.0-20180423040247-9e1955d9fb6e.mod mirror://goproxy//github.com/shurcoo!l/go-goon/@v/v0.0.0-20170922171312-37c2f522c041.mod -> github.com%2Fshurcoo!l%2Fgo-goon%2F@v%2Fv0.0.0-20170922171312-37c2f522c041.mod mirror://goproxy//github.com/shurcoo!l/gofontwoff/@v/v0.0.0-20180329035133-29b52fc0a18d.mod -> github.com%2Fshurcoo!l%2Fgofontwoff%2F@v%2Fv0.0.0-20180329035133-29b52fc0a18d.mod mirror://goproxy//github.com/shurcoo!l/gopherjslib/@v/v0.0.0-20160914041154-feb6d3990c2c.mod -> github.com%2Fshurcoo!l%2Fgopherjslib%2F@v%2Fv0.0.0-20160914041154-feb6d3990c2c.mod mirror://goproxy//github.com/shurcoo!l/highlight_diff/@v/v0.0.0-20170515013008-09bb4053de1b.mod -> github.com%2Fshurcoo!l%2Fhighlight_diff%2F@v%2Fv0.0.0-20170515013008-09bb4053de1b.mod mirror://goproxy//github.com/shurcoo!l/highlight_go/@v/v0.0.0-20181028180052-98c3abbbae20.mod -> github.com%2Fshurcoo!l%2Fhighlight_go%2F@v%2Fv0.0.0-20181028180052-98c3abbbae20.mod mirror://goproxy//github.com/shurcoo!l/home/@v/v0.0.0-20181020052607-80b7ffcb30f9.mod -> github.com%2Fshurcoo!l%2Fhome%2F@v%2Fv0.0.0-20181020052607-80b7ffcb30f9.mod mirror://goproxy//github.com/shurcoo!l/htmlg/@v/v0.0.0-20170918183704-d01228ac9e50.mod -> github.com%2Fshurcoo!l%2Fhtmlg%2F@v%2Fv0.0.0-20170918183704-d01228ac9e50.mod mirror://goproxy//github.com/shurcoo!l/httperror/@v/v0.0.0-20170206035902-86b7830d14cc.mod -> github.com%2Fshurcoo!l%2Fhttperror%2F@v%2Fv0.0.0-20170206035902-86b7830d14cc.mod mirror://goproxy//github.com/shurcoo!l/httpfs/@v/v0.0.0-20171119174359-809beceb2371.mod -> github.com%2Fshurcoo!l%2Fhttpfs%2F@v%2Fv0.0.0-20171119174359-809beceb2371.mod mirror://goproxy//github.com/shurcoo!l/httpgzip/@v/v0.0.0-20180522190206-b1c53ac65af9.mod -> github.com%2Fshurcoo!l%2Fhttpgzip%2F@v%2Fv0.0.0-20180522190206-b1c53ac65af9.mod mirror://goproxy//github.com/shurcoo!l/issues/@v/v0.0.0-20181008053335-6292fdc1e191.mod -> github.com%2Fshurcoo!l%2Fissues%2F@v%2Fv0.0.0-20181008053335-6292fdc1e191.mod mirror://goproxy//github.com/shurcoo!l/issuesapp/@v/v0.0.0-20180602232740-048589ce2241.mod -> github.com%2Fshurcoo!l%2Fissuesapp%2F@v%2Fv0.0.0-20180602232740-048589ce2241.mod mirror://goproxy//github.com/shurcoo!l/notifications/@v/v0.0.0-20181007000457-627ab5aea122.mod -> github.com%2Fshurcoo!l%2Fnotifications%2F@v%2Fv0.0.0-20181007000457-627ab5aea122.mod mirror://goproxy//github.com/shurcoo!l/octicon/@v/v0.0.0-20181028054416-fa4f57f9efb2.mod -> github.com%2Fshurcoo!l%2Focticon%2F@v%2Fv0.0.0-20181028054416-fa4f57f9efb2.mod mirror://goproxy//github.com/shurcoo!l/reactions/@v/v0.0.0-20181006231557-f2e0b4ca5b82.mod -> github.com%2Fshurcoo!l%2Freactions%2F@v%2Fv0.0.0-20181006231557-f2e0b4ca5b82.mod mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v0.0.0-20170918181015-86672fcb3f95.mod -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv0.0.0-20170918181015-86672fcb3f95.mod mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v1.0.0.mod -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/shurcoo!l/users/@v/v0.0.0-20180125191416-49c67e49c537.mod -> github.com%2Fshurcoo!l%2Fusers%2F@v%2Fv0.0.0-20180125191416-49c67e49c537.mod mirror://goproxy//github.com/shurcoo!l/webdavfs/@v/v0.0.0-20170829043945-18c3829fa133.mod -> github.com%2Fshurcoo!l%2Fwebdavfs%2F@v%2Fv0.0.0-20170829043945-18c3829fa133.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.2.0.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.4.2.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.6.0.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v0.0.0-20180927180507-b2de0cb4f26d.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv0.0.0-20180927180507-b2de0cb4f26d.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.0.zip -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.0.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190222223459-a17d461953aa.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190222223459-a17d461953aa.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190330032615-68dc04aab96a.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190330032615-68dc04aab96a.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v1.6.4.zip -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv1.6.4.zip mirror://goproxy//github.com/smartystreets/goconvey/@v/v1.6.4.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv1.6.4.mod mirror://goproxy//github.com/smola/gocompat/@v/v0.2.0.mod -> github.com%2Fsmola%2Fgocompat%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/soheilhy/cmux/@v/v0.1.4.mod -> github.com%2Fsoheilhy%2Fcmux%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/sony/gobreaker/@v/v0.4.1.mod -> github.com%2Fsony%2Fgobreaker%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/sourcegraph/annotate/@v/v0.0.0-20160123013949-f4cad6c6324d.mod -> github.com%2Fsourcegraph%2Fannotate%2F@v%2Fv0.0.0-20160123013949-f4cad6c6324d.mod mirror://goproxy//github.com/sourcegraph/syntaxhighlight/@v/v0.0.0-20170531221838-bd320f5d308e.mod -> github.com%2Fsourcegraph%2Fsyntaxhighlight%2F@v%2Fv0.0.0-20170531221838-bd320f5d308e.mod mirror://goproxy//github.com/spacemonkeygo/openssl/@v/v0.0.0-20181017203307-c2dcc5cca94a.mod -> github.com%2Fspacemonkeygo%2Fopenssl%2F@v%2Fv0.0.0-20181017203307-c2dcc5cca94a.mod mirror://goproxy//github.com/spacemonkeygo/spacelog/@v/v0.0.0-20180420211403-2296661a0572.zip -> github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.zip mirror://goproxy//github.com/spacemonkeygo/spacelog/@v/v0.0.0-20180420211403-2296661a0572.mod -> github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v0.0.0-20180118202830-f09979ecbc72.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv0.0.0-20180118202830-f09979ecbc72.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.zip -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/spf13/afero/@v/v1.1.2.mod -> github.com%2Fspf13%2Fafero%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/spf13/cast/@v/v1.3.0.mod -> github.com%2Fspf13%2Fcast%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/spf13/cobra/@v/v0.0.3.mod -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/spf13/cobra/@v/v0.0.5.mod -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/spf13/jwalterweatherman/@v/v1.0.0.mod -> github.com%2Fspf13%2Fjwalterweatherman%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.1.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.3.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/spf13/viper/@v/v1.3.2.mod -> github.com%2Fspf13%2Fviper%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/src-d/envconfig/@v/v1.0.0.mod -> github.com%2Fsrc-d%2Fenvconfig%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/streadway/amqp/@v/v0.0.0-20190404075320-75d898a42a94.mod -> github.com%2Fstreadway%2Famqp%2F@v%2Fv0.0.0-20190404075320-75d898a42a94.mod mirror://goproxy//github.com/streadway/amqp/@v/v0.0.0-20190827072141-edfb9018d271.mod -> github.com%2Fstreadway%2Famqp%2F@v%2Fv0.0.0-20190827072141-edfb9018d271.mod mirror://goproxy//github.com/streadway/handy/@v/v0.0.0-20190108123426-d5acb3125c2a.mod -> github.com%2Fstreadway%2Fhandy%2F@v%2Fv0.0.0-20190108123426-d5acb3125c2a.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.1.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.2.2.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.5.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.6.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.7.0.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.7.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/syndtr/goleveldb/@v/v1.0.0.zip -> github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/syndtr/goleveldb/@v/v1.0.0.mod -> github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/tarm/serial/@v/v0.0.0-20180830185346-98f6abe2eb07.mod -> github.com%2Ftarm%2Fserial%2F@v%2Fv0.0.0-20180830185346-98f6abe2eb07.mod mirror://goproxy//github.com/texttheater/golang-levenshtein/@v/v0.0.0-20180516184445-d188e65d659e.zip -> github.com%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.zip mirror://goproxy//github.com/texttheater/golang-levenshtein/@v/v0.0.0-20180516184445-d188e65d659e.mod -> github.com%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.mod mirror://goproxy//github.com/tmc/grpc-websocket-proxy/@v/v0.0.0-20170815181823-89b8d40f7ca8.mod -> github.com%2Ftmc%2Fgrpc-websocket-proxy%2F@v%2Fv0.0.0-20170815181823-89b8d40f7ca8.mod mirror://goproxy//github.com/tv42/httpunix/@v/v0.0.0-20191220191345-2ba4b9c3382c.zip -> github.com%2Ftv42%2Fhttpunix%2F@v%2Fv0.0.0-20191220191345-2ba4b9c3382c.zip mirror://goproxy//github.com/tv42/httpunix/@v/v0.0.0-20191220191345-2ba4b9c3382c.mod -> github.com%2Ftv42%2Fhttpunix%2F@v%2Fv0.0.0-20191220191345-2ba4b9c3382c.mod mirror://goproxy//github.com/ugorji/go/codec/@v/v0.0.0-20181204163529-d75b2dcb6bc8.mod -> github.com%2Fugorji%2Fgo%2Fcodec%2F@v%2Fv0.0.0-20181204163529-d75b2dcb6bc8.mod mirror://goproxy//github.com/urfave/cli/@v/v1.20.0.mod -> github.com%2Furfave%2Fcli%2F@v%2Fv1.20.0.mod mirror://goproxy//github.com/urfave/cli/@v/v1.22.1.mod -> github.com%2Furfave%2Fcli%2F@v%2Fv1.22.1.mod mirror://goproxy//github.com/urfave/cli/v2/@v/v2.0.0.mod -> github.com%2Furfave%2Fcli%2Fv2%2F@v%2Fv2.0.0.mod mirror://goproxy//github.com/viant/assertly/@v/v0.4.8.mod -> github.com%2Fviant%2Fassertly%2F@v%2Fv0.4.8.mod mirror://goproxy//github.com/viant/toolbox/@v/v0.24.0.mod -> github.com%2Fviant%2Ftoolbox%2F@v%2Fv0.24.0.mod mirror://goproxy//github.com/wangjia184/sortedset/@v/v0.0.0-20160527075905-f5d03557ba30.mod -> github.com%2Fwangjia184%2Fsortedset%2F@v%2Fv0.0.0-20160527075905-f5d03557ba30.mod mirror://goproxy//github.com/warpfork/go-testmark/@v/v0.3.0.mod -> github.com%2Fwarpfork%2Fgo-testmark%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/warpfork/go-testmark/@v/v0.9.0.zip -> github.com%2Fwarpfork%2Fgo-testmark%2F@v%2Fv0.9.0.zip mirror://goproxy//github.com/warpfork/go-testmark/@v/v0.9.0.mod -> github.com%2Fwarpfork%2Fgo-testmark%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20180510122957-5ad1f5abf436.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20180510122957-5ad1f5abf436.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20190328234359-8b3e70f8e830.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20190328234359-8b3e70f8e830.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20200122115046-b9ea61034e4a.zip -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20200122115046-b9ea61034e4a.zip mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20200122115046-b9ea61034e4a.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20200122115046-b9ea61034e4a.mod mirror://goproxy//github.com/whyrusleeping/base32/@v/v0.0.0-20170828182744-c30ac30633cc.zip -> github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.zip mirror://goproxy//github.com/whyrusleeping/base32/@v/v0.0.0-20170828182744-c30ac30633cc.mod -> github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.mod mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20200123233031-1cdf64d27158.mod -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200123233031-1cdf64d27158.mod mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20200710004633-5379fc63235d.mod -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200710004633-5379fc63235d.mod mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20210219115102-f37d292932f2.zip -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20210219115102-f37d292932f2.zip mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20210219115102-f37d292932f2.mod -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20210219115102-f37d292932f2.mod mirror://goproxy//github.com/whyrusleeping/chunker/@v/v0.0.0-20181014151217-fe64bd25879f.zip -> github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.zip mirror://goproxy//github.com/whyrusleeping/chunker/@v/v0.0.0-20181014151217-fe64bd25879f.mod -> github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.mod mirror://goproxy//github.com/whyrusleeping/go-keyspace/@v/v0.0.0-20160322163242-5b898ac5add1.zip -> github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.zip mirror://goproxy//github.com/whyrusleeping/go-keyspace/@v/v0.0.0-20160322163242-5b898ac5add1.mod -> github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.mod mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.0-20170515211332-0457bb6b88fc.mod -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.0-20170515211332-0457bb6b88fc.mod mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.1.mod -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/whyrusleeping/go-notifier/@v/v0.0.0-20170827234753-097c5d47330f.mod -> github.com%2Fwhyrusleeping%2Fgo-notifier%2F@v%2Fv0.0.0-20170827234753-097c5d47330f.mod mirror://goproxy//github.com/whyrusleeping/go-sysinfo/@v/v0.0.0-20190219211824-4a357d4b90b1.zip -> github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.zip mirror://goproxy//github.com/whyrusleeping/go-sysinfo/@v/v0.0.0-20190219211824-4a357d4b90b1.mod -> github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.mod mirror://goproxy//github.com/whyrusleeping/mafmt/@v/v1.2.8.mod -> github.com%2Fwhyrusleeping%2Fmafmt%2F@v%2Fv1.2.8.mod mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20180901202407-ef14215e6b30.mod -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20180901202407-ef14215e6b30.mod mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20190826153040-b9b60ed33aa9.zip -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9.zip mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20190826153040-b9b60ed33aa9.mod -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9.mod mirror://goproxy//github.com/whyrusleeping/multiaddr-filter/@v/v0.0.0-20160516205228-e903e4adabd7.zip -> github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.zip mirror://goproxy//github.com/whyrusleeping/multiaddr-filter/@v/v0.0.0-20160516205228-e903e4adabd7.mod -> github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.mod mirror://goproxy//github.com/whyrusleeping/timecache/@v/v0.0.0-20160911033111-cfcb2f1abfee.zip -> github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.zip mirror://goproxy//github.com/whyrusleeping/timecache/@v/v0.0.0-20160911033111-cfcb2f1abfee.mod -> github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.mod mirror://goproxy//github.com/x-cray/logrus-prefixed-formatter/@v/v0.5.2.mod -> github.com%2Fx-cray%2Flogrus-prefixed-formatter%2F@v%2Fv0.5.2.mod mirror://goproxy//github.com/xiang90/probing/@v/v0.0.0-20190116061207-43a291ad63a2.mod -> github.com%2Fxiang90%2Fprobing%2F@v%2Fv0.0.0-20190116061207-43a291ad63a2.mod mirror://goproxy//github.com/xordataexchange/crypt/@v/v0.0.3-0.20170626215501-b2862e3d0a77.mod -> github.com%2Fxordataexchange%2Fcrypt%2F@v%2Fv0.0.3-0.20170626215501-b2862e3d0a77.mod mirror://goproxy//github.com/yuin/goldmark/@v/v1.1.25.mod -> github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.1.25.mod mirror://goproxy//github.com/yuin/goldmark/@v/v1.1.27.mod -> github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.1.27.mod mirror://goproxy//github.com/yuin/goldmark/@v/v1.1.32.mod -> github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.1.32.mod mirror://goproxy//github.com/yuin/goldmark/@v/v1.2.1.mod -> github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/yuin/goldmark/@v/v1.3.5.mod -> github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.3.5.mod mirror://goproxy//go.etcd.io/bbolt/@v/v1.3.3.mod -> go.etcd.io%2Fbbolt%2F@v%2Fv1.3.3.mod mirror://goproxy//go.etcd.io/etcd/@v/v0.0.0-20191023171146-3cf2f69b5738.mod -> go.etcd.io%2Fetcd%2F@v%2Fv0.0.0-20191023171146-3cf2f69b5738.mod mirror://goproxy//go.opencensus.io/@v/v0.18.0.mod -> go.opencensus.io%2F@v%2Fv0.18.0.mod mirror://goproxy//go.opencensus.io/@v/v0.20.1.mod -> go.opencensus.io%2F@v%2Fv0.20.1.mod mirror://goproxy//go.opencensus.io/@v/v0.20.2.mod -> go.opencensus.io%2F@v%2Fv0.20.2.mod mirror://goproxy//go.opencensus.io/@v/v0.21.0.mod -> go.opencensus.io%2F@v%2Fv0.21.0.mod mirror://goproxy//go.opencensus.io/@v/v0.22.0.mod -> go.opencensus.io%2F@v%2Fv0.22.0.mod mirror://goproxy//go.opencensus.io/@v/v0.22.1.mod -> go.opencensus.io%2F@v%2Fv0.22.1.mod mirror://goproxy//go.opencensus.io/@v/v0.22.2.mod -> go.opencensus.io%2F@v%2Fv0.22.2.mod mirror://goproxy//go.opencensus.io/@v/v0.22.3.mod -> go.opencensus.io%2F@v%2Fv0.22.3.mod mirror://goproxy//go.opencensus.io/@v/v0.22.4.mod -> go.opencensus.io%2F@v%2Fv0.22.4.mod mirror://goproxy//go.opencensus.io/@v/v0.23.0.zip -> go.opencensus.io%2F@v%2Fv0.23.0.zip mirror://goproxy//go.opencensus.io/@v/v0.23.0.mod -> go.opencensus.io%2F@v%2Fv0.23.0.mod mirror://goproxy//go.opentelemetry.io/otel/@v/v0.20.0.zip -> go.opentelemetry.io%2Fotel%2F@v%2Fv0.20.0.zip mirror://goproxy//go.opentelemetry.io/otel/@v/v0.20.0.mod -> go.opentelemetry.io%2Fotel%2F@v%2Fv0.20.0.mod mirror://goproxy//go.opentelemetry.io/otel/metric/@v/v0.20.0.zip -> go.opentelemetry.io%2Fotel%2Fmetric%2F@v%2Fv0.20.0.zip mirror://goproxy//go.opentelemetry.io/otel/metric/@v/v0.20.0.mod -> go.opentelemetry.io%2Fotel%2Fmetric%2F@v%2Fv0.20.0.mod mirror://goproxy//go.opentelemetry.io/otel/oteltest/@v/v0.20.0.zip -> go.opentelemetry.io%2Fotel%2Foteltest%2F@v%2Fv0.20.0.zip mirror://goproxy//go.opentelemetry.io/otel/oteltest/@v/v0.20.0.mod -> go.opentelemetry.io%2Fotel%2Foteltest%2F@v%2Fv0.20.0.mod mirror://goproxy//go.opentelemetry.io/otel/trace/@v/v0.20.0.zip -> go.opentelemetry.io%2Fotel%2Ftrace%2F@v%2Fv0.20.0.zip mirror://goproxy//go.opentelemetry.io/otel/trace/@v/v0.20.0.mod -> go.opentelemetry.io%2Fotel%2Ftrace%2F@v%2Fv0.20.0.mod mirror://goproxy//go.opentelemetry.io/proto/otlp/@v/v0.7.0.mod -> go.opentelemetry.io%2Fproto%2Fotlp%2F@v%2Fv0.7.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.3.2.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.3.2.mod mirror://goproxy//go.uber.org/atomic/@v/v1.4.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.4.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.5.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.5.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.6.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.6.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.7.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.7.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.9.0.zip -> go.uber.org%2Fatomic%2F@v%2Fv1.9.0.zip mirror://goproxy//go.uber.org/atomic/@v/v1.9.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.9.0.mod mirror://goproxy//go.uber.org/dig/@v/v1.12.0.zip -> go.uber.org%2Fdig%2F@v%2Fv1.12.0.zip mirror://goproxy//go.uber.org/dig/@v/v1.12.0.mod -> go.uber.org%2Fdig%2F@v%2Fv1.12.0.mod mirror://goproxy//go.uber.org/fx/@v/v1.15.0.zip -> go.uber.org%2Ffx%2F@v%2Fv1.15.0.zip mirror://goproxy//go.uber.org/fx/@v/v1.15.0.mod -> go.uber.org%2Ffx%2F@v%2Fv1.15.0.mod mirror://goproxy//go.uber.org/goleak/@v/v1.0.0.mod -> go.uber.org%2Fgoleak%2F@v%2Fv1.0.0.mod mirror://goproxy//go.uber.org/goleak/@v/v1.1.10.mod -> go.uber.org%2Fgoleak%2F@v%2Fv1.1.10.mod mirror://goproxy//go.uber.org/goleak/@v/v1.1.11-0.20210813005559-691160354723.mod -> go.uber.org%2Fgoleak%2F@v%2Fv1.1.11-0.20210813005559-691160354723.mod mirror://goproxy//go.uber.org/goleak/@v/v1.1.11.zip -> go.uber.org%2Fgoleak%2F@v%2Fv1.1.11.zip mirror://goproxy//go.uber.org/goleak/@v/v1.1.11.mod -> go.uber.org%2Fgoleak%2F@v%2Fv1.1.11.mod mirror://goproxy//go.uber.org/multierr/@v/v1.1.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.1.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.3.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.3.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.5.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.5.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.6.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.6.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.7.0.zip -> go.uber.org%2Fmultierr%2F@v%2Fv1.7.0.zip mirror://goproxy//go.uber.org/multierr/@v/v1.7.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.7.0.mod mirror://goproxy//go.uber.org/tools/@v/v0.0.0-20190618225709-2cfd321de3ee.mod -> go.uber.org%2Ftools%2F@v%2Fv0.0.0-20190618225709-2cfd321de3ee.mod mirror://goproxy//go.uber.org/zap/@v/v1.10.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.10.0.mod mirror://goproxy//go.uber.org/zap/@v/v1.13.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.13.0.mod mirror://goproxy//go.uber.org/zap/@v/v1.14.1.mod -> go.uber.org%2Fzap%2F@v%2Fv1.14.1.mod mirror://goproxy//go.uber.org/zap/@v/v1.15.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.15.0.mod mirror://goproxy//go.uber.org/zap/@v/v1.16.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.16.0.mod mirror://goproxy//go.uber.org/zap/@v/v1.18.1.mod -> go.uber.org%2Fzap%2F@v%2Fv1.18.1.mod mirror://goproxy//go.uber.org/zap/@v/v1.19.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.19.0.mod mirror://goproxy//go.uber.org/zap/@v/v1.19.1.zip -> go.uber.org%2Fzap%2F@v%2Fv1.19.1.zip mirror://goproxy//go.uber.org/zap/@v/v1.19.1.mod -> go.uber.org%2Fzap%2F@v%2Fv1.19.1.mod mirror://goproxy//go4.org/@v/v0.0.0-20180809161055-417644f6feb5.mod -> go4.org%2F@v%2Fv0.0.0-20180809161055-417644f6feb5.mod mirror://goproxy//go4.org/@v/v0.0.0-20200411211856-f5505b9728dd.zip -> go4.org%2F@v%2Fv0.0.0-20200411211856-f5505b9728dd.zip mirror://goproxy//go4.org/@v/v0.0.0-20200411211856-f5505b9728dd.mod -> go4.org%2F@v%2Fv0.0.0-20200411211856-f5505b9728dd.mod mirror://goproxy//golang.org/x/build/@v/v0.0.0-20190111050920-041ab4dc3f9d.mod -> golang.org%2Fx%2Fbuild%2F@v%2Fv0.0.0-20190111050920-041ab4dc3f9d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20170930174604-9419663f5a44.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20170930174604-9419663f5a44.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20180904163835-0709b304e793.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20180904163835-0709b304e793.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20181029021203-45a5f77698d3.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181029021203-45a5f77698d3.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20181030102418-4d3f4d9ffa16.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181030102418-4d3f4d9ffa16.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20181203042331-505ab145d0a9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181203042331-505ab145d0a9.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190211182817-74369b46fc67.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190211182817-74369b46fc67.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190225124518-7f87c0fbb88b.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190225124518-7f87c0fbb88b.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190228161510-8dd112bcdc25.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190228161510-8dd112bcdc25.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190313024323-a1f597ede03a.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190313024323-a1f597ede03a.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190426145343-a29dc8fdc734.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190426145343-a29dc8fdc734.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190510104115-cbcb75029529.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190510104115-cbcb75029529.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190513172903-22d7a77e9e5f.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190513172903-22d7a77e9e5f.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190530122614-20be4c3c3ed5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190530122614-20be4c3c3ed5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190605123033-f99c8df09eb5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190605123033-f99c8df09eb5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190611184440-5c40567a22f8.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190611184440-5c40567a22f8.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190618222545-ea8f1a30c443.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190618222545-ea8f1a30c443.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190701094942-4def268fd1a4.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190701094942-4def268fd1a4.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20191011191535-87dc89f01550.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191011191535-87dc89f01550.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200115085410-6d4e4cb37c7d.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200115085410-6d4e4cb37c7d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200221231518-2aa609cf4a9d.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200221231518-2aa609cf4a9d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200423211502-4bdfaf469ed5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200423211502-4bdfaf469ed5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200510223506-06a226fb4e37.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200510223506-06a226fb4e37.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200602180216-279210d13fed.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200602180216-279210d13fed.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200622213623-75b288015ac9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200820211705-5c72a883971a.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200820211705-5c72a883971a.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210220033148-5ea612d1eb83.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210220033148-5ea612d1eb83.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210322153248-0c34fe9e7dc2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210322153248-0c34fe9e7dc2.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210506145944-38f3c27a63bf.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210506145944-38f3c27a63bf.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210513164829-c07d793c2f9a.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210513164829-c07d793c2f9a.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210813211128-0a44fdfbc16e.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210813211128-0a44fdfbc16e.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210921155107-089bfa567519.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210921155107-089bfa567519.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210921155107-089bfa567519.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210921155107-089bfa567519.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190121172915-509febef88a4.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190121172915-509febef88a4.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190306152737-a1d7652674e8.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190306152737-a1d7652674e8.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190510132918-efd6b22b2522.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190510132918-efd6b22b2522.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190829153037-c13cbed26979.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190829153037-c13cbed26979.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20191030013958-a1ab85dbe136.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191030013958-a1ab85dbe136.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20191129062945-2f5052295587.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191129062945-2f5052295587.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20191227195350-da58074b4299.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191227195350-da58074b4299.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20200119233911-0405dc783f0a.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20200119233911-0405dc783f0a.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20200207192155-f17229e696bd.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20200207192155-f17229e696bd.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20200224162631-6cc2880d07d6.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20200224162631-6cc2880d07d6.mod mirror://goproxy//golang.org/x/image/@v/v0.0.0-20190227222117-0694c2d4d067.mod -> golang.org%2Fx%2Fimage%2F@v%2Fv0.0.0-20190227222117-0694c2d4d067.mod mirror://goproxy//golang.org/x/image/@v/v0.0.0-20190802002840-cff245a6509b.mod -> golang.org%2Fx%2Fimage%2F@v%2Fv0.0.0-20190802002840-cff245a6509b.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20180702182130-06c8688daad7.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20180702182130-06c8688daad7.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20181026193005-c67002cb31c3.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20181026193005-c67002cb31c3.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190227174305-5b3e6a55c961.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190227174305-5b3e6a55c961.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190301231843-5614ed5bae6f.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190301231843-5614ed5bae6f.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190313153728-d0100b6bd8b3.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190313153728-d0100b6bd8b3.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190409202823-959b441ac422.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190409202823-959b441ac422.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190909230951-414d861bb4ac.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190909230951-414d861bb4ac.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190930215403-16217165b5de.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190930215403-16217165b5de.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20191125180803-fdd1cda4f05f.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20191125180803-fdd1cda4f05f.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20200130185559-910be7a94367.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200130185559-910be7a94367.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20200302205851-738671d3881b.zip -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200302205851-738671d3881b.zip mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20200302205851-738671d3881b.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200302205851-738671d3881b.mod mirror://goproxy//golang.org/x/mobile/@v/v0.0.0-20190312151609-d3739f865fa6.mod -> golang.org%2Fx%2Fmobile%2F@v%2Fv0.0.0-20190312151609-d3739f865fa6.mod mirror://goproxy//golang.org/x/mobile/@v/v0.0.0-20190719004257-d2bd2a29d028.mod -> golang.org%2Fx%2Fmobile%2F@v%2Fv0.0.0-20190719004257-d2bd2a29d028.mod mirror://goproxy//golang.org/x/mod/@v/v0.0.0-20190513183733-4bf6d317e70e.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.0.0-20190513183733-4bf6d317e70e.mod mirror://goproxy//golang.org/x/mod/@v/v0.1.0.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.0.mod mirror://goproxy//golang.org/x/mod/@v/v0.1.1-0.20191105210325-c90efee705ee.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.1-0.20191105210325-c90efee705ee.mod mirror://goproxy//golang.org/x/mod/@v/v0.1.1-0.20191107180719-034126e5016b.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.1-0.20191107180719-034126e5016b.mod mirror://goproxy//golang.org/x/mod/@v/v0.2.0.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.2.0.mod mirror://goproxy//golang.org/x/mod/@v/v0.3.0.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/mod/@v/v0.4.2.zip -> golang.org%2Fx%2Fmod%2F@v%2Fv0.4.2.zip mirror://goproxy//golang.org/x/mod/@v/v0.4.2.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.4.2.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180719180050-a680a1efc54d.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180719180050-a680a1efc54d.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180724234803-3673e40ba225.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180724234803-3673e40ba225.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180826012351-8a410e7b638d.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180826012351-8a410e7b638d.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180906233101-161cd47e91fd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180906233101-161cd47e91fd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181011144130-49bb7cea24b1.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181011144130-49bb7cea24b1.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181023162649-9b4f9f5ad519.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181023162649-9b4f9f5ad519.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181029044818-c44066c5c816.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181029044818-c44066c5c816.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181106065722-10aee1819953.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181106065722-10aee1819953.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181114220301-adae6a3d119a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181114220301-adae6a3d119a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181201002055-351d144fa1fc.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181201002055-351d144fa1fc.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181220203305-927f97764cc3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181220203305-927f97764cc3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190108225652-1e06a53dbb7e.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190108225652-1e06a53dbb7e.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190125091013-d26f9f9a57f3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190125091013-d26f9f9a57f3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190213061140-3a22650c66bd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190213061140-3a22650c66bd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190227160552-c95aed5357e7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190227160552-c95aed5357e7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190311183353-d8887717615a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190311183353-d8887717615a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190313220215-9f648a60d977.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190313220215-9f648a60d977.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190501004415-9ce7a6920f09.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190501004415-9ce7a6920f09.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190503192946-f4e77d36d62c.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190503192946-f4e77d36d62c.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190522155817-f3200d17e092.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190522155817-f3200d17e092.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190603091049-60506f45cf65.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190603091049-60506f45cf65.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190611141213-3f473d35a33a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190611141213-3f473d35a33a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190613194153-d28f0bde5980.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190613194153-d28f0bde5980.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190628185345-da137c7871d7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190628185345-da137c7871d7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190724013045-ca1201d0de80.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190724013045-ca1201d0de80.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190813141303-74dc4d7220e7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190813141303-74dc4d7220e7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190923162816-aa69164e4478.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190923162816-aa69164e4478.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20191209160850-c0dbc17a3553.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20191209160850-c0dbc17a3553.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200114155413-6afb5195e5aa.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200114155413-6afb5195e5aa.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200202094626-16171245cfb2.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200202094626-16171245cfb2.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200222125558-5a598a2470a0.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200222125558-5a598a2470a0.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200226121028-0de0cce0169b.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200226121028-0de0cce0169b.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200301022130-244492dfa37a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200301022130-244492dfa37a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200324143707-d3edc9973b7e.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200324143707-d3edc9973b7e.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200501053045-e0ff5e5a1de5.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200501053045-e0ff5e5a1de5.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200506145744-7e3656a0809f.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200506145744-7e3656a0809f.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200513185701-a91f0712d120.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200513185701-a91f0712d120.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200520004742-59133d7f0dd7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200520004742-59133d7f0dd7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200520182314-0ba52f642ac2.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200520182314-0ba52f642ac2.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200625001655-4c5254603344.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200625001655-4c5254603344.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200707034311-ab3426394381.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200822124328-c89045814202.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200822124328-c89045814202.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200904194848-62affa334b73.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200904194848-62affa334b73.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20201021035429-f5854403a974.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201021035429-f5854403a974.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20201110031124-69a78807bb2b.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201110031124-69a78807bb2b.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210119194325-5f4716e94777.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210119194325-5f4716e94777.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210226172049-e18ecbb05110.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210226172049-e18ecbb05110.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210316092652-d523dce5a7f4.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210316092652-d523dce5a7f4.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210405180319-a5a99cb37ef4.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210405180319-a5a99cb37ef4.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210423184538-5f58ad60dda6.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210423184538-5f58ad60dda6.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210428140749-89ef3d95e781.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210428140749-89ef3d95e781.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210505024714-0287a6fb4125.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210505024714-0287a6fb4125.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210525063256-abc453219eb5.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210525063256-abc453219eb5.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210813160813-60bc85c4be6d.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210813160813-60bc85c4be6d.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210813160813-60bc85c4be6d.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210813160813-60bc85c4be6d.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20180821212333-d2e6202438be.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20180821212333-d2e6202438be.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20181017192945-9dcd33a902f4.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20181017192945-9dcd33a902f4.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20181203162652-d668ce993890.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20181203162652-d668ce993890.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20190226205417-e64efc72b421.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20190226205417-e64efc72b421.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20190604053449-0f29369cfe45.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20190604053449-0f29369cfe45.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20191202225959-858c2ad4c8b6.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20191202225959-858c2ad4c8b6.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20200107190931-bf48bf16ab8d.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20200107190931-bf48bf16ab8d.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20210514164344-f6687ab2804c.zip -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20210514164344-f6687ab2804c.zip mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20210514164344-f6687ab2804c.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20210514164344-f6687ab2804c.mod mirror://goproxy//golang.org/x/perf/@v/v0.0.0-20180704124530-6e6d33e29852.mod -> golang.org%2Fx%2Fperf%2F@v%2Fv0.0.0-20180704124530-6e6d33e29852.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20180314180146-1d60e4601c6f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20180314180146-1d60e4601c6f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181108010431-42b317875d0f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181108010431-42b317875d0f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181221193216-37e7f081c4d4.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181221193216-37e7f081c4d4.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190227155943-e225da77a7e6.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190227155943-e225da77a7e6.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190911185100-cd5d95a43a6e.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190911185100-cd5d95a43a6e.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20200317015054-43a5402ce75a.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20200317015054-43a5402ce75a.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20200625203802-6e8e738ad208.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20200625203802-6e8e738ad208.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20201020160332-67f06af15bc9.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20201020160332-67f06af15bc9.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20201207232520-09787c993a3a.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20201207232520-09787c993a3a.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20210220032951-036812b2e83c.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20210220032951-036812b2e83c.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20210220032951-036812b2e83c.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20210220032951-036812b2e83c.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180823144017-11551d06cbcc.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180823144017-11551d06cbcc.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180830151530-49385e6e1522.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180830151530-49385e6e1522.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180905080454-ebe1bf3edb33.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180905080454-ebe1bf3edb33.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180909124046-d0be0721c37e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180909124046-d0be0721c37e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181026203630-95b1ffbd15a5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181026203630-95b1ffbd15a5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181029174526-d69651ed3497.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181029174526-d69651ed3497.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181107165924-66b7b1311ac8.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181107165924-66b7b1311ac8.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181116152217-5ac8a444bdc5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181116152217-5ac8a444bdc5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181122145206-62eef0e2fa9b.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181122145206-62eef0e2fa9b.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181205085412-a5c9d58dba9a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181205085412-a5c9d58dba9a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190219092855-153ac476189d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190219092855-153ac476189d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190222072716-a9d3bda3a223.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190222072716-a9d3bda3a223.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190228124157-a34e9553db1e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190228124157-a34e9553db1e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190302025703-b6889370fb10.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190302025703-b6889370fb10.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190312061237-fead79001313.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190312061237-fead79001313.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190316082340-a2f829d7f35f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190316082340-a2f829d7f35f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190405154228-4b34438f7a67.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190405154228-4b34438f7a67.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190422165155-953cdadca894.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190422165155-953cdadca894.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190502145724-3ef323f4f1fd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190502145724-3ef323f4f1fd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190507160741-ecd444e8653b.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190507160741-ecd444e8653b.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190524122548-abf6ff778158.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190524122548-abf6ff778158.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190524152521-dbbf3f1254d4.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190524152521-dbbf3f1254d4.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190526052359-791d8a0f4d09.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190526052359-791d8a0f4d09.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190606165138-5da285871e9c.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190606165138-5da285871e9c.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190610200419-93c9922d18ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190610200419-93c9922d18ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190624142023-c5567b49c5d0.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190624142023-c5567b49c5d0.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190626221950-04f50cda93cb.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626221950-04f50cda93cb.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190726091711-fc99dfbffb4e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190726091711-fc99dfbffb4e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190826190057-c7b8b68b1456.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190826190057-c7b8b68b1456.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190904154756-749cb33beabd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190904154756-749cb33beabd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190924154521-2837fb4f24fe.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190924154521-2837fb4f24fe.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191001151750-bb3f8db39f24.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191001151750-bb3f8db39f24.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191005200804-aed5e4c7ecf9.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191005200804-aed5e4c7ecf9.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191026070338-33540a1f6037.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191120155948-bd437916bb0e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191120155948-bd437916bb0e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191204072324-ce4227a45e2e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191204072324-ce4227a45e2e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191206220618-eeba5f6aabab.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191206220618-eeba5f6aabab.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191210023423-ac6580df4449.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191210023423-ac6580df4449.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191220142924-d4481acd189f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191220142924-d4481acd189f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191228213918-04cbcbbfeed8.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191228213918-04cbcbbfeed8.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200106162015-b016eb3dc98e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200106162015-b016eb3dc98e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200113162924-86b910548bc1.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200113162924-86b910548bc1.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200116001909-b77594299b42.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200116001909-b77594299b42.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200122134326-e047566fdf82.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200122134326-e047566fdf82.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200202164722-d101bd2416d5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200202164722-d101bd2416d5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200212091648-12a6c2dcc1e4.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200212091648-12a6c2dcc1e4.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200223170610-d5e6a3e2c0ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200223170610-d5e6a3e2c0ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200302150141-5c8b2ff67527.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200302150141-5c8b2ff67527.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200323222414-85ca7c5b95cd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200331124033-c3d80250170d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200331124033-c3d80250170d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200501052902-10377860bb8e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200501052902-10377860bb8e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200511232937-7e40ca221e25.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200511232937-7e40ca221e25.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200515095857-1151b9dac4a9.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200515095857-1151b9dac4a9.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200519105757-fe76b779f299.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200519105757-fe76b779f299.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200523222454-059865788121.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200523222454-059865788121.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200602225109-6fdc65e7d980.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200602225109-6fdc65e7d980.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200615200032-f1bc736245b1.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200615200032-f1bc736245b1.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200625212154-ddb9806d33ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200625212154-ddb9806d33ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200803210538-64077c9b5642.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200803210538-64077c9b5642.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200930185726-fdedc70b468f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200930185726-fdedc70b468f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20201119102817-f84b799fce68.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201119102817-f84b799fce68.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20201214210602-f9fddec55a1e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201214210602-f9fddec55a1e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210112080510-489259a85091.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210112080510-489259a85091.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210124154548-22da62e12c0c.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210124154548-22da62e12c0c.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210303074136-134d130e1a04.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210303074136-134d130e1a04.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210309074719-68d13333faf2.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210309074719-68d13333faf2.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210315160823-c6e025ad8005.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210315160823-c6e025ad8005.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210317225723-c4fcb01b228e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210317225723-c4fcb01b228e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210330210617-4fbd30eecc44.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210330210617-4fbd30eecc44.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210423082822-04245dca01da.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210423082822-04245dca01da.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210426080607-c94f62235c83.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210426080607-c94f62235c83.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210510120138-977fb7262007.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210510120138-977fb7262007.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210511113859-b0526f3d8744.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210511113859-b0526f3d8744.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210514084401-e8d321eab015.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210514084401-e8d321eab015.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210603081109-ebe580a85c40.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210603081109-ebe580a85c40.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210615035016-665e8c7367d1.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210615035016-665e8c7367d1.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210630005230-0f9fa26af87c.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210630005230-0f9fa26af87c.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210816183151-1e6c022a8912.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210816183151-1e6c022a8912.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210903071746-97244b99971b.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210903071746-97244b99971b.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20211025112917-711f33c9992c.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20211025112917-711f33c9992c.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20211025112917-711f33c9992c.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20211025112917-711f33c9992c.mod mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201117132131-f5c789dd3221.mod -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201117132131-f5c789dd3221.mod mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201126162022-7de9c90e9dd1.zip -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201126162022-7de9c90e9dd1.zip mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201126162022-7de9c90e9dd1.mod -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201126162022-7de9c90e9dd1.mod mirror://goproxy//golang.org/x/text/@v/v0.0.0-20170915032832-14c0d48ead0c.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.0.0-20170915032832-14c0d48ead0c.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/text/@v/v0.3.1-0.20180807135948-17ff2d5776d2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.1-0.20180807135948-17ff2d5776d2.mod mirror://goproxy//golang.org/x/text/@v/v0.3.2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.mod mirror://goproxy//golang.org/x/text/@v/v0.3.3.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.mod mirror://goproxy//golang.org/x/text/@v/v0.3.6.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.6.mod mirror://goproxy//golang.org/x/text/@v/v0.3.7.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.7.zip mirror://goproxy//golang.org/x/text/@v/v0.3.7.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.7.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20180412165947-fbb02b2291d2.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20180412165947-fbb02b2291d2.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20181108054448-85acf8d2951c.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20181108054448-85acf8d2951c.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20190308202827-9d24e82272b4.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20190308202827-9d24e82272b4.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20191024005414-555d28b269f0.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20191024005414-555d28b269f0.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180221164845-07fd8470d635.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180221164845-07fd8470d635.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180828015842-6cd1fcedba52.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180828015842-6cd1fcedba52.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181030000716-a0a13e073c7b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181030000716-a0a13e073c7b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181030221726-6c7e314b6563.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181030221726-6c7e314b6563.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181130052023-1c3d964395ce.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181130052023-1c3d964395ce.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190114222345-bf090417da8b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190114222345-bf090417da8b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190226205152-f727befe758c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190226205152-f727befe758c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190311212946-11955173bddd.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190311212946-11955173bddd.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190312151545-0bb0c0a6e846.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190312151545-0bb0c0a6e846.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190312170243-e65039ee4138.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190312170243-e65039ee4138.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190328211700-ab21143f2384.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190328211700-ab21143f2384.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190425150028-36563e24a262.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190425150028-36563e24a262.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190506145303-2d16b83fe98c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190506145303-2d16b83fe98c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190524140312-2c0ae7006135.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190524140312-2c0ae7006135.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190606124116-d0a3d012864b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190606124116-d0a3d012864b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190621195816-6e04913cbbac.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190621195816-6e04913cbbac.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190628153133-6cdbf07be9d0.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190628153133-6cdbf07be9d0.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190816200558-6889da9d5479.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190816200558-6889da9d5479.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190911174233-4f2ddba30aff.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190911174233-4f2ddba30aff.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191012152004-8de300cfc20a.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191012152004-8de300cfc20a.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191029041327-9cc4af7d6b2c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191029041327-9cc4af7d6b2c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191029190741-b9c20aec41a5.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191029190741-b9c20aec41a5.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191030062658-86caa796c7ab.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191030062658-86caa796c7ab.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191108193012-7d206e10da11.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191108193012-7d206e10da11.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191113191852-77e3bb0ad9e7.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191113191852-77e3bb0ad9e7.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191115202509-3a792d9c32b2.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191115202509-3a792d9c32b2.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191119224855-298f0cb1881e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191119224855-298f0cb1881e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191125144606-a911d9008d1f.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191125144606-a911d9008d1f.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191130070609-6e064ea0cf2d.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191130070609-6e064ea0cf2d.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216052735-49a3e744a425.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216052735-49a3e744a425.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216173652-a0e659d51361.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216173652-a0e659d51361.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191227053925-7b8e75db28f4.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191227053925-7b8e75db28f4.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200103221440-774c71fcf114.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200103221440-774c71fcf114.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200117161641-43d50277825c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200117161641-43d50277825c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200122220014-bf1340f18c4a.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200122220014-bf1340f18c4a.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200130002326-2f3ba24bd6e7.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200130002326-2f3ba24bd6e7.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200204074204-1cc6d1ef6c74.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200204074204-1cc6d1ef6c74.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200207183749-b753a1ba74fa.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200207183749-b753a1ba74fa.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200212150539-ea181f53ac56.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200212150539-ea181f53ac56.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200224181240-023911ca70b2.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200224181240-023911ca70b2.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200227222343-706bc42d1f0d.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200227222343-706bc42d1f0d.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200304193943-95d2e580d8eb.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200304193943-95d2e580d8eb.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200312045724-11d5b4c81c7d.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200312045724-11d5b4c81c7d.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200331025713-a30bf2db82d4.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200331025713-a30bf2db82d4.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200501065659-ab2804fb9c9d.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200501065659-ab2804fb9c9d.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200512131952-2bc93b1c0c88.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200512131952-2bc93b1c0c88.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200515010526-7d3b6ebf133d.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200515010526-7d3b6ebf133d.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200618134242-20370b0cb4b2.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200618134242-20370b0cb4b2.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200619180055-7c47624df98f.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200619180055-7c47624df98f.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200729194436-6467de6f59a7.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200729194436-6467de6f59a7.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200804011535-6c149bb5ef0d.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200804011535-6c149bb5ef0d.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200825202427-b303f430e36d.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200825202427-b303f430e36d.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20201224043029-2b0845dc783e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20201224043029-2b0845dc783e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20210106214847-113979e3529a.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20210106214847-113979e3529a.mod mirror://goproxy//golang.org/x/tools/@v/v0.1.1.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.1.1.mod mirror://goproxy//golang.org/x/tools/@v/v0.1.5.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.1.5.zip mirror://goproxy//golang.org/x/tools/@v/v0.1.5.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.1.5.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20190717185122-a985d3407aa7.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190717185122-a985d3407aa7.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191011141410-1b5146add898.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191011141410-1b5146add898.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20200804184101-5ec99f83aff1.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20200804184101-5ec99f83aff1.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20200804184101-5ec99f83aff1.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20200804184101-5ec99f83aff1.mod mirror://goproxy//google.golang.org/api/@v/v0.0.0-20180910000450-7ca32eb868bf.mod -> google.golang.org%2Fapi%2F@v%2Fv0.0.0-20180910000450-7ca32eb868bf.mod mirror://goproxy//google.golang.org/api/@v/v0.0.0-20181030000543-1d582fd0359e.mod -> google.golang.org%2Fapi%2F@v%2Fv0.0.0-20181030000543-1d582fd0359e.mod mirror://goproxy//google.golang.org/api/@v/v0.1.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.1.0.mod mirror://goproxy//google.golang.org/api/@v/v0.3.1.mod -> google.golang.org%2Fapi%2F@v%2Fv0.3.1.mod mirror://goproxy//google.golang.org/api/@v/v0.4.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.4.0.mod mirror://goproxy//google.golang.org/api/@v/v0.7.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.7.0.mod mirror://goproxy//google.golang.org/api/@v/v0.8.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.8.0.mod mirror://goproxy//google.golang.org/api/@v/v0.9.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.9.0.mod mirror://goproxy//google.golang.org/api/@v/v0.13.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.13.0.mod mirror://goproxy//google.golang.org/api/@v/v0.14.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.14.0.mod mirror://goproxy//google.golang.org/api/@v/v0.15.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.15.0.mod mirror://goproxy//google.golang.org/api/@v/v0.17.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.17.0.mod mirror://goproxy//google.golang.org/api/@v/v0.18.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.18.0.mod mirror://goproxy//google.golang.org/api/@v/v0.19.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.19.0.mod mirror://goproxy//google.golang.org/api/@v/v0.20.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.20.0.mod mirror://goproxy//google.golang.org/api/@v/v0.22.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.22.0.mod mirror://goproxy//google.golang.org/api/@v/v0.24.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.24.0.mod mirror://goproxy//google.golang.org/api/@v/v0.28.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.28.0.mod mirror://goproxy//google.golang.org/api/@v/v0.29.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.29.0.mod mirror://goproxy//google.golang.org/api/@v/v0.30.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.30.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.1.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.1.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.2.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.2.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.3.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.3.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.4.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.4.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.5.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.5.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.6.1.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.6.1.mod mirror://goproxy//google.golang.org/appengine/@v/v1.6.5.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.6.5.mod mirror://goproxy//google.golang.org/appengine/@v/v1.6.6.zip -> google.golang.org%2Fappengine%2F@v%2Fv1.6.6.zip mirror://goproxy//google.golang.org/appengine/@v/v1.6.6.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.6.6.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20180817151627-c66870c02cf8.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180817151627-c66870c02cf8.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20180831171423-11092d34479b.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180831171423-11092d34479b.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20181029155118-b69ba1387ce2.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20181029155118-b69ba1387ce2.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20181202183823-bd91e49a0898.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20181202183823-bd91e49a0898.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190306203927-b5d61aea6440.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190306203927-b5d61aea6440.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190307195333-5fe7a883aa19.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190307195333-5fe7a883aa19.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190418145605-e7d98fc518a7.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190418145605-e7d98fc518a7.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190425155659-357c62f0e4bb.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190425155659-357c62f0e4bb.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190502173448-54afdca5d873.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190502173448-54afdca5d873.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190530194941-fb225487d101.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190530194941-fb225487d101.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190801165951-fa694d86fc64.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190801165951-fa694d86fc64.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190819201941-24fa4b261c55.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190819201941-24fa4b261c55.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190911173649-1774047e7e51.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190911173649-1774047e7e51.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191108220845-16a3f7862a1a.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191108220845-16a3f7862a1a.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191115194625-c23dd37a84c9.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191115194625-c23dd37a84c9.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191216164720-4f79533eabd1.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191216164720-4f79533eabd1.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191230161307-f3c370f40bfb.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191230161307-f3c370f40bfb.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200115191322-ca5a22157cba.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200115191322-ca5a22157cba.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200122232147-0452cf42e150.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200122232147-0452cf42e150.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200204135345-fa8e72b47b90.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200204135345-fa8e72b47b90.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200212174721-66ed5ce911ce.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200212174721-66ed5ce911ce.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200224152610-e50cd9704f63.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200224152610-e50cd9704f63.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200228133532-8c2c7df3a383.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200228133532-8c2c7df3a383.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200305110556-506484158171.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200305110556-506484158171.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200312145019-da6875a35672.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200312145019-da6875a35672.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200331122359-1ee6d9798940.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200331122359-1ee6d9798940.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200430143042-b979b6f78d84.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200430143042-b979b6f78d84.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200511104702-f5ebc3bea380.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200511104702-f5ebc3bea380.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200513103714-09dca8ec2884.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200513103714-09dca8ec2884.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200515170657-fc4c6c6a6587.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200515170657-fc4c6c6a6587.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200526211855-cb27e3aa2013.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200526211855-cb27e3aa2013.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200618031413-b414f8b61790.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200618031413-b414f8b61790.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200729003335-053ba62fc06f.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200729003335-053ba62fc06f.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200804131852-c06518451d9c.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200804131852-c06518451d9c.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200825200019-8632dd797987.zip -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200825200019-8632dd797987.zip mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200825200019-8632dd797987.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200825200019-8632dd797987.mod mirror://goproxy//google.golang.org/grpc/@v/v1.14.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.14.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.16.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.16.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.17.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.17.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.19.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.19.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.20.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.20.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.20.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.20.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.21.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.21.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.21.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.21.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.22.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.22.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.23.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.23.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.23.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.23.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.25.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.25.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.26.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.26.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.27.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.27.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.27.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.27.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.28.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.28.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.28.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.28.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.29.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.29.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.30.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.30.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.31.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.31.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.31.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.31.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.33.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.33.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.33.2.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.33.2.mod mirror://goproxy//google.golang.org/grpc/@v/v1.36.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.36.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.40.0.zip -> google.golang.org%2Fgrpc%2F@v%2Fv1.40.0.zip mirror://goproxy//google.golang.org/grpc/@v/v1.40.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.40.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v0.0.0-20200109180630-ec00e32a8dfd.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200109180630-ec00e32a8dfd.mod mirror://goproxy//google.golang.org/protobuf/@v/v0.0.0-20200221191635-4d8936d0db64.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200221191635-4d8936d0db64.mod mirror://goproxy//google.golang.org/protobuf/@v/v0.0.0-20200228230310-ab0ca4ff8a60.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200228230310-ab0ca4ff8a60.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.20.1-0.20200309200217-e05f789c0967.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.20.1-0.20200309200217-e05f789c0967.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.21.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.21.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.22.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.22.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.23.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.23.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.23.1-0.20200526195155-81db48ad09cc.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.23.1-0.20200526195155-81db48ad09cc.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.24.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.24.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.25.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.25.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.26.0-rc.1.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.26.0-rc.1.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.26.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.26.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.27.1.zip -> google.golang.org%2Fprotobuf%2F@v%2Fv1.27.1.zip mirror://goproxy//google.golang.org/protobuf/@v/v1.27.1.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.27.1.mod mirror://goproxy//gopkg.in/alecthomas/kingpin.v2/@v/v2.2.6.mod -> gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20180628173108-788fd7840127.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20180628173108-788fd7840127.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20201130134442-10cb98267c6c.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20201130134442-10cb98267c6c.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20201130134442-10cb98267c6c.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20201130134442-10cb98267c6c.mod mirror://goproxy//gopkg.in/cheggaaa/pb.v1/@v/v1.0.25.mod -> gopkg.in%2Fcheggaaa%2Fpb.v1%2F@v%2Fv1.0.25.mod mirror://goproxy//gopkg.in/errgo.v2/@v/v2.1.0.mod -> gopkg.in%2Ferrgo.v2%2F@v%2Fv2.1.0.mod mirror://goproxy//gopkg.in/fsnotify.v1/@v/v1.4.7.mod -> gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.mod mirror://goproxy//gopkg.in/gcfg.v1/@v/v1.2.3.mod -> gopkg.in%2Fgcfg.v1%2F@v%2Fv1.2.3.mod mirror://goproxy//gopkg.in/inf.v0/@v/v0.9.1.mod -> gopkg.in%2Finf.v0%2F@v%2Fv0.9.1.mod mirror://goproxy//gopkg.in/resty.v1/@v/v1.12.0.mod -> gopkg.in%2Fresty.v1%2F@v%2Fv1.12.0.mod mirror://goproxy//gopkg.in/square/go-jose.v2/@v/v2.5.1.zip -> gopkg.in%2Fsquare%2Fgo-jose.v2%2F@v%2Fv2.5.1.zip mirror://goproxy//gopkg.in/square/go-jose.v2/@v/v2.5.1.mod -> gopkg.in%2Fsquare%2Fgo-jose.v2%2F@v%2Fv2.5.1.mod mirror://goproxy//gopkg.in/src-d/go-cli.v0/@v/v0.0.0-20181105080154-d492247bbc0d.mod -> gopkg.in%2Fsrc-d%2Fgo-cli.v0%2F@v%2Fv0.0.0-20181105080154-d492247bbc0d.mod mirror://goproxy//gopkg.in/src-d/go-log.v1/@v/v1.0.1.mod -> gopkg.in%2Fsrc-d%2Fgo-log.v1%2F@v%2Fv1.0.1.mod mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.zip -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.zip mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.mod -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.mod mirror://goproxy//gopkg.in/warnings.v0/@v/v0.1.2.mod -> gopkg.in%2Fwarnings.v0%2F@v%2Fv0.1.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.0.0-20170812160011-eb3733d160e7.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.0.0-20170812160011-eb3733d160e7.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.1.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.1.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.3.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.3.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.4.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.4.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.5.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.5.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.8.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.8.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.3.0.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.4.0.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.4.0.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.4.0.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.4.0.mod mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.mod -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.mod mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20210107192922-496545a6307b.zip -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20210107192922-496545a6307b.zip mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20210107192922-496545a6307b.mod -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20210107192922-496545a6307b.mod mirror://goproxy//grpc.go4.org/@v/v0.0.0-20170609214715-11d0a25b4919.mod -> grpc.go4.org%2F@v%2Fv0.0.0-20170609214715-11d0a25b4919.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20180728063816-88497007e858.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20180728063816-88497007e858.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190102054323-c2f93a96b099.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190102054323-c2f93a96b099.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190106161140-3f1c8253044a.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190106161140-3f1c8253044a.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190418001031-e561f6794a2a.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190418001031-e561f6794a2a.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190523083050-ea95bdfd59fc.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190523083050-ea95bdfd59fc.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.1-2019.2.3.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.1-2020.1.3.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2020.1.3.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.1-2020.1.4.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2020.1.4.mod mirror://goproxy//lukechampine.com/blake3/@v/v1.1.6.zip -> lukechampine.com%2Fblake3%2F@v%2Fv1.1.6.zip mirror://goproxy//lukechampine.com/blake3/@v/v1.1.6.mod -> lukechampine.com%2Fblake3%2F@v%2Fv1.1.6.mod mirror://goproxy//pgregory.net/rapid/@v/v0.4.7.zip -> pgregory.net%2Frapid%2F@v%2Fv0.4.7.zip mirror://goproxy//pgregory.net/rapid/@v/v0.4.7.mod -> pgregory.net%2Frapid%2F@v%2Fv0.4.7.mod mirror://goproxy//rsc.io/binaryregexp/@v/v0.2.0.mod -> rsc.io%2Fbinaryregexp%2F@v%2Fv0.2.0.mod mirror://goproxy//rsc.io/quote/v3/@v/v3.1.0.mod -> rsc.io%2Fquote%2Fv3%2F@v%2Fv3.1.0.mod mirror://goproxy//rsc.io/sampler/@v/v1.3.0.mod -> rsc.io%2Fsampler%2F@v%2Fv1.3.0.mod mirror://goproxy//sigs.k8s.io/yaml/@v/v1.1.0.mod -> sigs.k8s.io%2Fyaml%2F@v%2Fv1.1.0.mod mirror://goproxy//sourcegraph.com/sourcegraph/appdash/@v/v0.0.0-20190731080439-ebfcffb1b5c0.mod -> sourcegraph.com%2Fsourcegraph%2Fappdash%2F@v%2Fv0.0.0-20190731080439-ebfcffb1b5c0.mod mirror://goproxy//sourcegraph.com/sourcegraph/go-diff/@v/v0.5.0.mod -> sourcegraph.com%2Fsourcegraph%2Fgo-diff%2F@v%2Fv0.5.0.mod mirror://goproxy//sourcegraph.com/sqs/pbtypes/@v/v0.0.0-20180604144634-d3ebe8f20ae4.mod -> sourcegraph.com%2Fsqs%2Fpbtypes%2F@v%2Fv0.0.0-20180604144634-d3ebe8f20ae4.mod +_eclasses_=bash-completion-r1 d3a60385655d9b402be765a6de333245 go-module 82631624a3653e595cf9c18164a8c500 multilib 8a0248f83ae77f945d376ff4a7953257 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=76db754bac5185661ff30350212c53c9 diff --git a/metadata/md5-cache/net-p2p/go-ipfs-0.8.0 b/metadata/md5-cache/net-p2p/go-ipfs-0.8.0 deleted file mode 100644 index bc55f30bfbb3..000000000000 --- a/metadata/md5-cache/net-p2p/go-ipfs-0.8.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=>=dev-lang/go-1.12 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install postinst test unpack -DESCRIPTION=Main implementation of IPFS -EAPI=7 -HOMEPAGE=https://ipfs.io/ -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 -RDEPEND=!net-p2p/go-ipfs-bin acct-group/ipfs acct-user/ipfs sys-fs/fuse:0 -RESTRICT=strip -SLOT=0 -SRC_URI=https://github.com/ipfs/go-ipfs/archive/v0.8.0.tar.gz -> go-ipfs-0.8.0.tar.gz mirror://goproxy//bazil.org/fuse/@v/v0.0.0-20200117225306-7b5117fecadc.zip -> bazil.org%2Ffuse%2F@v%2Fv0.0.0-20200117225306-7b5117fecadc.zip mirror://goproxy//bazil.org/fuse/@v/v0.0.0-20200117225306-7b5117fecadc.mod -> bazil.org%2Ffuse%2F@v%2Fv0.0.0-20200117225306-7b5117fecadc.mod mirror://goproxy//cloud.google.com/go/@v/v0.26.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.26.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.31.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.31.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.34.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.34.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.37.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.37.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.38.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.38.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.44.1.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.44.1.mod mirror://goproxy//cloud.google.com/go/@v/v0.44.2.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.44.2.mod mirror://goproxy//cloud.google.com/go/@v/v0.45.1.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.45.1.mod mirror://goproxy//cloud.google.com/go/@v/v0.46.3.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.46.3.mod mirror://goproxy//cloud.google.com/go/@v/v0.50.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.50.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.53.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.53.0.mod mirror://goproxy//cloud.google.com/go/bigquery/@v/v1.0.1.mod -> cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.0.1.mod mirror://goproxy//cloud.google.com/go/bigquery/@v/v1.3.0.mod -> cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.3.0.mod mirror://goproxy//cloud.google.com/go/datastore/@v/v1.0.0.mod -> cloud.google.com%2Fgo%2Fdatastore%2F@v%2Fv1.0.0.mod mirror://goproxy//cloud.google.com/go/pubsub/@v/v1.0.1.mod -> cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.0.1.mod mirror://goproxy//cloud.google.com/go/pubsub/@v/v1.1.0.mod -> cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.1.0.mod mirror://goproxy//cloud.google.com/go/storage/@v/v1.0.0.mod -> cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.0.0.mod mirror://goproxy//cloud.google.com/go/storage/@v/v1.5.0.mod -> cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.5.0.mod mirror://goproxy//contrib.go.opencensus.io/exporter/prometheus/@v/v0.2.0.zip -> contrib.go.opencensus.io%2Fexporter%2Fprometheus%2F@v%2Fv0.2.0.zip mirror://goproxy//contrib.go.opencensus.io/exporter/prometheus/@v/v0.2.0.mod -> contrib.go.opencensus.io%2Fexporter%2Fprometheus%2F@v%2Fv0.2.0.mod mirror://goproxy//dmitri.shuralyov.com/app/changes/@v/v0.0.0-20180602232624-0a106ad413e3.mod -> dmitri.shuralyov.com%2Fapp%2Fchanges%2F@v%2Fv0.0.0-20180602232624-0a106ad413e3.mod mirror://goproxy//dmitri.shuralyov.com/gpu/mtl/@v/v0.0.0-20190408044501-666a987793e9.mod -> dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod mirror://goproxy//dmitri.shuralyov.com/html/belt/@v/v0.0.0-20180602232347-f7d459c86be0.mod -> dmitri.shuralyov.com%2Fhtml%2Fbelt%2F@v%2Fv0.0.0-20180602232347-f7d459c86be0.mod mirror://goproxy//dmitri.shuralyov.com/service/change/@v/v0.0.0-20181023043359-a85b471d5412.mod -> dmitri.shuralyov.com%2Fservice%2Fchange%2F@v%2Fv0.0.0-20181023043359-a85b471d5412.mod mirror://goproxy//dmitri.shuralyov.com/state/@v/v0.0.0-20180228185332-28bcc343414c.mod -> dmitri.shuralyov.com%2Fstate%2F@v%2Fv0.0.0-20180228185332-28bcc343414c.mod mirror://goproxy//git.apache.org/thrift.git/@v/v0.0.0-20180902110319-2566ecd5d999.mod -> git.apache.org%2Fthrift.git%2F@v%2Fv0.0.0-20180902110319-2566ecd5d999.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20180913140656-343706a395b7.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20180913140656-343706a395b7.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190306092124-e2d15f34fcf9.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190306092124-e2d15f34fcf9.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190825152654-46b345b51c96.zip -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.zip mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190825152654-46b345b51c96.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.mod mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.zip -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.mod -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/!burnt!sushi/xgb/@v/v0.0.0-20160522181843-27f122750802.mod -> github.com%2F!burnt!sushi%2Fxgb%2F@v%2Fv0.0.0-20160522181843-27f122750802.mod mirror://goproxy//github.com/!kubuxu/go-os-helper/@v/v0.0.1.zip -> github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/!kubuxu/go-os-helper/@v/v0.0.1.mod -> github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.zip -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.zip mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.mod -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.1.zip -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.1.mod -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/aead/siphash/@v/v1.0.1.mod -> github.com%2Faead%2Fsiphash%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20160405071501-a0175ee3bccc.mod -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.mod mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20190718012654-fb15b899a751.zip -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20190718012654-fb15b899a751.zip mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20190718012654-fb15b899a751.mod -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20190718012654-fb15b899a751.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20151022065526-2efee857e7cf.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20190717042225-c3de453c63f4.zip -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190717042225-c3de453c63f4.zip mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20190717042225-c3de453c63f4.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190717042225-c3de453c63f4.mod mirror://goproxy//github.com/alexbrainman/goissue34681/@v/v0.0.0-20191006012335-3fc7a47baff5.zip -> github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.zip mirror://goproxy//github.com/alexbrainman/goissue34681/@v/v0.0.0-20191006012335-3fc7a47baff5.mod -> github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.mod mirror://goproxy//github.com/anmitsu/go-shlex/@v/v0.0.0-20161002113705-648efa622239.mod -> github.com%2Fanmitsu%2Fgo-shlex%2F@v%2Fv0.0.0-20161002113705-648efa622239.mod mirror://goproxy//github.com/armon/consul-api/@v/v0.0.0-20180202201655-eb2c6b5be1b6.mod -> github.com%2Farmon%2Fconsul-api%2F@v%2Fv0.0.0-20180202201655-eb2c6b5be1b6.mod mirror://goproxy//github.com/benbjohnson/clock/@v/v1.0.2.mod -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/benbjohnson/clock/@v/v1.0.3.zip -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.3.zip mirror://goproxy//github.com/benbjohnson/clock/@v/v1.0.3.mod -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/beorn7/perks/@v/v0.0.0-20180321164747-3a771d992973.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv0.0.0-20180321164747-3a771d992973.mod mirror://goproxy//github.com/beorn7/perks/@v/v1.0.0.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/beorn7/perks/@v/v1.0.1.zip -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/beorn7/perks/@v/v1.0.1.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/blang/semver/@v/v3.5.1+incompatible.zip -> github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.zip mirror://goproxy//github.com/blang/semver/@v/v3.5.1+incompatible.mod -> github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.mod mirror://goproxy//github.com/bradfitz/go-smtpd/@v/v0.0.0-20170404230938-deb6d6237625.mod -> github.com%2Fbradfitz%2Fgo-smtpd%2F@v%2Fv0.0.0-20170404230938-deb6d6237625.mod mirror://goproxy//github.com/bren2010/proquint/@v/v0.0.0-20160323162903-38337c27106d.zip -> github.com%2Fbren2010%2Fproquint%2F@v%2Fv0.0.0-20160323162903-38337c27106d.zip mirror://goproxy//github.com/bren2010/proquint/@v/v0.0.0-20160323162903-38337c27106d.mod -> github.com%2Fbren2010%2Fproquint%2F@v%2Fv0.0.0-20160323162903-38337c27106d.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190213025234-306aecffea32.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190213025234-306aecffea32.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190523000118-16327141da8c.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190523000118-16327141da8c.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190605094302-a0d1e3e36d50.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190605094302-a0d1e3e36d50.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190824003749-130ea5bddde3.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190824003749-130ea5bddde3.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.20.1-beta.zip -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.20.1-beta.zip mirror://goproxy//github.com/btcsuite/btcd/@v/v0.20.1-beta.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.20.1-beta.mod mirror://goproxy//github.com/btcsuite/btclog/@v/v0.0.0-20170628155309-84c8d2346e9f.mod -> github.com%2Fbtcsuite%2Fbtclog%2F@v%2Fv0.0.0-20170628155309-84c8d2346e9f.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v0.0.0-20190207003914-4c204d697803.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190207003914-4c204d697803.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v0.0.0-20190425235716-9e5f4b9a998d.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190425235716-9e5f4b9a998d.mod mirror://goproxy//github.com/btcsuite/go-socks/@v/v0.0.0-20170105172521-4720035b7bfd.mod -> github.com%2Fbtcsuite%2Fgo-socks%2F@v%2Fv0.0.0-20170105172521-4720035b7bfd.mod mirror://goproxy//github.com/btcsuite/goleveldb/@v/v0.0.0-20160330041536-7834afc9e8cd.mod -> github.com%2Fbtcsuite%2Fgoleveldb%2F@v%2Fv0.0.0-20160330041536-7834afc9e8cd.mod mirror://goproxy//github.com/btcsuite/snappy-go/@v/v0.0.0-20151229074030-0bdef8d06723.mod -> github.com%2Fbtcsuite%2Fsnappy-go%2F@v%2Fv0.0.0-20151229074030-0bdef8d06723.mod mirror://goproxy//github.com/btcsuite/websocket/@v/v0.0.0-20150119174127-31079b680792.mod -> github.com%2Fbtcsuite%2Fwebsocket%2F@v%2Fv0.0.0-20150119174127-31079b680792.mod mirror://goproxy//github.com/btcsuite/winsvc/@v/v1.0.0.mod -> github.com%2Fbtcsuite%2Fwinsvc%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/buger/jsonparser/@v/v0.0.0-20181115193947-bf1c66bbce23.mod -> github.com%2Fbuger%2Fjsonparser%2F@v%2Fv0.0.0-20181115193947-bf1c66bbce23.mod mirror://goproxy//github.com/cenkalti/backoff/@v/v2.2.1+incompatible.zip -> github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.2.1+incompatible.zip mirror://goproxy//github.com/cenkalti/backoff/@v/v2.2.1+incompatible.mod -> github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.2.1+incompatible.mod mirror://goproxy//github.com/census-instrumentation/opencensus-proto/@v/v0.2.1.mod -> github.com%2Fcensus-instrumentation%2Fopencensus-proto%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.zip -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.mod -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/cespare/xxhash/v2/@v/v2.1.0.mod -> github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.0.mod mirror://goproxy//github.com/cespare/xxhash/v2/@v/v2.1.1.zip -> github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.zip mirror://goproxy//github.com/cespare/xxhash/v2/@v/v2.1.1.mod -> github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.mod mirror://goproxy//github.com/cheekybits/genny/@v/v1.0.0.zip -> github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/cheekybits/genny/@v/v1.0.0.mod -> github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/cheggaaa/pb/@v/v1.0.29.zip -> github.com%2Fcheggaaa%2Fpb%2F@v%2Fv1.0.29.zip mirror://goproxy//github.com/cheggaaa/pb/@v/v1.0.29.mod -> github.com%2Fcheggaaa%2Fpb%2F@v%2Fv1.0.29.mod mirror://goproxy//github.com/chzyer/logex/@v/v1.1.10.mod -> github.com%2Fchzyer%2Flogex%2F@v%2Fv1.1.10.mod mirror://goproxy//github.com/chzyer/readline/@v/v0.0.0-20180603132655-2972be24d48e.mod -> github.com%2Fchzyer%2Freadline%2F@v%2Fv0.0.0-20180603132655-2972be24d48e.mod mirror://goproxy//github.com/chzyer/test/@v/v0.0.0-20180213035817-a1ea475d72b1.mod -> github.com%2Fchzyer%2Ftest%2F@v%2Fv0.0.0-20180213035817-a1ea475d72b1.mod mirror://goproxy//github.com/client9/misspell/@v/v0.3.4.mod -> github.com%2Fclient9%2Fmisspell%2F@v%2Fv0.3.4.mod mirror://goproxy//github.com/cncf/udpa/go/@v/v0.0.0-20191209042840-269d4d468f6f.mod -> github.com%2Fcncf%2Fudpa%2Fgo%2F@v%2Fv0.0.0-20191209042840-269d4d468f6f.mod mirror://goproxy//github.com/coreos/etcd/@v/v3.3.10+incompatible.mod -> github.com%2Fcoreos%2Fetcd%2F@v%2Fv3.3.10+incompatible.mod mirror://goproxy//github.com/coreos/go-etcd/@v/v2.0.0+incompatible.mod -> github.com%2Fcoreos%2Fgo-etcd%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.1-0.20180108230905-e214231b295a.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.1-0.20180108230905-e214231b295a.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.3.0.zip -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/coreos/go-semver/@v/v0.3.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/coreos/go-systemd/@v/v0.0.0-20181012123002-c6f51f82210d.zip -> github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.zip mirror://goproxy//github.com/coreos/go-systemd/@v/v0.0.0-20181012123002-c6f51f82210d.mod -> github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.mod mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.0.0.mod -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.0.0.mod mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.1.0.zip -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.1.0.zip mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.1.0.mod -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.1.0.mod mirror://goproxy//github.com/cpuguy83/go-md2man/@v/v1.0.10.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2F@v%2Fv1.0.10.mod mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0-20190314233015-f79a8a8ca69d.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0-20190314233015-f79a8a8ca69d.mod mirror://goproxy//github.com/crackcomm/go-gitignore/@v/v0.0.0-20170627025303-887ab5e44cc3.zip -> github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.zip mirror://goproxy//github.com/crackcomm/go-gitignore/@v/v0.0.0-20170627025303-887ab5e44cc3.mod -> github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.mod mirror://goproxy//github.com/cskr/pubsub/@v/v1.0.2.zip -> github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/cskr/pubsub/@v/v1.0.2.mod -> github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v0.0.0-20171005155431-ecdeabc65495.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv0.0.0-20171005155431-ecdeabc65495.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20170701192655-dcfb0a7ac018.zip -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.zip mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20170701192655-dcfb0a7ac018.mod -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.5.5-0.20190226225317-8115aed38f8f.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.5.5-0.20190226225317-8115aed38f8f.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0-rc1.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0-rc1.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.1.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.2.zip -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.2.zip mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.2.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.2.mod mirror://goproxy//github.com/dgraph-io/ristretto/@v/v0.0.2.zip -> github.com%2Fdgraph-io%2Fristretto%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/dgraph-io/ristretto/@v/v0.0.2.mod -> github.com%2Fdgraph-io%2Fristretto%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190104051053-3adb47b1fb0f.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190104051053-3adb47b1fb0f.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.zip -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.zip mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.mod mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.zip -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.mod -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/elgris/jsondiff/@v/v0.0.0-20160530203242-765b5c24c302.zip -> github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.zip mirror://goproxy//github.com/elgris/jsondiff/@v/v0.0.0-20160530203242-765b5c24c302.mod -> github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.9.0.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.9.1-0.20191026205805-5f8ba28d4473.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.9.1-0.20191026205805-5f8ba28d4473.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.9.4.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.9.4.mod mirror://goproxy//github.com/envoyproxy/protoc-gen-validate/@v/v0.1.0.mod -> github.com%2Fenvoyproxy%2Fprotoc-gen-validate%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/facebookgo/atomicfile/@v/v0.0.0-20151019160806-2de1f203e7d5.zip -> github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.zip mirror://goproxy//github.com/facebookgo/atomicfile/@v/v0.0.0-20151019160806-2de1f203e7d5.mod -> github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.mod mirror://goproxy//github.com/fatih/color/@v/v1.9.0.zip -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.zip mirror://goproxy//github.com/fatih/color/@v/v1.9.0.mod -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/flynn/go-shlex/@v/v0.0.0-20150515145356-3f9db97f8568.mod -> github.com%2Fflynn%2Fgo-shlex%2F@v%2Fv0.0.0-20150515145356-3f9db97f8568.mod mirror://goproxy//github.com/flynn/noise/@v/v0.0.0-20180327030543-2492fe189ae6.zip -> github.com%2Fflynn%2Fnoise%2F@v%2Fv0.0.0-20180327030543-2492fe189ae6.zip mirror://goproxy//github.com/flynn/noise/@v/v0.0.0-20180327030543-2492fe189ae6.mod -> github.com%2Fflynn%2Fnoise%2F@v%2Fv0.0.0-20180327030543-2492fe189ae6.mod mirror://goproxy//github.com/francoispqt/gojay/@v/v1.2.13.zip -> github.com%2Ffrancoispqt%2Fgojay%2F@v%2Fv1.2.13.zip mirror://goproxy//github.com/francoispqt/gojay/@v/v1.2.13.mod -> github.com%2Ffrancoispqt%2Fgojay%2F@v%2Fv1.2.13.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.7.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.9.zip -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.9.zip mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.9.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.9.mod mirror://goproxy//github.com/gabriel-vasile/mimetype/@v/v1.1.2.zip -> github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.1.2.zip mirror://goproxy//github.com/gabriel-vasile/mimetype/@v/v1.1.2.mod -> github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/ghodss/yaml/@v/v1.0.0.mod -> github.com%2Fghodss%2Fyaml%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/gliderlabs/ssh/@v/v0.1.1.mod -> github.com%2Fgliderlabs%2Fssh%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/go-bindata/go-bindata/v3/@v/v3.1.3.zip -> github.com%2Fgo-bindata%2Fgo-bindata%2Fv3%2F@v%2Fv3.1.3.zip mirror://goproxy//github.com/go-bindata/go-bindata/v3/@v/v3.1.3.mod -> github.com%2Fgo-bindata%2Fgo-bindata%2Fv3%2F@v%2Fv3.1.3.mod mirror://goproxy//github.com/go-check/check/@v/v0.0.0-20180628173108-788fd7840127.mod -> github.com%2Fgo-check%2Fcheck%2F@v%2Fv0.0.0-20180628173108-788fd7840127.mod mirror://goproxy//github.com/go-errors/errors/@v/v1.0.1.mod -> github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/go-gl/glfw/@v/v0.0.0-20190409004039-e6da0acd62b1.mod -> github.com%2Fgo-gl%2Fglfw%2F@v%2Fv0.0.0-20190409004039-e6da0acd62b1.mod mirror://goproxy//github.com/go-gl/glfw/v3.3/glfw/@v/v0.0.0-20191125211704-12ad95a8df72.mod -> github.com%2Fgo-gl%2Fglfw%2Fv3.3%2Fglfw%2F@v%2Fv0.0.0-20191125211704-12ad95a8df72.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.8.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.9.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.3.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.4.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/go-stack/stack/@v/v1.8.0.mod -> github.com%2Fgo-stack%2Fstack%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/godbus/dbus/v5/@v/v5.0.3.mod -> github.com%2Fgodbus%2Fdbus%2Fv5%2F@v%2Fv5.0.3.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.1.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.2.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.0.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.2.zip -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.2.zip mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.2.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/golang/glog/@v/v0.0.0-20160126235308-23def4e6c14b.mod -> github.com%2Fgolang%2Fglog%2F@v%2Fv0.0.0-20160126235308-23def4e6c14b.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20190702054246-869f871628b6.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20190702054246-869f871628b6.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20191027212112-611e8accdfc9.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20191027212112-611e8accdfc9.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20191227052852-215e87163ea7.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20191227052852-215e87163ea7.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20200121045136-8c9f03a8e57e.zip -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20200121045136-8c9f03a8e57e.zip mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20200121045136-8c9f03a8e57e.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20200121045136-8c9f03a8e57e.mod mirror://goproxy//github.com/golang/lint/@v/v0.0.0-20180702182130-06c8688daad7.mod -> github.com%2Fgolang%2Flint%2F@v%2Fv0.0.0-20180702182130-06c8688daad7.mod mirror://goproxy//github.com/golang/mock/@v/v1.1.1.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/golang/mock/@v/v1.2.0.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/mock/@v/v1.3.1.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/golang/mock/@v/v1.4.0.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/golang/mock/@v/v1.4.4.zip -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.zip mirror://goproxy//github.com/golang/mock/@v/v1.4.4.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.2.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.3.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.3.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.1.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.1.0.20200221234624-67d41d38c208.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.1.0.20200221234624-67d41d38c208.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.2.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.4.0.20200313231945-b860323f09d0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.4.0.20200313231945-b860323f09d0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.2.zip -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.2.zip mirror://goproxy//github.com/golang/protobuf/@v/v1.4.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/golang/snappy/@v/v0.0.0-20180518054509-2e65f85255db.zip -> github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.zip mirror://goproxy//github.com/golang/snappy/@v/v0.0.0-20180518054509-2e65f85255db.mod -> github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.mod mirror://goproxy//github.com/google/btree/@v/v0.0.0-20180813153112-4030bb1f1f0c.mod -> github.com%2Fgoogle%2Fbtree%2F@v%2Fv0.0.0-20180813153112-4030bb1f1f0c.mod mirror://goproxy//github.com/google/btree/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fbtree%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.2.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.3.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.3.1.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.4.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.5.0.zip -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/google/go-cmp/@v/v0.5.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/google/go-github/@v/v17.0.0+incompatible.mod -> github.com%2Fgoogle%2Fgo-github%2F@v%2Fv17.0.0+incompatible.mod mirror://goproxy//github.com/google/go-querystring/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgo-querystring%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/gofuzz/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgofuzz%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/gopacket/@v/v1.1.17.mod -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.17.mod mirror://goproxy//github.com/google/gopacket/@v/v1.1.18.zip -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.18.zip mirror://goproxy//github.com/google/gopacket/@v/v1.1.18.mod -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.18.mod mirror://goproxy//github.com/google/martian/@v/v2.1.0+incompatible.mod -> github.com%2Fgoogle%2Fmartian%2F@v%2Fv2.1.0+incompatible.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20181206194817-3ea8567a2e57.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20181206194817-3ea8567a2e57.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20190515194954-54271f7e092f.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20190515194954-54271f7e092f.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20200212024743-f11f1df84d12.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20200212024743-f11f1df84d12.mod mirror://goproxy//github.com/google/renameio/@v/v0.1.0.mod -> github.com%2Fgoogle%2Frenameio%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/google/uuid/@v/v1.1.1.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/google/uuid/@v/v1.1.2.zip -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.2.zip mirror://goproxy//github.com/google/uuid/@v/v1.1.2.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/googleapis/gax-go/@v/v2.0.0+incompatible.mod -> github.com%2Fgoogleapis%2Fgax-go%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/googleapis/gax-go/v2/@v/v2.0.3.mod -> github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.3.mod mirror://goproxy//github.com/googleapis/gax-go/v2/@v/v2.0.4.mod -> github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.4.mod mirror://goproxy//github.com/googleapis/gax-go/v2/@v/v2.0.5.mod -> github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.5.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20181017120253-0766667cb4d1.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20181017120253-0766667cb4d1.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190430165422-3e4dfb77656c.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190812055157-5d271430af9f.zip -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190812055157-5d271430af9f.zip mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190812055157-5d271430af9f.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190812055157-5d271430af9f.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.0.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.1.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.2.zip -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.2.zip mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.2.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/gregjones/httpcache/@v/v0.0.0-20180305231024-9cad4c3443a7.mod -> github.com%2Fgregjones%2Fhttpcache%2F@v%2Fv0.0.0-20180305231024-9cad4c3443a7.mod mirror://goproxy//github.com/grpc-ecosystem/grpc-gateway/@v/v1.5.0.mod -> github.com%2Fgrpc-ecosystem%2Fgrpc-gateway%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/gxed/hashland/keccakpg/@v/v0.0.1.mod -> github.com%2Fgxed%2Fhashland%2Fkeccakpg%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/gxed/hashland/murmur3/@v/v0.0.1.mod -> github.com%2Fgxed%2Fhashland%2Fmurmur3%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/hannahhoward/cbor-gen-for/@v/v0.0.0-20200817222906-ea96cece81f1.mod -> github.com%2Fhannahhoward%2Fcbor-gen-for%2F@v%2Fv0.0.0-20200817222906-ea96cece81f1.mod mirror://goproxy//github.com/hannahhoward/go-pubsub/@v/v0.0.0-20200423002714-8d62886cc36e.zip -> github.com%2Fhannahhoward%2Fgo-pubsub%2F@v%2Fv0.0.0-20200423002714-8d62886cc36e.zip mirror://goproxy//github.com/hannahhoward/go-pubsub/@v/v0.0.0-20200423002714-8d62886cc36e.mod -> github.com%2Fhannahhoward%2Fgo-pubsub%2F@v%2Fv0.0.0-20200423002714-8d62886cc36e.mod mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.zip -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.0.zip -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.0.mod -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.0.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.1.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.4.zip -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.4.zip mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.4.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.4.mod mirror://goproxy//github.com/hashicorp/hcl/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fhcl%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hpcloud/tail/@v/v1.0.0.mod -> github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/huin/goupnp/@v/v1.0.0.zip -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/huin/goupnp/@v/v1.0.0.mod -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/huin/goutil/@v/v0.0.0-20170803182201-1ca381bf3150.mod -> github.com%2Fhuin%2Fgoutil%2F@v%2Fv0.0.0-20170803182201-1ca381bf3150.mod mirror://goproxy//github.com/ianlancetaylor/demangle/@v/v0.0.0-20181102032728-5e5cf60278f6.mod -> github.com%2Fianlancetaylor%2Fdemangle%2F@v%2Fv0.0.0-20181102032728-5e5cf60278f6.mod mirror://goproxy//github.com/inconshreveable/mousetrap/@v/v1.0.0.mod -> github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.1.mod -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.4.zip -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.4.mod -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.0.9.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.2.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.3.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.8.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.8.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.3.3.zip -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.3.3.zip mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.3.3.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.3.3.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.2.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.3.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.4.zip -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.4.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.6.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.7.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-cidutil/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-cidutil/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.3.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.3.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.4.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.4.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.5.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.5.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.5.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.5.mod mirror://goproxy//github.com/ipfs/go-detect-race/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-detect-race/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.1.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.3.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.6.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.6.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.6.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.6.mod mirror://goproxy//github.com/ipfs/go-ds-flatfs/@v/v0.4.5.zip -> github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.5.zip mirror://goproxy//github.com/ipfs/go-ds-flatfs/@v/v0.4.5.mod -> github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.5.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.1.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.2.zip -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.2.zip mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.2.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.2.mod mirror://goproxy//github.com/ipfs/go-ds-measure/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ds-measure/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-filestore/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-filestore/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-fs-lock/@v/v0.0.6.zip -> github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/ipfs/go-fs-lock/@v/v0.0.6.mod -> github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/ipfs/go-graphsync/@v/v0.6.0.zip -> github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.6.0.zip mirror://goproxy//github.com/ipfs/go-graphsync/@v/v0.6.0.mod -> github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.4.zip -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.4.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/ipfs/go-ipfs-blocksutil/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-blocksutil/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ipfs-cmds/@v/v0.6.0.zip -> github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.6.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-cmds/@v/v0.6.0.mod -> github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-config/@v/v0.12.0.zip -> github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.12.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-config/@v/v0.12.0.mod -> github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.12.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.0-20181109222059-70721b86a9a8.mod -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.0-20181109222059-70721b86a9a8.mod mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.1.1.zip -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-interface/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-exchange-interface/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-offline/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-exchange-offline/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.8.zip -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.8.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/ipfs/go-ipfs-pinner/@v/v0.1.1.zip -> github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-pinner/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-posinfo/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-posinfo/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipfs-provider/@v/v0.4.3.zip -> github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.4.3.zip mirror://goproxy//github.com/ipfs/go-ipfs-provider/@v/v0.4.3.mod -> github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.4.3.mod mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.2.0.zip -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.2.0.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/ipfs/go-ipld-git/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-ipld-git/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipns/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipns/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-log/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.1.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.2.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.3.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.4.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.4.zip mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.4.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.4.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.1.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.2.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.2.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.3.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.3.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.5.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.5.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.1.1.zip -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.1.zip mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.1.1.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.1.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.0.6.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.2.3.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.0.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.1.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.2.zip -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.2.zip mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.2.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.2.mod mirror://goproxy//github.com/ipfs/go-metrics-interface/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-metrics-interface/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-metrics-prometheus/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-metrics-prometheus/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-mfs/@v/v0.1.2.zip -> github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/ipfs/go-mfs/@v/v0.1.2.mod -> github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.9.zip -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.9.zip mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.9.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.2.0.zip -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.2.0.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/ipfs/go-pinning-service-http-client/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-pinning-service-http-client%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-pinning-service-http-client/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-pinning-service-http-client%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.2.4.zip -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.4.zip mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.2.4.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/ipfs/go-verifcid/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-verifcid/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.4.0.zip -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.4.0.mod -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/ipld/go-car/@v/v0.1.1-0.20201015032735-ff6ccdc46acc.zip -> github.com%2Fipld%2Fgo-car%2F@v%2Fv0.1.1-0.20201015032735-ff6ccdc46acc.zip mirror://goproxy//github.com/ipld/go-car/@v/v0.1.1-0.20201015032735-ff6ccdc46acc.mod -> github.com%2Fipld%2Fgo-car%2F@v%2Fv0.1.1-0.20201015032735-ff6ccdc46acc.mod mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.5.1-0.20200828233916-988837377a7f.mod -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.5.1-0.20200828233916-988837377a7f.mod mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.5.1-0.20201021195245-109253e8a018.zip -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.5.1-0.20201021195245-109253e8a018.zip mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.5.1-0.20201021195245-109253e8a018.mod -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.5.1-0.20201021195245-109253e8a018.mod mirror://goproxy//github.com/ipld/go-ipld-prime-proto/@v/v0.0.0-20200922192210-9a2bfd4440a6.mod -> github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.0.0-20200922192210-9a2bfd4440a6.mod mirror://goproxy//github.com/ipld/go-ipld-prime-proto/@v/v0.1.0.zip -> github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipld/go-ipld-prime-proto/@v/v0.1.0.mod -> github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jackpal/gateway/@v/v1.0.5.mod -> github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.5.mod mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.1.mod -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.2.zip -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.2.mod -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.0.0-20150120210510-1bb1476777ec.mod -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.0.0-20150120210510-1bb1476777ec.mod mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.1.0.zip -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.1.0.mod -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jbenet/go-is-domain/@v/v1.0.5.zip -> github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.5.zip mirror://goproxy//github.com/jbenet/go-is-domain/@v/v1.0.5.mod -> github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.5.mod mirror://goproxy//github.com/jbenet/go-random/@v/v0.0.0-20190219211222-123a90aedc0c.zip -> github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.zip mirror://goproxy//github.com/jbenet/go-random/@v/v0.0.0-20190219211222-123a90aedc0c.mod -> github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.mod mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.0.0-20150120210811-aac704a3f4f2.mod -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.0.0-20150120210811-aac704a3f4f2.mod mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.1.0.zip -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.1.0.mod -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.0.0-20160826012719-b497e2f366b8.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.0.0-20160826012719-b497e2f366b8.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.3.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.4.zip -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.4.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/jellevandenhooff/dkim/@v/v0.0.0-20150330215556-f50fe3d243e1.mod -> github.com%2Fjellevandenhooff%2Fdkim%2F@v%2Fv0.0.0-20150330215556-f50fe3d243e1.mod mirror://goproxy//github.com/jessevdk/go-flags/@v/v0.0.0-20141203071132-1679536dcc89.mod -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv0.0.0-20141203071132-1679536dcc89.mod mirror://goproxy//github.com/jessevdk/go-flags/@v/v1.4.0.mod -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/jrick/logrotate/@v/v1.0.0.mod -> github.com%2Fjrick%2Flogrotate%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.6.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.6.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.7.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.7.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.10.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.10.mod mirror://goproxy//github.com/jstemmer/go-junit-report/@v/v0.0.0-20190106144839-af01ea7f8024.mod -> github.com%2Fjstemmer%2Fgo-junit-report%2F@v%2Fv0.0.0-20190106144839-af01ea7f8024.mod mirror://goproxy//github.com/jstemmer/go-junit-report/@v/v0.9.1.mod -> github.com%2Fjstemmer%2Fgo-junit-report%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/jtolds/gls/@v/v4.2.1+incompatible.mod -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.2.1+incompatible.mod mirror://goproxy//github.com/jtolds/gls/@v/v4.20.0+incompatible.zip -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.zip mirror://goproxy//github.com/jtolds/gls/@v/v4.20.0+incompatible.mod -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.mod mirror://goproxy//github.com/julienschmidt/httprouter/@v/v1.2.0.mod -> github.com%2Fjulienschmidt%2Fhttprouter%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/kami-zh/go-capturer/@v/v0.0.0-20171211120116-e492ea43421d.mod -> github.com%2Fkami-zh%2Fgo-capturer%2F@v%2Fv0.0.0-20171211120116-e492ea43421d.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.1.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.2.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.5.0.zip -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.5.0.zip mirror://goproxy//github.com/kisielk/errcheck/@v/v1.5.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/kisielk/gotool/@v/v1.0.0.mod -> github.com%2Fkisielk%2Fgotool%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/kkdai/bstream/@v/v0.0.0-20161212061736-f391b8402d23.mod -> github.com%2Fkkdai%2Fbstream%2F@v%2Fv0.0.0-20161212061736-f391b8402d23.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.1.zip -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.1.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20180514024734-4a0ed625a78b.mod -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20180514024734-4a0ed625a78b.mod mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20191105050749-2e1c40ed0b5d.zip -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20191105050749-2e1c40ed0b5d.zip mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20191105050749-2e1c40ed0b5d.mod -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20191105050749-2e1c40ed0b5d.mod mirror://goproxy//github.com/kr/logfmt/@v/v0.0.0-20140226030751-b84e30acd515.mod -> github.com%2Fkr%2Flogfmt%2F@v%2Fv0.0.0-20140226030751-b84e30acd515.mod mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/pretty/@v/v0.2.0.zip -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/kr/pretty/@v/v0.2.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.1.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.3.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.3.mod mirror://goproxy//github.com/kr/text/@v/v0.1.0.zip -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/text/@v/v0.1.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-cidranger/@v/v1.1.0.zip -> github.com%2Flibp2p%2Fgo-cidranger%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/libp2p/go-cidranger/@v/v1.1.0.mod -> github.com%2Flibp2p%2Fgo-cidranger%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/libp2p/go-conn-security/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-conn-security%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.0.30.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.30.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.6.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.4.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.4.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.8.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.12.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.12.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.13.0.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.13.0.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.13.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.13.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-asn-util/@v/v0.0.0-20200825225859-85005c6cf052.zip -> github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.0.0-20200825225859-85005c6cf052.zip mirror://goproxy//github.com/libp2p/go-libp2p-asn-util/@v/v0.0.0-20200825225859-85005c6cf052.mod -> github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.0.0-20200825225859-85005c6cf052.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.0.9.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-connmgr/@v/v0.2.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-connmgr/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.6.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.6.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.7.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.7.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.8.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.8.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.5.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-gostream/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-gostream/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-http/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-http/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-pnet/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-pnet%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-kad-dht/@v/v0.11.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.11.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-kad-dht/@v/v0.11.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.11.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.4.7.zip -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.7.zip mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.4.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-metrics/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-metrics%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.4.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.4.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.4.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.6.zip -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-noise/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-noise/@v/v0.1.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-noise/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.6.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.6.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-pnet/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-pnet/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-protocol/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-protocol/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.4.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.4.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.4.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub-router/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub-router/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.10.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.10.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.10.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-routing/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-routing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-routing-helpers/@v/v0.2.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-routing-helpers/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.8.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.8.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.2-0.20200422005655-8775583591d8.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.2-0.20200422005655-8775583591d8.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.1.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.8.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.8.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.5.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.5.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.6.zip -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.5.zip -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.3.zip -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.7.zip -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.7.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-socket-activation/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-socket-activation/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-stream-muxer/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-stream-muxer/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-testutil/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-testutil/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.1.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.2.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.3.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.3.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.3.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.3.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.5.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.5.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.7.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.7.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.4.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.4.1.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.4.1.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.4.1.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/libp2p/go-yamux/v2/@v/v2.0.0.zip -> github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.0.0.zip mirror://goproxy//github.com/libp2p/go-yamux/v2/@v/v2.0.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.0.0.mod mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.19.3.zip -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.19.3.zip mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.19.3.mod -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.19.3.mod mirror://goproxy//github.com/lunixbochs/vtclean/@v/v1.0.0.mod -> github.com%2Flunixbochs%2Fvtclean%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/magiconair/properties/@v/v1.8.0.mod -> github.com%2Fmagiconair%2Fproperties%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/mailru/easyjson/@v/v0.0.0-20180823135443-60711f1a8329.mod -> github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20180823135443-60711f1a8329.mod mirror://goproxy//github.com/mailru/easyjson/@v/v0.0.0-20190312143242-1de009706dbe.mod -> github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20190312143242-1de009706dbe.mod mirror://goproxy//github.com/marten-seemann/qpack/@v/v0.2.1.mod -> github.com%2Fmarten-seemann%2Fqpack%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/marten-seemann/qtls/@v/v0.10.0.zip -> github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.10.0.zip mirror://goproxy//github.com/marten-seemann/qtls/@v/v0.10.0.mod -> github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/marten-seemann/qtls-go1-15/@v/v0.1.1.zip -> github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/marten-seemann/qtls-go1-15/@v/v0.1.1.mod -> github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.1.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.2.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.zip -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.4.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.5.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.8.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.4.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.9.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.zip -> github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.mod -> github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/mgutz/ansi/@v/v0.0.0-20170206155736-9520e82c474b.zip -> github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.zip mirror://goproxy//github.com/mgutz/ansi/@v/v0.0.0-20170206155736-9520e82c474b.mod -> github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.mod mirror://goproxy//github.com/microcosm-cc/bluemonday/@v/v1.0.1.mod -> github.com%2Fmicrocosm-cc%2Fbluemonday%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.12.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.12.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.28.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.28.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.31.zip -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.31.zip mirror://goproxy//github.com/miekg/dns/@v/v1.1.31.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.31.mod mirror://goproxy//github.com/minio/blake2b-simd/@v/v0.0.0-20160723061019-3f5f724cb5b1.zip -> github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.zip mirror://goproxy//github.com/minio/blake2b-simd/@v/v0.0.0-20160723061019-3f5f724cb5b1.mod -> github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190131020904-2d45a736cd16.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190131020904-2d45a736cd16.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190328051042-05b4dd3047e5.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190328051042-05b4dd3047e5.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.0.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1-0.20190913151208-6de447530771.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1-0.20190913151208-6de447530771.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1.zip -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.zip -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.mod -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mitchellh/mapstructure/@v/v1.1.2.mod -> github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180228061459-e0a39a4cb421.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180228061459-e0a39a4cb421.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180306012644-bacd9c7ef1dd.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180306012644-bacd9c7ef1dd.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v0.0.0-20180701023420-4b7aa43c6742.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv0.0.0-20180701023420-4b7aa43c6742.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v1.0.1.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.0.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.1.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.2.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.3.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.3.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.2.0.zip -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/mr-tron/base58/@v/v1.2.0.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/multiformats/go-base32/@v/v0.0.3.zip -> github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/multiformats/go-base32/@v/v0.0.3.mod -> github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/multiformats/go-base36/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-base36%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-base36/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-base36%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.4.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.2.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.3.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.4.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.5.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.5.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.2.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.3.zip -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.3.mod -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.5.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.8.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.9.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.10.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.10.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.13.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.13.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.14.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.14.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.14.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.14.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.4.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.2.0.zip -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.5.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.6.zip -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.6.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/mwitkow/go-conntrack/@v/v0.0.0-20161129095857-cc309e4a2223.mod -> github.com%2Fmwitkow%2Fgo-conntrack%2F@v%2Fv0.0.0-20161129095857-cc309e4a2223.mod mirror://goproxy//github.com/neelance/astrewrite/@v/v0.0.0-20160511093645-99348263ae86.mod -> github.com%2Fneelance%2Fastrewrite%2F@v%2Fv0.0.0-20160511093645-99348263ae86.mod mirror://goproxy//github.com/neelance/sourcemap/@v/v0.0.0-20151028013722-8c68805598ab.mod -> github.com%2Fneelance%2Fsourcemap%2F@v%2Fv0.0.0-20151028013722-8c68805598ab.mod mirror://goproxy//github.com/nxadm/tail/@v/v1.4.4.zip -> github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.4.zip mirror://goproxy//github.com/nxadm/tail/@v/v1.4.4.mod -> github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.4.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.6.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.7.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.8.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.12.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.12.1.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.1.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.14.0.zip -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.14.0.zip mirror://goproxy//github.com/onsi/ginkgo/@v/v1.14.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.14.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.4.3.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.4.3.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.5.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.7.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.7.1.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.9.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.10.1.zip -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.10.1.zip mirror://goproxy//github.com/onsi/gomega/@v/v1.10.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.10.1.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.0.2.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.1.0.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.2.0.zip -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.2.0.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/openzipkin/zipkin-go/@v/v0.1.1.mod -> github.com%2Fopenzipkin%2Fzipkin-go%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/pelletier/go-toml/@v/v1.2.0.mod -> github.com%2Fpelletier%2Fgo-toml%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.0.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.zip -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.zip mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190221155625-df39d6c2d992.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190221155625-df39d6c2d992.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190408063855-01bf1e26dd14.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190408063855-01bf1e26dd14.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190807091052-3d65705ee9f1.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190807091052-3d65705ee9f1.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190809202753-05966cbd336a.zip -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190809202753-05966cbd336a.zip mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190809202753-05966cbd336a.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190809202753-05966cbd336a.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.8.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.1.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.2.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.2.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.0.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.2.1.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.7.1.zip -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.7.1.zip mirror://goproxy//github.com/prometheus/client_golang/@v/v1.7.1.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.7.1.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20180712105110-5c3871d89910.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20180712105110-5c3871d89910.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190129233127-fd36f4220a90.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190129233127-fd36f4220a90.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190812154241-14fe0d1b01d4.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190812154241-14fe0d1b01d4.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.2.0.zip -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/prometheus/client_model/@v/v0.2.0.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20180801064454-c7de2306084e.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20180801064454-c7de2306084e.mod mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20181126121408-4724e9255275.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181126121408-4724e9255275.mod mirror://goproxy//github.com/prometheus/common/@v/v0.4.1.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/prometheus/common/@v/v0.7.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.7.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.10.0.zip -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.10.0.zip mirror://goproxy//github.com/prometheus/common/@v/v0.10.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20180725123919-05ee40e3a273.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20180725123919-05ee40e3a273.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181005140218-185b4288413d.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181005140218-185b4288413d.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181204211112-1dc9a6cbc91a.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181204211112-1dc9a6cbc91a.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.2.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.5.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.6.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.1.3.zip -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/prometheus/procfs/@v/v0.1.3.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/prometheus/statsd_exporter/@v/v0.15.0.zip -> github.com%2Fprometheus%2Fstatsd_exporter%2F@v%2Fv0.15.0.zip mirror://goproxy//github.com/prometheus/statsd_exporter/@v/v0.15.0.mod -> github.com%2Fprometheus%2Fstatsd_exporter%2F@v%2Fv0.15.0.mod mirror://goproxy//github.com/rogpeppe/go-internal/@v/v1.3.0.mod -> github.com%2Frogpeppe%2Fgo-internal%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/rs/cors/@v/v1.7.0.zip -> github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/rs/cors/@v/v1.7.0.mod -> github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/russross/blackfriday/@v/v1.5.2.mod -> github.com%2Frussross%2Fblackfriday%2F@v%2Fv1.5.2.mod mirror://goproxy//github.com/russross/blackfriday/v2/@v/v2.0.1.mod -> github.com%2Frussross%2Fblackfriday%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/rwcarlsen/goexif/@v/v0.0.0-20190401172101-9e8deecbddbd.mod -> github.com%2Frwcarlsen%2Fgoexif%2F@v%2Fv0.0.0-20190401172101-9e8deecbddbd.mod mirror://goproxy//github.com/sergi/go-diff/@v/v1.0.0.mod -> github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/shurcoo!l/component/@v/v0.0.0-20170202220835-f88ec8f54cc4.mod -> github.com%2Fshurcoo!l%2Fcomponent%2F@v%2Fv0.0.0-20170202220835-f88ec8f54cc4.mod mirror://goproxy//github.com/shurcoo!l/events/@v/v0.0.0-20181021180414-410e4ca65f48.mod -> github.com%2Fshurcoo!l%2Fevents%2F@v%2Fv0.0.0-20181021180414-410e4ca65f48.mod mirror://goproxy//github.com/shurcoo!l/github_flavored_markdown/@v/v0.0.0-20181002035957-2122de532470.mod -> github.com%2Fshurcoo!l%2Fgithub_flavored_markdown%2F@v%2Fv0.0.0-20181002035957-2122de532470.mod mirror://goproxy//github.com/shurcoo!l/go/@v/v0.0.0-20180423040247-9e1955d9fb6e.mod -> github.com%2Fshurcoo!l%2Fgo%2F@v%2Fv0.0.0-20180423040247-9e1955d9fb6e.mod mirror://goproxy//github.com/shurcoo!l/go-goon/@v/v0.0.0-20170922171312-37c2f522c041.mod -> github.com%2Fshurcoo!l%2Fgo-goon%2F@v%2Fv0.0.0-20170922171312-37c2f522c041.mod mirror://goproxy//github.com/shurcoo!l/gofontwoff/@v/v0.0.0-20180329035133-29b52fc0a18d.mod -> github.com%2Fshurcoo!l%2Fgofontwoff%2F@v%2Fv0.0.0-20180329035133-29b52fc0a18d.mod mirror://goproxy//github.com/shurcoo!l/gopherjslib/@v/v0.0.0-20160914041154-feb6d3990c2c.mod -> github.com%2Fshurcoo!l%2Fgopherjslib%2F@v%2Fv0.0.0-20160914041154-feb6d3990c2c.mod mirror://goproxy//github.com/shurcoo!l/highlight_diff/@v/v0.0.0-20170515013008-09bb4053de1b.mod -> github.com%2Fshurcoo!l%2Fhighlight_diff%2F@v%2Fv0.0.0-20170515013008-09bb4053de1b.mod mirror://goproxy//github.com/shurcoo!l/highlight_go/@v/v0.0.0-20181028180052-98c3abbbae20.mod -> github.com%2Fshurcoo!l%2Fhighlight_go%2F@v%2Fv0.0.0-20181028180052-98c3abbbae20.mod mirror://goproxy//github.com/shurcoo!l/home/@v/v0.0.0-20181020052607-80b7ffcb30f9.mod -> github.com%2Fshurcoo!l%2Fhome%2F@v%2Fv0.0.0-20181020052607-80b7ffcb30f9.mod mirror://goproxy//github.com/shurcoo!l/htmlg/@v/v0.0.0-20170918183704-d01228ac9e50.mod -> github.com%2Fshurcoo!l%2Fhtmlg%2F@v%2Fv0.0.0-20170918183704-d01228ac9e50.mod mirror://goproxy//github.com/shurcoo!l/httperror/@v/v0.0.0-20170206035902-86b7830d14cc.mod -> github.com%2Fshurcoo!l%2Fhttperror%2F@v%2Fv0.0.0-20170206035902-86b7830d14cc.mod mirror://goproxy//github.com/shurcoo!l/httpfs/@v/v0.0.0-20171119174359-809beceb2371.mod -> github.com%2Fshurcoo!l%2Fhttpfs%2F@v%2Fv0.0.0-20171119174359-809beceb2371.mod mirror://goproxy//github.com/shurcoo!l/httpgzip/@v/v0.0.0-20180522190206-b1c53ac65af9.mod -> github.com%2Fshurcoo!l%2Fhttpgzip%2F@v%2Fv0.0.0-20180522190206-b1c53ac65af9.mod mirror://goproxy//github.com/shurcoo!l/issues/@v/v0.0.0-20181008053335-6292fdc1e191.mod -> github.com%2Fshurcoo!l%2Fissues%2F@v%2Fv0.0.0-20181008053335-6292fdc1e191.mod mirror://goproxy//github.com/shurcoo!l/issuesapp/@v/v0.0.0-20180602232740-048589ce2241.mod -> github.com%2Fshurcoo!l%2Fissuesapp%2F@v%2Fv0.0.0-20180602232740-048589ce2241.mod mirror://goproxy//github.com/shurcoo!l/notifications/@v/v0.0.0-20181007000457-627ab5aea122.mod -> github.com%2Fshurcoo!l%2Fnotifications%2F@v%2Fv0.0.0-20181007000457-627ab5aea122.mod mirror://goproxy//github.com/shurcoo!l/octicon/@v/v0.0.0-20181028054416-fa4f57f9efb2.mod -> github.com%2Fshurcoo!l%2Focticon%2F@v%2Fv0.0.0-20181028054416-fa4f57f9efb2.mod mirror://goproxy//github.com/shurcoo!l/reactions/@v/v0.0.0-20181006231557-f2e0b4ca5b82.mod -> github.com%2Fshurcoo!l%2Freactions%2F@v%2Fv0.0.0-20181006231557-f2e0b4ca5b82.mod mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v0.0.0-20170918181015-86672fcb3f95.mod -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv0.0.0-20170918181015-86672fcb3f95.mod mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v1.0.0.mod -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/shurcoo!l/users/@v/v0.0.0-20180125191416-49c67e49c537.mod -> github.com%2Fshurcoo!l%2Fusers%2F@v%2Fv0.0.0-20180125191416-49c67e49c537.mod mirror://goproxy//github.com/shurcoo!l/webdavfs/@v/v0.0.0-20170829043945-18c3829fa133.mod -> github.com%2Fshurcoo!l%2Fwebdavfs%2F@v%2Fv0.0.0-20170829043945-18c3829fa133.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.2.0.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.4.2.zip -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.2.zip mirror://goproxy//github.com/sirupsen/logrus/@v/v1.4.2.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v0.0.0-20180927180507-b2de0cb4f26d.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv0.0.0-20180927180507-b2de0cb4f26d.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.0.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.1.zip -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.1.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190222223459-a17d461953aa.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190222223459-a17d461953aa.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190330032615-68dc04aab96a.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190330032615-68dc04aab96a.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v1.6.4.zip -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv1.6.4.zip mirror://goproxy//github.com/smartystreets/goconvey/@v/v1.6.4.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv1.6.4.mod mirror://goproxy//github.com/smola/gocompat/@v/v0.2.0.mod -> github.com%2Fsmola%2Fgocompat%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/sourcegraph/annotate/@v/v0.0.0-20160123013949-f4cad6c6324d.mod -> github.com%2Fsourcegraph%2Fannotate%2F@v%2Fv0.0.0-20160123013949-f4cad6c6324d.mod mirror://goproxy//github.com/sourcegraph/syntaxhighlight/@v/v0.0.0-20170531221838-bd320f5d308e.mod -> github.com%2Fsourcegraph%2Fsyntaxhighlight%2F@v%2Fv0.0.0-20170531221838-bd320f5d308e.mod mirror://goproxy//github.com/spacemonkeygo/openssl/@v/v0.0.0-20181017203307-c2dcc5cca94a.mod -> github.com%2Fspacemonkeygo%2Fopenssl%2F@v%2Fv0.0.0-20181017203307-c2dcc5cca94a.mod mirror://goproxy//github.com/spacemonkeygo/spacelog/@v/v0.0.0-20180420211403-2296661a0572.zip -> github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.zip mirror://goproxy//github.com/spacemonkeygo/spacelog/@v/v0.0.0-20180420211403-2296661a0572.mod -> github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v0.0.0-20180118202830-f09979ecbc72.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv0.0.0-20180118202830-f09979ecbc72.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.zip -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/spf13/afero/@v/v1.1.2.mod -> github.com%2Fspf13%2Fafero%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/spf13/cast/@v/v1.3.0.mod -> github.com%2Fspf13%2Fcast%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/spf13/cobra/@v/v0.0.5.mod -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/spf13/jwalterweatherman/@v/v1.0.0.mod -> github.com%2Fspf13%2Fjwalterweatherman%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.3.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/spf13/viper/@v/v1.3.2.mod -> github.com%2Fspf13%2Fviper%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/src-d/envconfig/@v/v1.0.0.mod -> github.com%2Fsrc-d%2Fenvconfig%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.1.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.2.2.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.5.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.6.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.7.0.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.7.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/syndtr/goleveldb/@v/v1.0.0.zip -> github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/syndtr/goleveldb/@v/v1.0.0.mod -> github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/tarm/serial/@v/v0.0.0-20180830185346-98f6abe2eb07.mod -> github.com%2Ftarm%2Fserial%2F@v%2Fv0.0.0-20180830185346-98f6abe2eb07.mod mirror://goproxy//github.com/texttheater/golang-levenshtein/@v/v0.0.0-20180516184445-d188e65d659e.zip -> github.com%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.zip mirror://goproxy//github.com/texttheater/golang-levenshtein/@v/v0.0.0-20180516184445-d188e65d659e.mod -> github.com%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.mod mirror://goproxy//github.com/tv42/httpunix/@v/v0.0.0-20191220191345-2ba4b9c3382c.zip -> github.com%2Ftv42%2Fhttpunix%2F@v%2Fv0.0.0-20191220191345-2ba4b9c3382c.zip mirror://goproxy//github.com/tv42/httpunix/@v/v0.0.0-20191220191345-2ba4b9c3382c.mod -> github.com%2Ftv42%2Fhttpunix%2F@v%2Fv0.0.0-20191220191345-2ba4b9c3382c.mod mirror://goproxy//github.com/ugorji/go/codec/@v/v0.0.0-20181204163529-d75b2dcb6bc8.mod -> github.com%2Fugorji%2Fgo%2Fcodec%2F@v%2Fv0.0.0-20181204163529-d75b2dcb6bc8.mod mirror://goproxy//github.com/urfave/cli/v2/@v/v2.0.0.mod -> github.com%2Furfave%2Fcli%2Fv2%2F@v%2Fv2.0.0.mod mirror://goproxy//github.com/viant/assertly/@v/v0.4.8.mod -> github.com%2Fviant%2Fassertly%2F@v%2Fv0.4.8.mod mirror://goproxy//github.com/viant/toolbox/@v/v0.24.0.mod -> github.com%2Fviant%2Ftoolbox%2F@v%2Fv0.24.0.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20180510122957-5ad1f5abf436.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20180510122957-5ad1f5abf436.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20190328234359-8b3e70f8e830.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20190328234359-8b3e70f8e830.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20200122115046-b9ea61034e4a.zip -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20200122115046-b9ea61034e4a.zip mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20200122115046-b9ea61034e4a.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20200122115046-b9ea61034e4a.mod mirror://goproxy//github.com/whyrusleeping/base32/@v/v0.0.0-20170828182744-c30ac30633cc.zip -> github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.zip mirror://goproxy//github.com/whyrusleeping/base32/@v/v0.0.0-20170828182744-c30ac30633cc.mod -> github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.mod mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20200123233031-1cdf64d27158.mod -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200123233031-1cdf64d27158.mod mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20200710004633-5379fc63235d.zip -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200710004633-5379fc63235d.zip mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20200710004633-5379fc63235d.mod -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200710004633-5379fc63235d.mod mirror://goproxy//github.com/whyrusleeping/chunker/@v/v0.0.0-20181014151217-fe64bd25879f.zip -> github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.zip mirror://goproxy//github.com/whyrusleeping/chunker/@v/v0.0.0-20181014151217-fe64bd25879f.mod -> github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.mod mirror://goproxy//github.com/whyrusleeping/go-keyspace/@v/v0.0.0-20160322163242-5b898ac5add1.zip -> github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.zip mirror://goproxy//github.com/whyrusleeping/go-keyspace/@v/v0.0.0-20160322163242-5b898ac5add1.mod -> github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.mod mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.0-20170515211332-0457bb6b88fc.mod -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.0-20170515211332-0457bb6b88fc.mod mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.1.mod -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/whyrusleeping/go-notifier/@v/v0.0.0-20170827234753-097c5d47330f.mod -> github.com%2Fwhyrusleeping%2Fgo-notifier%2F@v%2Fv0.0.0-20170827234753-097c5d47330f.mod mirror://goproxy//github.com/whyrusleeping/go-sysinfo/@v/v0.0.0-20190219211824-4a357d4b90b1.zip -> github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.zip mirror://goproxy//github.com/whyrusleeping/go-sysinfo/@v/v0.0.0-20190219211824-4a357d4b90b1.mod -> github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.mod mirror://goproxy//github.com/whyrusleeping/mafmt/@v/v1.2.8.mod -> github.com%2Fwhyrusleeping%2Fmafmt%2F@v%2Fv1.2.8.mod mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20180901202407-ef14215e6b30.mod -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20180901202407-ef14215e6b30.mod mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20190826153040-b9b60ed33aa9.zip -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9.zip mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20190826153040-b9b60ed33aa9.mod -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9.mod mirror://goproxy//github.com/whyrusleeping/multiaddr-filter/@v/v0.0.0-20160516205228-e903e4adabd7.zip -> github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.zip mirror://goproxy//github.com/whyrusleeping/multiaddr-filter/@v/v0.0.0-20160516205228-e903e4adabd7.mod -> github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.mod mirror://goproxy//github.com/whyrusleeping/tar-utils/@v/v0.0.0-20201201191210-20a61371de5b.zip -> github.com%2Fwhyrusleeping%2Ftar-utils%2F@v%2Fv0.0.0-20201201191210-20a61371de5b.zip mirror://goproxy//github.com/whyrusleeping/tar-utils/@v/v0.0.0-20201201191210-20a61371de5b.mod -> github.com%2Fwhyrusleeping%2Ftar-utils%2F@v%2Fv0.0.0-20201201191210-20a61371de5b.mod mirror://goproxy//github.com/whyrusleeping/timecache/@v/v0.0.0-20160911033111-cfcb2f1abfee.zip -> github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.zip mirror://goproxy//github.com/whyrusleeping/timecache/@v/v0.0.0-20160911033111-cfcb2f1abfee.mod -> github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.mod mirror://goproxy//github.com/x-cray/logrus-prefixed-formatter/@v/v0.5.2.mod -> github.com%2Fx-cray%2Flogrus-prefixed-formatter%2F@v%2Fv0.5.2.mod mirror://goproxy//github.com/xordataexchange/crypt/@v/v0.0.3-0.20170626215501-b2862e3d0a77.mod -> github.com%2Fxordataexchange%2Fcrypt%2F@v%2Fv0.0.3-0.20170626215501-b2862e3d0a77.mod mirror://goproxy//github.com/yuin/goldmark/@v/v1.1.27.mod -> github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.1.27.mod mirror://goproxy//github.com/yuin/goldmark/@v/v1.1.32.mod -> github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.1.32.mod mirror://goproxy//github.com/yuin/goldmark/@v/v1.2.1.mod -> github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.2.1.mod mirror://goproxy//go.opencensus.io/@v/v0.18.0.mod -> go.opencensus.io%2F@v%2Fv0.18.0.mod mirror://goproxy//go.opencensus.io/@v/v0.21.0.mod -> go.opencensus.io%2F@v%2Fv0.21.0.mod mirror://goproxy//go.opencensus.io/@v/v0.22.0.mod -> go.opencensus.io%2F@v%2Fv0.22.0.mod mirror://goproxy//go.opencensus.io/@v/v0.22.1.mod -> go.opencensus.io%2F@v%2Fv0.22.1.mod mirror://goproxy//go.opencensus.io/@v/v0.22.2.mod -> go.opencensus.io%2F@v%2Fv0.22.2.mod mirror://goproxy//go.opencensus.io/@v/v0.22.3.mod -> go.opencensus.io%2F@v%2Fv0.22.3.mod mirror://goproxy//go.opencensus.io/@v/v0.22.4.mod -> go.opencensus.io%2F@v%2Fv0.22.4.mod mirror://goproxy//go.opencensus.io/@v/v0.22.5.zip -> go.opencensus.io%2F@v%2Fv0.22.5.zip mirror://goproxy//go.opencensus.io/@v/v0.22.5.mod -> go.opencensus.io%2F@v%2Fv0.22.5.mod mirror://goproxy//go.uber.org/atomic/@v/v1.4.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.4.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.5.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.5.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.6.0.zip -> go.uber.org%2Fatomic%2F@v%2Fv1.6.0.zip mirror://goproxy//go.uber.org/atomic/@v/v1.6.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.6.0.mod mirror://goproxy//go.uber.org/dig/@v/v1.10.0.zip -> go.uber.org%2Fdig%2F@v%2Fv1.10.0.zip mirror://goproxy//go.uber.org/dig/@v/v1.10.0.mod -> go.uber.org%2Fdig%2F@v%2Fv1.10.0.mod mirror://goproxy//go.uber.org/fx/@v/v1.13.1.zip -> go.uber.org%2Ffx%2F@v%2Fv1.13.1.zip mirror://goproxy//go.uber.org/fx/@v/v1.13.1.mod -> go.uber.org%2Ffx%2F@v%2Fv1.13.1.mod mirror://goproxy//go.uber.org/goleak/@v/v0.10.0.mod -> go.uber.org%2Fgoleak%2F@v%2Fv0.10.0.mod mirror://goproxy//go.uber.org/goleak/@v/v1.0.0.zip -> go.uber.org%2Fgoleak%2F@v%2Fv1.0.0.zip mirror://goproxy//go.uber.org/goleak/@v/v1.0.0.mod -> go.uber.org%2Fgoleak%2F@v%2Fv1.0.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.1.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.1.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.4.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.4.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.5.0.zip -> go.uber.org%2Fmultierr%2F@v%2Fv1.5.0.zip mirror://goproxy//go.uber.org/multierr/@v/v1.5.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.5.0.mod mirror://goproxy//go.uber.org/tools/@v/v0.0.0-20190618225709-2cfd321de3ee.zip -> go.uber.org%2Ftools%2F@v%2Fv0.0.0-20190618225709-2cfd321de3ee.zip mirror://goproxy//go.uber.org/tools/@v/v0.0.0-20190618225709-2cfd321de3ee.mod -> go.uber.org%2Ftools%2F@v%2Fv0.0.0-20190618225709-2cfd321de3ee.mod mirror://goproxy//go.uber.org/zap/@v/v1.10.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.10.0.mod mirror://goproxy//go.uber.org/zap/@v/v1.14.1.mod -> go.uber.org%2Fzap%2F@v%2Fv1.14.1.mod mirror://goproxy//go.uber.org/zap/@v/v1.15.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.15.0.mod mirror://goproxy//go.uber.org/zap/@v/v1.16.0.zip -> go.uber.org%2Fzap%2F@v%2Fv1.16.0.zip mirror://goproxy//go.uber.org/zap/@v/v1.16.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.16.0.mod mirror://goproxy//go4.org/@v/v0.0.0-20180809161055-417644f6feb5.mod -> go4.org%2F@v%2Fv0.0.0-20180809161055-417644f6feb5.mod mirror://goproxy//go4.org/@v/v0.0.0-20200411211856-f5505b9728dd.zip -> go4.org%2F@v%2Fv0.0.0-20200411211856-f5505b9728dd.zip mirror://goproxy//go4.org/@v/v0.0.0-20200411211856-f5505b9728dd.mod -> go4.org%2F@v%2Fv0.0.0-20200411211856-f5505b9728dd.mod mirror://goproxy//golang.org/x/build/@v/v0.0.0-20190111050920-041ab4dc3f9d.mod -> golang.org%2Fx%2Fbuild%2F@v%2Fv0.0.0-20190111050920-041ab4dc3f9d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20170930174604-9419663f5a44.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20170930174604-9419663f5a44.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20180904163835-0709b304e793.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20180904163835-0709b304e793.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20181030102418-4d3f4d9ffa16.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181030102418-4d3f4d9ffa16.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20181203042331-505ab145d0a9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181203042331-505ab145d0a9.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190211182817-74369b46fc67.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190211182817-74369b46fc67.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190225124518-7f87c0fbb88b.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190225124518-7f87c0fbb88b.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190228161510-8dd112bcdc25.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190228161510-8dd112bcdc25.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190313024323-a1f597ede03a.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190313024323-a1f597ede03a.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190426145343-a29dc8fdc734.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190426145343-a29dc8fdc734.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190510104115-cbcb75029529.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190510104115-cbcb75029529.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190513172903-22d7a77e9e5f.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190513172903-22d7a77e9e5f.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190530122614-20be4c3c3ed5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190530122614-20be4c3c3ed5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190605123033-f99c8df09eb5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190605123033-f99c8df09eb5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190611184440-5c40567a22f8.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190611184440-5c40567a22f8.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190618222545-ea8f1a30c443.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190618222545-ea8f1a30c443.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20191011191535-87dc89f01550.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191011191535-87dc89f01550.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200115085410-6d4e4cb37c7d.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200115085410-6d4e4cb37c7d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200117160349-530e935923ad.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200117160349-530e935923ad.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200221231518-2aa609cf4a9d.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200221231518-2aa609cf4a9d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200423211502-4bdfaf469ed5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200423211502-4bdfaf469ed5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200622213623-75b288015ac9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200820211705-5c72a883971a.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200820211705-5c72a883971a.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20201221181555-eec23a3978ad.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201221181555-eec23a3978ad.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20201221181555-eec23a3978ad.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201221181555-eec23a3978ad.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190121172915-509febef88a4.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190121172915-509febef88a4.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190306152737-a1d7652674e8.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190306152737-a1d7652674e8.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190510132918-efd6b22b2522.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190510132918-efd6b22b2522.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190829153037-c13cbed26979.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190829153037-c13cbed26979.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20191030013958-a1ab85dbe136.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191030013958-a1ab85dbe136.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20191129062945-2f5052295587.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191129062945-2f5052295587.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20191227195350-da58074b4299.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191227195350-da58074b4299.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20200207192155-f17229e696bd.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20200207192155-f17229e696bd.mod mirror://goproxy//golang.org/x/image/@v/v0.0.0-20190227222117-0694c2d4d067.mod -> golang.org%2Fx%2Fimage%2F@v%2Fv0.0.0-20190227222117-0694c2d4d067.mod mirror://goproxy//golang.org/x/image/@v/v0.0.0-20190802002840-cff245a6509b.mod -> golang.org%2Fx%2Fimage%2F@v%2Fv0.0.0-20190802002840-cff245a6509b.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20180702182130-06c8688daad7.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20180702182130-06c8688daad7.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20181026193005-c67002cb31c3.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20181026193005-c67002cb31c3.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190227174305-5b3e6a55c961.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190227174305-5b3e6a55c961.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190301231843-5614ed5bae6f.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190301231843-5614ed5bae6f.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190313153728-d0100b6bd8b3.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190313153728-d0100b6bd8b3.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190409202823-959b441ac422.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190409202823-959b441ac422.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190909230951-414d861bb4ac.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190909230951-414d861bb4ac.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190930215403-16217165b5de.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190930215403-16217165b5de.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20191125180803-fdd1cda4f05f.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20191125180803-fdd1cda4f05f.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20200130185559-910be7a94367.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200130185559-910be7a94367.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20200302205851-738671d3881b.zip -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200302205851-738671d3881b.zip mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20200302205851-738671d3881b.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200302205851-738671d3881b.mod mirror://goproxy//golang.org/x/mobile/@v/v0.0.0-20190312151609-d3739f865fa6.mod -> golang.org%2Fx%2Fmobile%2F@v%2Fv0.0.0-20190312151609-d3739f865fa6.mod mirror://goproxy//golang.org/x/mobile/@v/v0.0.0-20190719004257-d2bd2a29d028.mod -> golang.org%2Fx%2Fmobile%2F@v%2Fv0.0.0-20190719004257-d2bd2a29d028.mod mirror://goproxy//golang.org/x/mod/@v/v0.0.0-20190513183733-4bf6d317e70e.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.0.0-20190513183733-4bf6d317e70e.mod mirror://goproxy//golang.org/x/mod/@v/v0.1.0.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.0.mod mirror://goproxy//golang.org/x/mod/@v/v0.1.1-0.20191105210325-c90efee705ee.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.1-0.20191105210325-c90efee705ee.mod mirror://goproxy//golang.org/x/mod/@v/v0.2.0.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.2.0.mod mirror://goproxy//golang.org/x/mod/@v/v0.3.0.zip -> golang.org%2Fx%2Fmod%2F@v%2Fv0.3.0.zip mirror://goproxy//golang.org/x/mod/@v/v0.3.0.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180724234803-3673e40ba225.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180724234803-3673e40ba225.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180826012351-8a410e7b638d.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180826012351-8a410e7b638d.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180906233101-161cd47e91fd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180906233101-161cd47e91fd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181011144130-49bb7cea24b1.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181011144130-49bb7cea24b1.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181029044818-c44066c5c816.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181029044818-c44066c5c816.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181106065722-10aee1819953.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181106065722-10aee1819953.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181114220301-adae6a3d119a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181114220301-adae6a3d119a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181201002055-351d144fa1fc.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181201002055-351d144fa1fc.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190108225652-1e06a53dbb7e.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190108225652-1e06a53dbb7e.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190213061140-3a22650c66bd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190213061140-3a22650c66bd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190227160552-c95aed5357e7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190227160552-c95aed5357e7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190311183353-d8887717615a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190311183353-d8887717615a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190313220215-9f648a60d977.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190313220215-9f648a60d977.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190501004415-9ce7a6920f09.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190501004415-9ce7a6920f09.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190503192946-f4e77d36d62c.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190503192946-f4e77d36d62c.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190522155817-f3200d17e092.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190522155817-f3200d17e092.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190603091049-60506f45cf65.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190603091049-60506f45cf65.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190611141213-3f473d35a33a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190611141213-3f473d35a33a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190613194153-d28f0bde5980.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190613194153-d28f0bde5980.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190724013045-ca1201d0de80.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190724013045-ca1201d0de80.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190923162816-aa69164e4478.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190923162816-aa69164e4478.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20191209160850-c0dbc17a3553.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20191209160850-c0dbc17a3553.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200202094626-16171245cfb2.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200202094626-16171245cfb2.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200222125558-5a598a2470a0.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200222125558-5a598a2470a0.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200226121028-0de0cce0169b.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200226121028-0de0cce0169b.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200520004742-59133d7f0dd7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200520004742-59133d7f0dd7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200625001655-4c5254603344.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200625001655-4c5254603344.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200707034311-ab3426394381.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20201021035429-f5854403a974.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201021035429-f5854403a974.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20201021035429-f5854403a974.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201021035429-f5854403a974.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20180821212333-d2e6202438be.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20180821212333-d2e6202438be.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20181017192945-9dcd33a902f4.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20181017192945-9dcd33a902f4.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20181203162652-d668ce993890.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20181203162652-d668ce993890.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20190226205417-e64efc72b421.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20190226205417-e64efc72b421.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20190604053449-0f29369cfe45.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20190604053449-0f29369cfe45.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20191202225959-858c2ad4c8b6.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20191202225959-858c2ad4c8b6.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20200107190931-bf48bf16ab8d.zip -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20200107190931-bf48bf16ab8d.zip mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20200107190931-bf48bf16ab8d.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20200107190931-bf48bf16ab8d.mod mirror://goproxy//golang.org/x/perf/@v/v0.0.0-20180704124530-6e6d33e29852.mod -> golang.org%2Fx%2Fperf%2F@v%2Fv0.0.0-20180704124530-6e6d33e29852.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20180314180146-1d60e4601c6f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20180314180146-1d60e4601c6f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181108010431-42b317875d0f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181108010431-42b317875d0f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181221193216-37e7f081c4d4.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181221193216-37e7f081c4d4.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190227155943-e225da77a7e6.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190227155943-e225da77a7e6.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190911185100-cd5d95a43a6e.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190911185100-cd5d95a43a6e.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20200317015054-43a5402ce75a.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20200317015054-43a5402ce75a.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20200625203802-6e8e738ad208.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20200625203802-6e8e738ad208.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20201020160332-67f06af15bc9.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20201020160332-67f06af15bc9.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20201020160332-67f06af15bc9.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20201020160332-67f06af15bc9.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20201207232520-09787c993a3a.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20201207232520-09787c993a3a.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20201207232520-09787c993a3a.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20201207232520-09787c993a3a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180830151530-49385e6e1522.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180830151530-49385e6e1522.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180905080454-ebe1bf3edb33.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180905080454-ebe1bf3edb33.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180909124046-d0be0721c37e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180909124046-d0be0721c37e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181029174526-d69651ed3497.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181029174526-d69651ed3497.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181116152217-5ac8a444bdc5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181116152217-5ac8a444bdc5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181205085412-a5c9d58dba9a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181205085412-a5c9d58dba9a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190219092855-153ac476189d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190219092855-153ac476189d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190222072716-a9d3bda3a223.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190222072716-a9d3bda3a223.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190228124157-a34e9553db1e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190228124157-a34e9553db1e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190302025703-b6889370fb10.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190302025703-b6889370fb10.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190312061237-fead79001313.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190312061237-fead79001313.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190316082340-a2f829d7f35f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190316082340-a2f829d7f35f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190405154228-4b34438f7a67.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190405154228-4b34438f7a67.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190422165155-953cdadca894.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190422165155-953cdadca894.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190502145724-3ef323f4f1fd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190502145724-3ef323f4f1fd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190507160741-ecd444e8653b.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190507160741-ecd444e8653b.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190524122548-abf6ff778158.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190524122548-abf6ff778158.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190524152521-dbbf3f1254d4.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190524152521-dbbf3f1254d4.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190526052359-791d8a0f4d09.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190526052359-791d8a0f4d09.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190606165138-5da285871e9c.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190606165138-5da285871e9c.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190610200419-93c9922d18ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190610200419-93c9922d18ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190624142023-c5567b49c5d0.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190624142023-c5567b49c5d0.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190626221950-04f50cda93cb.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626221950-04f50cda93cb.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190726091711-fc99dfbffb4e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190726091711-fc99dfbffb4e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190904154756-749cb33beabd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190904154756-749cb33beabd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190924154521-2837fb4f24fe.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190924154521-2837fb4f24fe.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191005200804-aed5e4c7ecf9.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191005200804-aed5e4c7ecf9.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191010194322-b09406accb47.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191010194322-b09406accb47.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191026070338-33540a1f6037.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191113165036-4c7a9d0fe056.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191113165036-4c7a9d0fe056.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191120155948-bd437916bb0e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191120155948-bd437916bb0e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191204072324-ce4227a45e2e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191204072324-ce4227a45e2e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191210023423-ac6580df4449.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191210023423-ac6580df4449.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191228213918-04cbcbbfeed8.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191228213918-04cbcbbfeed8.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200106162015-b016eb3dc98e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200106162015-b016eb3dc98e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200122134326-e047566fdf82.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200122134326-e047566fdf82.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200202164722-d101bd2416d5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200202164722-d101bd2416d5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200212091648-12a6c2dcc1e4.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200212091648-12a6c2dcc1e4.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200223170610-d5e6a3e2c0ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200223170610-d5e6a3e2c0ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200323222414-85ca7c5b95cd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200519105757-fe76b779f299.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200519105757-fe76b779f299.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200615200032-f1bc736245b1.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200615200032-f1bc736245b1.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200930185726-fdedc70b468f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200930185726-fdedc70b468f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200930185726-fdedc70b468f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200930185726-fdedc70b468f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210124154548-22da62e12c0c.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210124154548-22da62e12c0c.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210124154548-22da62e12c0c.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210124154548-22da62e12c0c.mod mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201117132131-f5c789dd3221.zip -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201117132131-f5c789dd3221.zip mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201117132131-f5c789dd3221.mod -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201117132131-f5c789dd3221.mod mirror://goproxy//golang.org/x/text/@v/v0.0.0-20170915032832-14c0d48ead0c.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.0.0-20170915032832-14c0d48ead0c.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/text/@v/v0.3.1-0.20180807135948-17ff2d5776d2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.1-0.20180807135948-17ff2d5776d2.mod mirror://goproxy//golang.org/x/text/@v/v0.3.2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.mod mirror://goproxy//golang.org/x/text/@v/v0.3.3.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.zip mirror://goproxy//golang.org/x/text/@v/v0.3.3.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20180412165947-fbb02b2291d2.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20180412165947-fbb02b2291d2.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20181108054448-85acf8d2951c.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20181108054448-85acf8d2951c.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20190308202827-9d24e82272b4.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20190308202827-9d24e82272b4.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180221164845-07fd8470d635.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180221164845-07fd8470d635.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180828015842-6cd1fcedba52.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180828015842-6cd1fcedba52.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181030000716-a0a13e073c7b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181030000716-a0a13e073c7b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181030221726-6c7e314b6563.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181030221726-6c7e314b6563.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181130052023-1c3d964395ce.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181130052023-1c3d964395ce.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190114222345-bf090417da8b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190114222345-bf090417da8b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190226205152-f727befe758c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190226205152-f727befe758c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190311212946-11955173bddd.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190311212946-11955173bddd.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190312151545-0bb0c0a6e846.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190312151545-0bb0c0a6e846.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190312170243-e65039ee4138.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190312170243-e65039ee4138.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190328211700-ab21143f2384.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190328211700-ab21143f2384.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190425150028-36563e24a262.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190425150028-36563e24a262.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190506145303-2d16b83fe98c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190506145303-2d16b83fe98c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190524140312-2c0ae7006135.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190524140312-2c0ae7006135.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190606124116-d0a3d012864b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190606124116-d0a3d012864b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190621195816-6e04913cbbac.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190621195816-6e04913cbbac.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190628153133-6cdbf07be9d0.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190628153133-6cdbf07be9d0.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190816200558-6889da9d5479.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190816200558-6889da9d5479.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190911174233-4f2ddba30aff.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190911174233-4f2ddba30aff.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191012152004-8de300cfc20a.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191012152004-8de300cfc20a.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191029041327-9cc4af7d6b2c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191029041327-9cc4af7d6b2c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191029190741-b9c20aec41a5.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191029190741-b9c20aec41a5.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191030062658-86caa796c7ab.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191030062658-86caa796c7ab.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191108193012-7d206e10da11.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191108193012-7d206e10da11.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191113191852-77e3bb0ad9e7.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191113191852-77e3bb0ad9e7.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191114200427-caa0b0f7d508.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191114200427-caa0b0f7d508.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191115202509-3a792d9c32b2.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191115202509-3a792d9c32b2.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191119224855-298f0cb1881e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191119224855-298f0cb1881e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191125144606-a911d9008d1f.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191125144606-a911d9008d1f.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216052735-49a3e744a425.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216052735-49a3e744a425.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216173652-a0e659d51361.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216173652-a0e659d51361.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191227053925-7b8e75db28f4.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191227053925-7b8e75db28f4.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200130002326-2f3ba24bd6e7.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200130002326-2f3ba24bd6e7.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200207183749-b753a1ba74fa.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200207183749-b753a1ba74fa.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200212150539-ea181f53ac56.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200212150539-ea181f53ac56.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200619180055-7c47624df98f.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200619180055-7c47624df98f.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200827010519-17fd2f27a9e3.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200827010519-17fd2f27a9e3.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20210106214847-113979e3529a.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20210106214847-113979e3529a.zip mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20210106214847-113979e3529a.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20210106214847-113979e3529a.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20190717185122-a985d3407aa7.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190717185122-a985d3407aa7.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191011141410-1b5146add898.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191011141410-1b5146add898.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20200804184101-5ec99f83aff1.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20200804184101-5ec99f83aff1.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20200804184101-5ec99f83aff1.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20200804184101-5ec99f83aff1.mod mirror://goproxy//google.golang.org/api/@v/v0.0.0-20180910000450-7ca32eb868bf.mod -> google.golang.org%2Fapi%2F@v%2Fv0.0.0-20180910000450-7ca32eb868bf.mod mirror://goproxy//google.golang.org/api/@v/v0.0.0-20181030000543-1d582fd0359e.mod -> google.golang.org%2Fapi%2F@v%2Fv0.0.0-20181030000543-1d582fd0359e.mod mirror://goproxy//google.golang.org/api/@v/v0.1.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.1.0.mod mirror://goproxy//google.golang.org/api/@v/v0.4.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.4.0.mod mirror://goproxy//google.golang.org/api/@v/v0.7.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.7.0.mod mirror://goproxy//google.golang.org/api/@v/v0.8.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.8.0.mod mirror://goproxy//google.golang.org/api/@v/v0.9.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.9.0.mod mirror://goproxy//google.golang.org/api/@v/v0.13.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.13.0.mod mirror://goproxy//google.golang.org/api/@v/v0.14.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.14.0.mod mirror://goproxy//google.golang.org/api/@v/v0.15.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.15.0.mod mirror://goproxy//google.golang.org/api/@v/v0.17.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.17.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.1.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.1.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.2.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.2.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.3.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.3.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.4.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.4.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.5.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.5.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.6.1.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.6.1.mod mirror://goproxy//google.golang.org/appengine/@v/v1.6.5.zip -> google.golang.org%2Fappengine%2F@v%2Fv1.6.5.zip mirror://goproxy//google.golang.org/appengine/@v/v1.6.5.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.6.5.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20180817151627-c66870c02cf8.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180817151627-c66870c02cf8.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20180831171423-11092d34479b.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180831171423-11092d34479b.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20181029155118-b69ba1387ce2.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20181029155118-b69ba1387ce2.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20181202183823-bd91e49a0898.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20181202183823-bd91e49a0898.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190306203927-b5d61aea6440.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190306203927-b5d61aea6440.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190307195333-5fe7a883aa19.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190307195333-5fe7a883aa19.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190418145605-e7d98fc518a7.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190418145605-e7d98fc518a7.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190425155659-357c62f0e4bb.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190425155659-357c62f0e4bb.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190502173448-54afdca5d873.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190502173448-54afdca5d873.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190801165951-fa694d86fc64.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190801165951-fa694d86fc64.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190819201941-24fa4b261c55.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190819201941-24fa4b261c55.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190911173649-1774047e7e51.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190911173649-1774047e7e51.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191108220845-16a3f7862a1a.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191108220845-16a3f7862a1a.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191115194625-c23dd37a84c9.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191115194625-c23dd37a84c9.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191216164720-4f79533eabd1.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191216164720-4f79533eabd1.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191230161307-f3c370f40bfb.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191230161307-f3c370f40bfb.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200212174721-66ed5ce911ce.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200212174721-66ed5ce911ce.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200526211855-cb27e3aa2013.zip -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200526211855-cb27e3aa2013.zip mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200526211855-cb27e3aa2013.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200526211855-cb27e3aa2013.mod mirror://goproxy//google.golang.org/grpc/@v/v1.14.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.14.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.16.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.16.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.17.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.17.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.19.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.19.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.20.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.20.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.21.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.21.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.23.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.23.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.25.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.25.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.26.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.26.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.27.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.27.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.27.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.27.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.28.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.28.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.31.1.zip -> google.golang.org%2Fgrpc%2F@v%2Fv1.31.1.zip mirror://goproxy//google.golang.org/grpc/@v/v1.31.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.31.1.mod mirror://goproxy//google.golang.org/protobuf/@v/v0.0.0-20200109180630-ec00e32a8dfd.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200109180630-ec00e32a8dfd.mod mirror://goproxy//google.golang.org/protobuf/@v/v0.0.0-20200221191635-4d8936d0db64.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200221191635-4d8936d0db64.mod mirror://goproxy//google.golang.org/protobuf/@v/v0.0.0-20200228230310-ab0ca4ff8a60.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200228230310-ab0ca4ff8a60.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.20.1-0.20200309200217-e05f789c0967.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.20.1-0.20200309200217-e05f789c0967.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.21.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.21.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.22.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.22.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.23.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.23.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.23.1-0.20200526195155-81db48ad09cc.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.23.1-0.20200526195155-81db48ad09cc.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.25.0.zip -> google.golang.org%2Fprotobuf%2F@v%2Fv1.25.0.zip mirror://goproxy//google.golang.org/protobuf/@v/v1.25.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.25.0.mod mirror://goproxy//gopkg.in/alecthomas/kingpin.v2/@v/v2.2.6.zip -> gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.zip mirror://goproxy//gopkg.in/alecthomas/kingpin.v2/@v/v2.2.6.mod -> gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20180628173108-788fd7840127.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20180628173108-788fd7840127.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.mod mirror://goproxy//gopkg.in/errgo.v2/@v/v2.1.0.mod -> gopkg.in%2Ferrgo.v2%2F@v%2Fv2.1.0.mod mirror://goproxy//gopkg.in/fsnotify.v1/@v/v1.4.7.mod -> gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.mod mirror://goproxy//gopkg.in/inf.v0/@v/v0.9.1.mod -> gopkg.in%2Finf.v0%2F@v%2Fv0.9.1.mod mirror://goproxy//gopkg.in/src-d/go-cli.v0/@v/v0.0.0-20181105080154-d492247bbc0d.mod -> gopkg.in%2Fsrc-d%2Fgo-cli.v0%2F@v%2Fv0.0.0-20181105080154-d492247bbc0d.mod mirror://goproxy//gopkg.in/src-d/go-log.v1/@v/v1.0.1.mod -> gopkg.in%2Fsrc-d%2Fgo-log.v1%2F@v%2Fv1.0.1.mod mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.zip -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.zip mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.mod -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.1.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.1.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.4.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.4.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.5.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.5.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.3.0.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.3.0.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.mod mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.zip -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.zip mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.mod -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.mod mirror://goproxy//grpc.go4.org/@v/v0.0.0-20170609214715-11d0a25b4919.mod -> grpc.go4.org%2F@v%2Fv0.0.0-20170609214715-11d0a25b4919.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20180728063816-88497007e858.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20180728063816-88497007e858.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190102054323-c2f93a96b099.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190102054323-c2f93a96b099.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190106161140-3f1c8253044a.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190106161140-3f1c8253044a.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190418001031-e561f6794a2a.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190418001031-e561f6794a2a.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190523083050-ea95bdfd59fc.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190523083050-ea95bdfd59fc.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.1-2019.2.3.zip -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.zip mirror://goproxy//honnef.co/go/tools/@v/v0.0.1-2019.2.3.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.mod mirror://goproxy//rsc.io/binaryregexp/@v/v0.2.0.mod -> rsc.io%2Fbinaryregexp%2F@v%2Fv0.2.0.mod mirror://goproxy//rsc.io/quote/v3/@v/v3.1.0.mod -> rsc.io%2Fquote%2Fv3%2F@v%2Fv3.1.0.mod mirror://goproxy//rsc.io/sampler/@v/v1.3.0.mod -> rsc.io%2Fsampler%2F@v%2Fv1.3.0.mod mirror://goproxy//sourcegraph.com/sourcegraph/go-diff/@v/v0.5.0.mod -> sourcegraph.com%2Fsourcegraph%2Fgo-diff%2F@v%2Fv0.5.0.mod mirror://goproxy//sourcegraph.com/sqs/pbtypes/@v/v0.0.0-20180604144634-d3ebe8f20ae4.mod -> sourcegraph.com%2Fsqs%2Fpbtypes%2F@v%2Fv0.0.0-20180604144634-d3ebe8f20ae4.mod -_eclasses_=bash-completion-r1 d3a60385655d9b402be765a6de333245 go-module 82631624a3653e595cf9c18164a8c500 multilib 8a0248f83ae77f945d376ff4a7953257 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=587e44fdf125dd39e8de47b4b0d15382 diff --git a/metadata/md5-cache/net-p2p/go-ipfs-0.9.1 b/metadata/md5-cache/net-p2p/go-ipfs-0.9.1 deleted file mode 100644 index d02194b62820..000000000000 --- a/metadata/md5-cache/net-p2p/go-ipfs-0.9.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=>=dev-lang/go-1.12 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install postinst test unpack -DESCRIPTION=Main implementation of IPFS -EAPI=7 -HOMEPAGE=https://ipfs.io/ -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 -RDEPEND=!net-p2p/go-ipfs-bin acct-group/ipfs acct-user/ipfs sys-fs/fuse:0 -RESTRICT=strip -SLOT=0 -SRC_URI=https://github.com/ipfs/go-ipfs/archive/v0.9.1.tar.gz -> go-ipfs-0.9.1.tar.gz mirror://goproxy//bazil.org/fuse/@v/v0.0.0-20200117225306-7b5117fecadc.zip -> bazil.org%2Ffuse%2F@v%2Fv0.0.0-20200117225306-7b5117fecadc.zip mirror://goproxy//bazil.org/fuse/@v/v0.0.0-20200117225306-7b5117fecadc.mod -> bazil.org%2Ffuse%2F@v%2Fv0.0.0-20200117225306-7b5117fecadc.mod mirror://goproxy//cloud.google.com/go/@v/v0.26.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.26.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.31.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.31.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.34.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.34.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.37.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.37.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.38.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.38.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.44.1.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.44.1.mod mirror://goproxy//cloud.google.com/go/@v/v0.44.2.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.44.2.mod mirror://goproxy//cloud.google.com/go/@v/v0.45.1.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.45.1.mod mirror://goproxy//cloud.google.com/go/@v/v0.46.3.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.46.3.mod mirror://goproxy//cloud.google.com/go/@v/v0.50.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.50.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.53.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.53.0.mod mirror://goproxy//cloud.google.com/go/bigquery/@v/v1.0.1.mod -> cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.0.1.mod mirror://goproxy//cloud.google.com/go/bigquery/@v/v1.3.0.mod -> cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.3.0.mod mirror://goproxy//cloud.google.com/go/datastore/@v/v1.0.0.mod -> cloud.google.com%2Fgo%2Fdatastore%2F@v%2Fv1.0.0.mod mirror://goproxy//cloud.google.com/go/pubsub/@v/v1.0.1.mod -> cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.0.1.mod mirror://goproxy//cloud.google.com/go/pubsub/@v/v1.1.0.mod -> cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.1.0.mod mirror://goproxy//cloud.google.com/go/storage/@v/v1.0.0.mod -> cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.0.0.mod mirror://goproxy//cloud.google.com/go/storage/@v/v1.5.0.mod -> cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.5.0.mod mirror://goproxy//contrib.go.opencensus.io/exporter/prometheus/@v/v0.3.0.zip -> contrib.go.opencensus.io%2Fexporter%2Fprometheus%2F@v%2Fv0.3.0.zip mirror://goproxy//contrib.go.opencensus.io/exporter/prometheus/@v/v0.3.0.mod -> contrib.go.opencensus.io%2Fexporter%2Fprometheus%2F@v%2Fv0.3.0.mod mirror://goproxy//dmitri.shuralyov.com/app/changes/@v/v0.0.0-20180602232624-0a106ad413e3.mod -> dmitri.shuralyov.com%2Fapp%2Fchanges%2F@v%2Fv0.0.0-20180602232624-0a106ad413e3.mod mirror://goproxy//dmitri.shuralyov.com/gpu/mtl/@v/v0.0.0-20190408044501-666a987793e9.mod -> dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod mirror://goproxy//dmitri.shuralyov.com/html/belt/@v/v0.0.0-20180602232347-f7d459c86be0.mod -> dmitri.shuralyov.com%2Fhtml%2Fbelt%2F@v%2Fv0.0.0-20180602232347-f7d459c86be0.mod mirror://goproxy//dmitri.shuralyov.com/service/change/@v/v0.0.0-20181023043359-a85b471d5412.mod -> dmitri.shuralyov.com%2Fservice%2Fchange%2F@v%2Fv0.0.0-20181023043359-a85b471d5412.mod mirror://goproxy//dmitri.shuralyov.com/state/@v/v0.0.0-20180228185332-28bcc343414c.mod -> dmitri.shuralyov.com%2Fstate%2F@v%2Fv0.0.0-20180228185332-28bcc343414c.mod mirror://goproxy//git.apache.org/thrift.git/@v/v0.0.0-20180902110319-2566ecd5d999.mod -> git.apache.org%2Fthrift.git%2F@v%2Fv0.0.0-20180902110319-2566ecd5d999.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20180913140656-343706a395b7.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20180913140656-343706a395b7.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190306092124-e2d15f34fcf9.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190306092124-e2d15f34fcf9.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190825152654-46b345b51c96.zip -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.zip mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190825152654-46b345b51c96.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.mod mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.zip -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.mod -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/!burnt!sushi/xgb/@v/v0.0.0-20160522181843-27f122750802.mod -> github.com%2F!burnt!sushi%2Fxgb%2F@v%2Fv0.0.0-20160522181843-27f122750802.mod mirror://goproxy//github.com/!knetic/govaluate/@v/v3.0.1-0.20171022003610-9aa49832a739+incompatible.mod -> github.com%2F!knetic%2Fgovaluate%2F@v%2Fv3.0.1-0.20171022003610-9aa49832a739+incompatible.mod mirror://goproxy//github.com/!kubuxu/go-os-helper/@v/v0.0.1.zip -> github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/!kubuxu/go-os-helper/@v/v0.0.1.mod -> github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.zip -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.zip mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.mod -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/!shopify/sarama/@v/v1.19.0.mod -> github.com%2F!shopify%2Fsarama%2F@v%2Fv1.19.0.mod mirror://goproxy//github.com/!shopify/toxiproxy/@v/v2.1.4+incompatible.mod -> github.com%2F!shopify%2Ftoxiproxy%2F@v%2Fv2.1.4+incompatible.mod mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.1.zip -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.1.mod -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/!vivid!cortex/gohistogram/@v/v1.0.0.mod -> github.com%2F!vivid!cortex%2Fgohistogram%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/aead/siphash/@v/v1.0.1.mod -> github.com%2Faead%2Fsiphash%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/afex/hystrix-go/@v/v0.0.0-20180502004556-fa1af6a1f4f5.mod -> github.com%2Fafex%2Fhystrix-go%2F@v%2Fv0.0.0-20180502004556-fa1af6a1f4f5.mod mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20160405071501-a0175ee3bccc.mod -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.mod mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20190718012654-fb15b899a751.zip -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20190718012654-fb15b899a751.zip mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20190718012654-fb15b899a751.mod -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20190718012654-fb15b899a751.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20151022065526-2efee857e7cf.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20190717042225-c3de453c63f4.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190717042225-c3de453c63f4.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20190924025748-f65c72e2690d.zip -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190924025748-f65c72e2690d.zip mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20190924025748-f65c72e2690d.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190924025748-f65c72e2690d.mod mirror://goproxy//github.com/alexbrainman/goissue34681/@v/v0.0.0-20191006012335-3fc7a47baff5.zip -> github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.zip mirror://goproxy//github.com/alexbrainman/goissue34681/@v/v0.0.0-20191006012335-3fc7a47baff5.mod -> github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.mod mirror://goproxy//github.com/anmitsu/go-shlex/@v/v0.0.0-20161002113705-648efa622239.mod -> github.com%2Fanmitsu%2Fgo-shlex%2F@v%2Fv0.0.0-20161002113705-648efa622239.mod mirror://goproxy//github.com/apache/thrift/@v/v0.12.0.mod -> github.com%2Fapache%2Fthrift%2F@v%2Fv0.12.0.mod mirror://goproxy//github.com/apache/thrift/@v/v0.13.0.mod -> github.com%2Fapache%2Fthrift%2F@v%2Fv0.13.0.mod mirror://goproxy//github.com/armon/circbuf/@v/v0.0.0-20150827004946-bbbad097214e.mod -> github.com%2Farmon%2Fcircbuf%2F@v%2Fv0.0.0-20150827004946-bbbad097214e.mod mirror://goproxy//github.com/armon/consul-api/@v/v0.0.0-20180202201655-eb2c6b5be1b6.mod -> github.com%2Farmon%2Fconsul-api%2F@v%2Fv0.0.0-20180202201655-eb2c6b5be1b6.mod mirror://goproxy//github.com/armon/go-metrics/@v/v0.0.0-20180917152333-f0300d1749da.mod -> github.com%2Farmon%2Fgo-metrics%2F@v%2Fv0.0.0-20180917152333-f0300d1749da.mod mirror://goproxy//github.com/armon/go-radix/@v/v0.0.0-20180808171621-7fddfc383310.mod -> github.com%2Farmon%2Fgo-radix%2F@v%2Fv0.0.0-20180808171621-7fddfc383310.mod mirror://goproxy//github.com/aryann/difflib/@v/v0.0.0-20170710044230-e206f873d14a.mod -> github.com%2Faryann%2Fdifflib%2F@v%2Fv0.0.0-20170710044230-e206f873d14a.mod mirror://goproxy//github.com/aws/aws-lambda-go/@v/v1.13.3.mod -> github.com%2Faws%2Faws-lambda-go%2F@v%2Fv1.13.3.mod mirror://goproxy//github.com/aws/aws-sdk-go/@v/v1.27.0.mod -> github.com%2Faws%2Faws-sdk-go%2F@v%2Fv1.27.0.mod mirror://goproxy//github.com/aws/aws-sdk-go-v2/@v/v0.18.0.mod -> github.com%2Faws%2Faws-sdk-go-v2%2F@v%2Fv0.18.0.mod mirror://goproxy//github.com/benbjohnson/clock/@v/v1.0.2.mod -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/benbjohnson/clock/@v/v1.0.3.zip -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.3.zip mirror://goproxy//github.com/benbjohnson/clock/@v/v1.0.3.mod -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/beorn7/perks/@v/v0.0.0-20180321164747-3a771d992973.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv0.0.0-20180321164747-3a771d992973.mod mirror://goproxy//github.com/beorn7/perks/@v/v1.0.0.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/beorn7/perks/@v/v1.0.1.zip -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/beorn7/perks/@v/v1.0.1.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/bgentry/speakeasy/@v/v0.1.0.mod -> github.com%2Fbgentry%2Fspeakeasy%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/blang/semver/v4/@v/v4.0.0.zip -> github.com%2Fblang%2Fsemver%2Fv4%2F@v%2Fv4.0.0.zip mirror://goproxy//github.com/blang/semver/v4/@v/v4.0.0.mod -> github.com%2Fblang%2Fsemver%2Fv4%2F@v%2Fv4.0.0.mod mirror://goproxy//github.com/bradfitz/go-smtpd/@v/v0.0.0-20170404230938-deb6d6237625.mod -> github.com%2Fbradfitz%2Fgo-smtpd%2F@v%2Fv0.0.0-20170404230938-deb6d6237625.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190213025234-306aecffea32.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190213025234-306aecffea32.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190523000118-16327141da8c.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190523000118-16327141da8c.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190605094302-a0d1e3e36d50.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190605094302-a0d1e3e36d50.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190824003749-130ea5bddde3.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190824003749-130ea5bddde3.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.20.1-beta.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.20.1-beta.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.21.0-beta.zip -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.21.0-beta.zip mirror://goproxy//github.com/btcsuite/btcd/@v/v0.21.0-beta.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.21.0-beta.mod mirror://goproxy//github.com/btcsuite/btclog/@v/v0.0.0-20170628155309-84c8d2346e9f.mod -> github.com%2Fbtcsuite%2Fbtclog%2F@v%2Fv0.0.0-20170628155309-84c8d2346e9f.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v0.0.0-20190207003914-4c204d697803.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190207003914-4c204d697803.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v0.0.0-20190425235716-9e5f4b9a998d.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190425235716-9e5f4b9a998d.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v1.0.2.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/btcsuite/go-socks/@v/v0.0.0-20170105172521-4720035b7bfd.mod -> github.com%2Fbtcsuite%2Fgo-socks%2F@v%2Fv0.0.0-20170105172521-4720035b7bfd.mod mirror://goproxy//github.com/btcsuite/goleveldb/@v/v0.0.0-20160330041536-7834afc9e8cd.mod -> github.com%2Fbtcsuite%2Fgoleveldb%2F@v%2Fv0.0.0-20160330041536-7834afc9e8cd.mod mirror://goproxy//github.com/btcsuite/goleveldb/@v/v1.0.0.mod -> github.com%2Fbtcsuite%2Fgoleveldb%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/btcsuite/snappy-go/@v/v0.0.0-20151229074030-0bdef8d06723.mod -> github.com%2Fbtcsuite%2Fsnappy-go%2F@v%2Fv0.0.0-20151229074030-0bdef8d06723.mod mirror://goproxy//github.com/btcsuite/snappy-go/@v/v1.0.0.mod -> github.com%2Fbtcsuite%2Fsnappy-go%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/btcsuite/websocket/@v/v0.0.0-20150119174127-31079b680792.mod -> github.com%2Fbtcsuite%2Fwebsocket%2F@v%2Fv0.0.0-20150119174127-31079b680792.mod mirror://goproxy//github.com/btcsuite/winsvc/@v/v1.0.0.mod -> github.com%2Fbtcsuite%2Fwinsvc%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/buger/jsonparser/@v/v0.0.0-20181115193947-bf1c66bbce23.mod -> github.com%2Fbuger%2Fjsonparser%2F@v%2Fv0.0.0-20181115193947-bf1c66bbce23.mod mirror://goproxy//github.com/casbin/casbin/v2/@v/v2.1.2.mod -> github.com%2Fcasbin%2Fcasbin%2Fv2%2F@v%2Fv2.1.2.mod mirror://goproxy//github.com/cenkalti/backoff/@v/v2.2.1+incompatible.zip -> github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.2.1+incompatible.zip mirror://goproxy//github.com/cenkalti/backoff/@v/v2.2.1+incompatible.mod -> github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.2.1+incompatible.mod mirror://goproxy//github.com/census-instrumentation/opencensus-proto/@v/v0.2.1.mod -> github.com%2Fcensus-instrumentation%2Fopencensus-proto%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.zip -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.mod -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/cespare/xxhash/v2/@v/v2.1.1.zip -> github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.zip mirror://goproxy//github.com/cespare/xxhash/v2/@v/v2.1.1.mod -> github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.mod mirror://goproxy//github.com/cheekybits/genny/@v/v1.0.0.zip -> github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/cheekybits/genny/@v/v1.0.0.mod -> github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/cheggaaa/pb/@v/v1.0.29.zip -> github.com%2Fcheggaaa%2Fpb%2F@v%2Fv1.0.29.zip mirror://goproxy//github.com/cheggaaa/pb/@v/v1.0.29.mod -> github.com%2Fcheggaaa%2Fpb%2F@v%2Fv1.0.29.mod mirror://goproxy//github.com/chzyer/logex/@v/v1.1.10.mod -> github.com%2Fchzyer%2Flogex%2F@v%2Fv1.1.10.mod mirror://goproxy//github.com/chzyer/readline/@v/v0.0.0-20180603132655-2972be24d48e.mod -> github.com%2Fchzyer%2Freadline%2F@v%2Fv0.0.0-20180603132655-2972be24d48e.mod mirror://goproxy//github.com/chzyer/test/@v/v0.0.0-20180213035817-a1ea475d72b1.mod -> github.com%2Fchzyer%2Ftest%2F@v%2Fv0.0.0-20180213035817-a1ea475d72b1.mod mirror://goproxy//github.com/clbanning/x2j/@v/v0.0.0-20191024224557-825249438eec.mod -> github.com%2Fclbanning%2Fx2j%2F@v%2Fv0.0.0-20191024224557-825249438eec.mod mirror://goproxy//github.com/client9/misspell/@v/v0.3.4.mod -> github.com%2Fclient9%2Fmisspell%2F@v%2Fv0.3.4.mod mirror://goproxy//github.com/cncf/udpa/go/@v/v0.0.0-20191209042840-269d4d468f6f.mod -> github.com%2Fcncf%2Fudpa%2Fgo%2F@v%2Fv0.0.0-20191209042840-269d4d468f6f.mod mirror://goproxy//github.com/cockroachdb/datadriven/@v/v0.0.0-20190809214429-80d97fb3cbaa.mod -> github.com%2Fcockroachdb%2Fdatadriven%2F@v%2Fv0.0.0-20190809214429-80d97fb3cbaa.mod mirror://goproxy//github.com/codahale/hdrhistogram/@v/v0.0.0-20161010025455-3a0bb77429bd.mod -> github.com%2Fcodahale%2Fhdrhistogram%2F@v%2Fv0.0.0-20161010025455-3a0bb77429bd.mod mirror://goproxy//github.com/coreos/etcd/@v/v3.3.10+incompatible.mod -> github.com%2Fcoreos%2Fetcd%2F@v%2Fv3.3.10+incompatible.mod mirror://goproxy//github.com/coreos/go-etcd/@v/v2.0.0+incompatible.mod -> github.com%2Fcoreos%2Fgo-etcd%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.1-0.20180108230905-e214231b295a.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.1-0.20180108230905-e214231b295a.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.3.0.zip -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/coreos/go-semver/@v/v0.3.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/coreos/go-systemd/@v/v0.0.0-20180511133405-39ca1b05acc7.mod -> github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20180511133405-39ca1b05acc7.mod mirror://goproxy//github.com/coreos/go-systemd/@v/v0.0.0-20181012123002-c6f51f82210d.zip -> github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.zip mirror://goproxy//github.com/coreos/go-systemd/@v/v0.0.0-20181012123002-c6f51f82210d.mod -> github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.mod mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.0.0.mod -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.0.0.mod mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.3.1.zip -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.3.1.zip mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.3.1.mod -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.3.1.mod mirror://goproxy//github.com/coreos/pkg/@v/v0.0.0-20160727233714-3ac0863d7acf.mod -> github.com%2Fcoreos%2Fpkg%2F@v%2Fv0.0.0-20160727233714-3ac0863d7acf.mod mirror://goproxy//github.com/cpuguy83/go-md2man/@v/v1.0.10.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2F@v%2Fv1.0.10.mod mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0-20190314233015-f79a8a8ca69d.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0-20190314233015-f79a8a8ca69d.mod mirror://goproxy//github.com/crackcomm/go-gitignore/@v/v0.0.0-20170627025303-887ab5e44cc3.zip -> github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.zip mirror://goproxy//github.com/crackcomm/go-gitignore/@v/v0.0.0-20170627025303-887ab5e44cc3.mod -> github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.mod mirror://goproxy//github.com/creack/pty/@v/v1.1.7.mod -> github.com%2Fcreack%2Fpty%2F@v%2Fv1.1.7.mod mirror://goproxy//github.com/cskr/pubsub/@v/v1.0.2.zip -> github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/cskr/pubsub/@v/v1.0.2.mod -> github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v0.0.0-20171005155431-ecdeabc65495.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv0.0.0-20171005155431-ecdeabc65495.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20170701192655-dcfb0a7ac018.mod -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.mod mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20200604182044-b73af7476f6c.zip -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20200604182044-b73af7476f6c.zip mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20200604182044-b73af7476f6c.mod -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20200604182044-b73af7476f6c.mod mirror://goproxy//github.com/decred/dcrd/lru/@v/v1.0.0.mod -> github.com%2Fdecred%2Fdcrd%2Flru%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.5.5-0.20190226225317-8115aed38f8f.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.5.5-0.20190226225317-8115aed38f8f.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0-rc1.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0-rc1.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.1.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.2.zip -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.2.zip mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.2.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.2.mod mirror://goproxy//github.com/dgraph-io/ristretto/@v/v0.0.2.zip -> github.com%2Fdgraph-io%2Fristretto%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/dgraph-io/ristretto/@v/v0.0.2.mod -> github.com%2Fdgraph-io%2Fristretto%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/dgrijalva/jwt-go/@v/v3.2.0+incompatible.mod -> github.com%2Fdgrijalva%2Fjwt-go%2F@v%2Fv3.2.0+incompatible.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190104051053-3adb47b1fb0f.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190104051053-3adb47b1fb0f.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.zip -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.zip mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.mod mirror://goproxy//github.com/dustin/go-humanize/@v/v0.0.0-20171111073723-bb3d318650d4.mod -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv0.0.0-20171111073723-bb3d318650d4.mod mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.zip -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.mod -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/eapache/go-resiliency/@v/v1.1.0.mod -> github.com%2Feapache%2Fgo-resiliency%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/eapache/go-xerial-snappy/@v/v0.0.0-20180814174437-776d5712da21.mod -> github.com%2Feapache%2Fgo-xerial-snappy%2F@v%2Fv0.0.0-20180814174437-776d5712da21.mod mirror://goproxy//github.com/eapache/queue/@v/v1.1.0.mod -> github.com%2Feapache%2Fqueue%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/edsrzf/mmap-go/@v/v1.0.0.mod -> github.com%2Fedsrzf%2Fmmap-go%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/elgris/jsondiff/@v/v0.0.0-20160530203242-765b5c24c302.zip -> github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.zip mirror://goproxy//github.com/elgris/jsondiff/@v/v0.0.0-20160530203242-765b5c24c302.mod -> github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.6.9.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.6.9.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.9.0.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.9.1-0.20191026205805-5f8ba28d4473.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.9.1-0.20191026205805-5f8ba28d4473.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.9.4.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.9.4.mod mirror://goproxy//github.com/envoyproxy/protoc-gen-validate/@v/v0.1.0.mod -> github.com%2Fenvoyproxy%2Fprotoc-gen-validate%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/facebookgo/atomicfile/@v/v0.0.0-20151019160806-2de1f203e7d5.zip -> github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.zip mirror://goproxy//github.com/facebookgo/atomicfile/@v/v0.0.0-20151019160806-2de1f203e7d5.mod -> github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.mod mirror://goproxy//github.com/fatih/color/@v/v1.7.0.mod -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/fatih/color/@v/v1.9.0.zip -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.zip mirror://goproxy//github.com/fatih/color/@v/v1.9.0.mod -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/flynn/go-shlex/@v/v0.0.0-20150515145356-3f9db97f8568.mod -> github.com%2Fflynn%2Fgo-shlex%2F@v%2Fv0.0.0-20150515145356-3f9db97f8568.mod mirror://goproxy//github.com/flynn/noise/@v/v0.0.0-20180327030543-2492fe189ae6.mod -> github.com%2Fflynn%2Fnoise%2F@v%2Fv0.0.0-20180327030543-2492fe189ae6.mod mirror://goproxy//github.com/flynn/noise/@v/v1.0.0.zip -> github.com%2Fflynn%2Fnoise%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/flynn/noise/@v/v1.0.0.mod -> github.com%2Fflynn%2Fnoise%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/francoispqt/gojay/@v/v1.2.13.zip -> github.com%2Ffrancoispqt%2Fgojay%2F@v%2Fv1.2.13.zip mirror://goproxy//github.com/francoispqt/gojay/@v/v1.2.13.mod -> github.com%2Ffrancoispqt%2Fgojay%2F@v%2Fv1.2.13.mod mirror://goproxy//github.com/franela/goblin/@v/v0.0.0-20200105215937-c9ffbefa60db.mod -> github.com%2Ffranela%2Fgoblin%2F@v%2Fv0.0.0-20200105215937-c9ffbefa60db.mod mirror://goproxy//github.com/franela/goreq/@v/v0.0.0-20171204163338-bcd34c9993f8.mod -> github.com%2Ffranela%2Fgoreq%2F@v%2Fv0.0.0-20171204163338-bcd34c9993f8.mod mirror://goproxy//github.com/frankban/quicktest/@v/v1.11.3.zip -> github.com%2Ffrankban%2Fquicktest%2F@v%2Fv1.11.3.zip mirror://goproxy//github.com/frankban/quicktest/@v/v1.11.3.mod -> github.com%2Ffrankban%2Fquicktest%2F@v%2Fv1.11.3.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.7.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.9.zip -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.9.zip mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.9.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.9.mod mirror://goproxy//github.com/gabriel-vasile/mimetype/@v/v1.1.2.zip -> github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.1.2.zip mirror://goproxy//github.com/gabriel-vasile/mimetype/@v/v1.1.2.mod -> github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/ghodss/yaml/@v/v1.0.0.mod -> github.com%2Fghodss%2Fyaml%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/gliderlabs/ssh/@v/v0.1.1.mod -> github.com%2Fgliderlabs%2Fssh%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/go-bindata/go-bindata/v3/@v/v3.1.3.zip -> github.com%2Fgo-bindata%2Fgo-bindata%2Fv3%2F@v%2Fv3.1.3.zip mirror://goproxy//github.com/go-bindata/go-bindata/v3/@v/v3.1.3.mod -> github.com%2Fgo-bindata%2Fgo-bindata%2Fv3%2F@v%2Fv3.1.3.mod mirror://goproxy//github.com/go-check/check/@v/v0.0.0-20180628173108-788fd7840127.mod -> github.com%2Fgo-check%2Fcheck%2F@v%2Fv0.0.0-20180628173108-788fd7840127.mod mirror://goproxy//github.com/go-errors/errors/@v/v1.0.1.mod -> github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/go-gl/glfw/@v/v0.0.0-20190409004039-e6da0acd62b1.mod -> github.com%2Fgo-gl%2Fglfw%2F@v%2Fv0.0.0-20190409004039-e6da0acd62b1.mod mirror://goproxy//github.com/go-gl/glfw/v3.3/glfw/@v/v0.0.0-20191125211704-12ad95a8df72.mod -> github.com%2Fgo-gl%2Fglfw%2Fv3.3%2Fglfw%2F@v%2Fv0.0.0-20191125211704-12ad95a8df72.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.8.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.9.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.10.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.3.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.4.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.5.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/go-sql-driver/mysql/@v/v1.4.0.mod -> github.com%2Fgo-sql-driver%2Fmysql%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/go-stack/stack/@v/v1.8.0.mod -> github.com%2Fgo-stack%2Fstack%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/go-task/slim-sprig/@v/v0.0.0-20210107165309-348f09dbbbc0.zip -> github.com%2Fgo-task%2Fslim-sprig%2F@v%2Fv0.0.0-20210107165309-348f09dbbbc0.zip mirror://goproxy//github.com/go-task/slim-sprig/@v/v0.0.0-20210107165309-348f09dbbbc0.mod -> github.com%2Fgo-task%2Fslim-sprig%2F@v%2Fv0.0.0-20210107165309-348f09dbbbc0.mod mirror://goproxy//github.com/godbus/dbus/v5/@v/v5.0.3.mod -> github.com%2Fgodbus%2Fdbus%2Fv5%2F@v%2Fv5.0.3.mod mirror://goproxy//github.com/godbus/dbus/v5/@v/v5.0.4.mod -> github.com%2Fgodbus%2Fdbus%2Fv5%2F@v%2Fv5.0.4.mod mirror://goproxy//github.com/gogo/googleapis/@v/v1.1.0.mod -> github.com%2Fgogo%2Fgoogleapis%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.1.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.2.0.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.2.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.0.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.2.zip -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.2.zip mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.2.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/golang/glog/@v/v0.0.0-20160126235308-23def4e6c14b.mod -> github.com%2Fgolang%2Fglog%2F@v%2Fv0.0.0-20160126235308-23def4e6c14b.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20160516000752-02826c3e7903.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20160516000752-02826c3e7903.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20190702054246-869f871628b6.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20190702054246-869f871628b6.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20191027212112-611e8accdfc9.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20191027212112-611e8accdfc9.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20191227052852-215e87163ea7.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20191227052852-215e87163ea7.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20200121045136-8c9f03a8e57e.zip -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20200121045136-8c9f03a8e57e.zip mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20200121045136-8c9f03a8e57e.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20200121045136-8c9f03a8e57e.mod mirror://goproxy//github.com/golang/lint/@v/v0.0.0-20180702182130-06c8688daad7.mod -> github.com%2Fgolang%2Flint%2F@v%2Fv0.0.0-20180702182130-06c8688daad7.mod mirror://goproxy//github.com/golang/mock/@v/v1.1.1.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/golang/mock/@v/v1.2.0.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/mock/@v/v1.3.1.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/golang/mock/@v/v1.4.0.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/golang/mock/@v/v1.4.4.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.mod mirror://goproxy//github.com/golang/mock/@v/v1.6.0.zip -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.6.0.zip mirror://goproxy//github.com/golang/mock/@v/v1.6.0.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.2.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.3.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.3.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.1.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.1.0.20200221234624-67d41d38c208.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.1.0.20200221234624-67d41d38c208.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.2.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.4.0.20200313231945-b860323f09d0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.4.0.20200313231945-b860323f09d0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.3.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.3.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.5.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.5.2.zip -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.5.2.zip mirror://goproxy//github.com/golang/protobuf/@v/v1.5.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.5.2.mod mirror://goproxy//github.com/golang/snappy/@v/v0.0.0-20180518054509-2e65f85255db.zip -> github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.zip mirror://goproxy//github.com/golang/snappy/@v/v0.0.0-20180518054509-2e65f85255db.mod -> github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.mod mirror://goproxy//github.com/google/btree/@v/v0.0.0-20180813153112-4030bb1f1f0c.mod -> github.com%2Fgoogle%2Fbtree%2F@v%2Fv0.0.0-20180813153112-4030bb1f1f0c.mod mirror://goproxy//github.com/google/btree/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fbtree%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.2.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.3.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.3.1.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.4.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.5.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.5.3.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.3.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.5.4.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.4.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.5.5.zip -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.5.zip mirror://goproxy//github.com/google/go-cmp/@v/v0.5.5.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.5.mod mirror://goproxy//github.com/google/go-github/@v/v17.0.0+incompatible.mod -> github.com%2Fgoogle%2Fgo-github%2F@v%2Fv17.0.0+incompatible.mod mirror://goproxy//github.com/google/go-querystring/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgo-querystring%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/gofuzz/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgofuzz%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/gopacket/@v/v1.1.17.mod -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.17.mod mirror://goproxy//github.com/google/gopacket/@v/v1.1.18.mod -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.18.mod mirror://goproxy//github.com/google/gopacket/@v/v1.1.19.zip -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.19.zip mirror://goproxy//github.com/google/gopacket/@v/v1.1.19.mod -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.19.mod mirror://goproxy//github.com/google/martian/@v/v2.1.0+incompatible.mod -> github.com%2Fgoogle%2Fmartian%2F@v%2Fv2.1.0+incompatible.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20181206194817-3ea8567a2e57.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20181206194817-3ea8567a2e57.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20190515194954-54271f7e092f.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20190515194954-54271f7e092f.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20200212024743-f11f1df84d12.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20200212024743-f11f1df84d12.mod mirror://goproxy//github.com/google/renameio/@v/v0.1.0.mod -> github.com%2Fgoogle%2Frenameio%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/google/uuid/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/uuid/@v/v1.1.1.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/google/uuid/@v/v1.1.2.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/google/uuid/@v/v1.2.0.zip -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/google/uuid/@v/v1.2.0.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/googleapis/gax-go/@v/v2.0.0+incompatible.mod -> github.com%2Fgoogleapis%2Fgax-go%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/googleapis/gax-go/v2/@v/v2.0.3.mod -> github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.3.mod mirror://goproxy//github.com/googleapis/gax-go/v2/@v/v2.0.4.mod -> github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.4.mod mirror://goproxy//github.com/googleapis/gax-go/v2/@v/v2.0.5.mod -> github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.5.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20181017120253-0766667cb4d1.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20181017120253-0766667cb4d1.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190430165422-3e4dfb77656c.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190812055157-5d271430af9f.zip -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190812055157-5d271430af9f.zip mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190812055157-5d271430af9f.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190812055157-5d271430af9f.mod mirror://goproxy//github.com/gorilla/context/@v/v1.1.1.mod -> github.com%2Fgorilla%2Fcontext%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/gorilla/mux/@v/v1.6.2.mod -> github.com%2Fgorilla%2Fmux%2F@v%2Fv1.6.2.mod mirror://goproxy//github.com/gorilla/mux/@v/v1.7.3.mod -> github.com%2Fgorilla%2Fmux%2F@v%2Fv1.7.3.mod mirror://goproxy//github.com/gorilla/websocket/@v/v0.0.0-20170926233335-4201258b820c.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv0.0.0-20170926233335-4201258b820c.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.0.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.1.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.2.zip -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.2.zip mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.2.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/gregjones/httpcache/@v/v0.0.0-20180305231024-9cad4c3443a7.mod -> github.com%2Fgregjones%2Fhttpcache%2F@v%2Fv0.0.0-20180305231024-9cad4c3443a7.mod mirror://goproxy//github.com/grpc-ecosystem/go-grpc-middleware/@v/v1.0.1-0.20190118093823-f849b5445de4.mod -> github.com%2Fgrpc-ecosystem%2Fgo-grpc-middleware%2F@v%2Fv1.0.1-0.20190118093823-f849b5445de4.mod mirror://goproxy//github.com/grpc-ecosystem/go-grpc-prometheus/@v/v1.2.0.mod -> github.com%2Fgrpc-ecosystem%2Fgo-grpc-prometheus%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/grpc-ecosystem/grpc-gateway/@v/v1.5.0.mod -> github.com%2Fgrpc-ecosystem%2Fgrpc-gateway%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/grpc-ecosystem/grpc-gateway/@v/v1.9.5.mod -> github.com%2Fgrpc-ecosystem%2Fgrpc-gateway%2F@v%2Fv1.9.5.mod mirror://goproxy//github.com/gxed/hashland/keccakpg/@v/v0.0.1.mod -> github.com%2Fgxed%2Fhashland%2Fkeccakpg%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/gxed/hashland/murmur3/@v/v0.0.1.mod -> github.com%2Fgxed%2Fhashland%2Fmurmur3%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/hannahhoward/cbor-gen-for/@v/v0.0.0-20200817222906-ea96cece81f1.mod -> github.com%2Fhannahhoward%2Fcbor-gen-for%2F@v%2Fv0.0.0-20200817222906-ea96cece81f1.mod mirror://goproxy//github.com/hannahhoward/go-pubsub/@v/v0.0.0-20200423002714-8d62886cc36e.zip -> github.com%2Fhannahhoward%2Fgo-pubsub%2F@v%2Fv0.0.0-20200423002714-8d62886cc36e.zip mirror://goproxy//github.com/hannahhoward/go-pubsub/@v/v0.0.0-20200423002714-8d62886cc36e.mod -> github.com%2Fhannahhoward%2Fgo-pubsub%2F@v%2Fv0.0.0-20200423002714-8d62886cc36e.mod mirror://goproxy//github.com/hashicorp/consul/api/@v/v1.3.0.mod -> github.com%2Fhashicorp%2Fconsul%2Fapi%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/hashicorp/consul/sdk/@v/v0.3.0.mod -> github.com%2Fhashicorp%2Fconsul%2Fsdk%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.zip -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-cleanhttp/@v/v0.5.1.mod -> github.com%2Fhashicorp%2Fgo-cleanhttp%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/hashicorp/go-immutable-radix/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fgo-immutable-radix%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-msgpack/@v/v0.5.3.mod -> github.com%2Fhashicorp%2Fgo-msgpack%2F@v%2Fv0.5.3.mod mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.0.mod -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.1.zip -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.1.mod -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/hashicorp/go-rootcerts/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fgo-rootcerts%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-sockaddr/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fgo-sockaddr%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-syslog/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fgo-syslog%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-uuid/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fgo-uuid%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-uuid/@v/v1.0.1.mod -> github.com%2Fhashicorp%2Fgo-uuid%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/hashicorp/go-version/@v/v1.2.0.mod -> github.com%2Fhashicorp%2Fgo-version%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/hashicorp/go.net/@v/v0.0.1.mod -> github.com%2Fhashicorp%2Fgo.net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.0.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.1.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.4.zip -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.4.zip mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.4.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.4.mod mirror://goproxy//github.com/hashicorp/hcl/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fhcl%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/logutils/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Flogutils%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/mdns/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fmdns%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/memberlist/@v/v0.1.3.mod -> github.com%2Fhashicorp%2Fmemberlist%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/hashicorp/serf/@v/v0.8.2.mod -> github.com%2Fhashicorp%2Fserf%2F@v%2Fv0.8.2.mod mirror://goproxy//github.com/hpcloud/tail/@v/v1.0.0.mod -> github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hudl/fargo/@v/v1.3.0.mod -> github.com%2Fhudl%2Ffargo%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/huin/goupnp/@v/v1.0.0.zip -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/huin/goupnp/@v/v1.0.0.mod -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/huin/goutil/@v/v0.0.0-20170803182201-1ca381bf3150.mod -> github.com%2Fhuin%2Fgoutil%2F@v%2Fv0.0.0-20170803182201-1ca381bf3150.mod mirror://goproxy//github.com/ianlancetaylor/demangle/@v/v0.0.0-20181102032728-5e5cf60278f6.mod -> github.com%2Fianlancetaylor%2Fdemangle%2F@v%2Fv0.0.0-20181102032728-5e5cf60278f6.mod mirror://goproxy//github.com/inconshreveable/mousetrap/@v/v1.0.0.mod -> github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/influxdata/influxdb1-client/@v/v0.0.0-20191209144304-8bf82d3c094d.mod -> github.com%2Finfluxdata%2Finfluxdb1-client%2F@v%2Fv0.0.0-20191209144304-8bf82d3c094d.mod mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.1.mod -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.4.zip -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.4.mod -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.0.9.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.2.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.3.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.8.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.8.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.3.4.zip -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.3.4.zip mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.3.4.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.3.4.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.2.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.3.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.4.zip -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.4.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.6.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.7.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-cidutil/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-cidutil/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.3.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.3.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.4.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.4.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.5.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.5.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.5.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.5.mod mirror://goproxy//github.com/ipfs/go-detect-race/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-detect-race/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.1.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.3.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.6.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.6.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.6.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.6.mod mirror://goproxy//github.com/ipfs/go-ds-flatfs/@v/v0.4.5.zip -> github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.5.zip mirror://goproxy//github.com/ipfs/go-ds-flatfs/@v/v0.4.5.mod -> github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.5.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.1.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.2.zip -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.2.zip mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.2.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.2.mod mirror://goproxy//github.com/ipfs/go-ds-measure/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ds-measure/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-filestore/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-filestore/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-fs-lock/@v/v0.0.6.zip -> github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/ipfs/go-fs-lock/@v/v0.0.6.mod -> github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/ipfs/go-graphsync/@v/v0.8.0.zip -> github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.8.0.zip mirror://goproxy//github.com/ipfs/go-graphsync/@v/v0.8.0.mod -> github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.4.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.6.zip -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.6.zip mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.6.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.6.mod mirror://goproxy//github.com/ipfs/go-ipfs-blocksutil/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-blocksutil/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ipfs-cmds/@v/v0.6.0.zip -> github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.6.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-cmds/@v/v0.6.0.mod -> github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-config/@v/v0.14.0.zip -> github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.14.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-config/@v/v0.14.0.mod -> github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.14.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.0-20181109222059-70721b86a9a8.mod -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.0-20181109222059-70721b86a9a8.mod mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.1.1.zip -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-interface/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-exchange-interface/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-offline/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-exchange-offline/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.8.zip -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.8.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/ipfs/go-ipfs-keystore/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipfs-keystore%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipfs-keystore/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-keystore%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipfs-pinner/@v/v0.1.1.zip -> github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-pinner/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-posinfo/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-posinfo/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipfs-provider/@v/v0.5.1.zip -> github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.5.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-provider/@v/v0.5.1.mod -> github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.2.0.zip -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.2.0.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/ipfs/go-ipld-git/@v/v0.0.4.zip -> github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/go-ipld-git/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-ipns/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipns/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ipns/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-log/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.1.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.2.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.3.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.4.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.4.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.5.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.5.zip mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.5.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.5.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.1.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.2.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.2.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.3.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.3.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.5.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.5.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.1.1.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.1.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.1.3.zip -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.3.zip mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.1.3.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.3.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.0.6.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.2.3.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.0.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.1.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.2.zip -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.2.zip mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.2.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.2.mod mirror://goproxy//github.com/ipfs/go-metrics-interface/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-metrics-interface/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-metrics-prometheus/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-metrics-prometheus/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-mfs/@v/v0.1.2.zip -> github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/ipfs/go-mfs/@v/v0.1.2.mod -> github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/ipfs/go-namesys/@v/v0.3.0.zip -> github.com%2Fipfs%2Fgo-namesys%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/ipfs/go-namesys/@v/v0.3.0.mod -> github.com%2Fipfs%2Fgo-namesys%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.9.zip -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.9.zip mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.9.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.2.0.zip -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.2.0.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/ipfs/go-pinning-service-http-client/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-pinning-service-http-client%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-pinning-service-http-client/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-pinning-service-http-client%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.2.4.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.2.5.zip -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.5.zip mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.2.5.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.5.mod mirror://goproxy//github.com/ipfs/go-verifcid/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-verifcid/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.4.0.zip -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.4.0.mod -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/ipfs/tar-utils/@v/v0.0.1.zip -> github.com%2Fipfs%2Ftar-utils%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/tar-utils/@v/v0.0.1.mod -> github.com%2Fipfs%2Ftar-utils%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipld/go-car/@v/v0.3.1.zip -> github.com%2Fipld%2Fgo-car%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/ipld/go-car/@v/v0.3.1.mod -> github.com%2Fipld%2Fgo-car%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/ipld/go-codec-dagpb/@v/v1.2.0.zip -> github.com%2Fipld%2Fgo-codec-dagpb%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/ipld/go-codec-dagpb/@v/v1.2.0.mod -> github.com%2Fipld%2Fgo-codec-dagpb%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.9.0.mod -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.9.1-0.20210324083106-dc342a9917db.zip -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.9.1-0.20210324083106-dc342a9917db.zip mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.9.1-0.20210324083106-dc342a9917db.mod -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.9.1-0.20210324083106-dc342a9917db.mod mirror://goproxy//github.com/jackpal/gateway/@v/v1.0.5.mod -> github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.5.mod mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.1.mod -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.2.zip -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.2.mod -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.0.0-20150120210510-1bb1476777ec.mod -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.0.0-20150120210510-1bb1476777ec.mod mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.1.0.zip -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.1.0.mod -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jbenet/go-random/@v/v0.0.0-20190219211222-123a90aedc0c.zip -> github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.zip mirror://goproxy//github.com/jbenet/go-random/@v/v0.0.0-20190219211222-123a90aedc0c.mod -> github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.mod mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.0.0-20150120210811-aac704a3f4f2.mod -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.0.0-20150120210811-aac704a3f4f2.mod mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.1.0.zip -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.1.0.mod -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.0.0-20160826012719-b497e2f366b8.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.0.0-20160826012719-b497e2f366b8.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.3.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.4.zip -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.4.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/jellevandenhooff/dkim/@v/v0.0.0-20150330215556-f50fe3d243e1.mod -> github.com%2Fjellevandenhooff%2Fdkim%2F@v%2Fv0.0.0-20150330215556-f50fe3d243e1.mod mirror://goproxy//github.com/jessevdk/go-flags/@v/v0.0.0-20141203071132-1679536dcc89.mod -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv0.0.0-20141203071132-1679536dcc89.mod mirror://goproxy//github.com/jessevdk/go-flags/@v/v1.4.0.mod -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/jmespath/go-jmespath/@v/v0.0.0-20180206201540-c2b33e8439af.mod -> github.com%2Fjmespath%2Fgo-jmespath%2F@v%2Fv0.0.0-20180206201540-c2b33e8439af.mod mirror://goproxy//github.com/jonboulle/clockwork/@v/v0.1.0.mod -> github.com%2Fjonboulle%2Fclockwork%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jpillora/backoff/@v/v1.0.0.mod -> github.com%2Fjpillora%2Fbackoff%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/jrick/logrotate/@v/v1.0.0.mod -> github.com%2Fjrick%2Flogrotate%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.6.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.6.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.7.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.7.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.8.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.8.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.9.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.9.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.10.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.10.mod mirror://goproxy//github.com/jstemmer/go-junit-report/@v/v0.0.0-20190106144839-af01ea7f8024.mod -> github.com%2Fjstemmer%2Fgo-junit-report%2F@v%2Fv0.0.0-20190106144839-af01ea7f8024.mod mirror://goproxy//github.com/jstemmer/go-junit-report/@v/v0.9.1.mod -> github.com%2Fjstemmer%2Fgo-junit-report%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/jtolds/gls/@v/v4.2.1+incompatible.mod -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.2.1+incompatible.mod mirror://goproxy//github.com/jtolds/gls/@v/v4.20.0+incompatible.zip -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.zip mirror://goproxy//github.com/jtolds/gls/@v/v4.20.0+incompatible.mod -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.mod mirror://goproxy//github.com/julienschmidt/httprouter/@v/v1.2.0.mod -> github.com%2Fjulienschmidt%2Fhttprouter%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/julienschmidt/httprouter/@v/v1.3.0.mod -> github.com%2Fjulienschmidt%2Fhttprouter%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/kami-zh/go-capturer/@v/v0.0.0-20171211120116-e492ea43421d.mod -> github.com%2Fkami-zh%2Fgo-capturer%2F@v%2Fv0.0.0-20171211120116-e492ea43421d.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.1.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.2.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.5.0.zip -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.5.0.zip mirror://goproxy//github.com/kisielk/errcheck/@v/v1.5.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/kisielk/gotool/@v/v1.0.0.mod -> github.com%2Fkisielk%2Fgotool%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/kkdai/bstream/@v/v0.0.0-20161212061736-f391b8402d23.mod -> github.com%2Fkkdai%2Fbstream%2F@v%2Fv0.0.0-20161212061736-f391b8402d23.mod mirror://goproxy//github.com/klauspost/compress/@v/v1.11.7.zip -> github.com%2Fklauspost%2Fcompress%2F@v%2Fv1.11.7.zip mirror://goproxy//github.com/klauspost/compress/@v/v1.11.7.mod -> github.com%2Fklauspost%2Fcompress%2F@v%2Fv1.11.7.mod mirror://goproxy//github.com/klauspost/cpuid/v2/@v/v2.0.4.zip -> github.com%2Fklauspost%2Fcpuid%2Fv2%2F@v%2Fv2.0.4.zip mirror://goproxy//github.com/klauspost/cpuid/v2/@v/v2.0.4.mod -> github.com%2Fklauspost%2Fcpuid%2Fv2%2F@v%2Fv2.0.4.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.1.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.3.zip -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.3.zip mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.3.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20180514024734-4a0ed625a78b.mod -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20180514024734-4a0ed625a78b.mod mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20191105050749-2e1c40ed0b5d.zip -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20191105050749-2e1c40ed0b5d.zip mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20191105050749-2e1c40ed0b5d.mod -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20191105050749-2e1c40ed0b5d.mod mirror://goproxy//github.com/kr/logfmt/@v/v0.0.0-20140226030751-b84e30acd515.mod -> github.com%2Fkr%2Flogfmt%2F@v%2Fv0.0.0-20140226030751-b84e30acd515.mod mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/pretty/@v/v0.2.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/kr/pretty/@v/v0.2.1.zip -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/kr/pretty/@v/v0.2.1.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.1.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.3.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.3.mod mirror://goproxy//github.com/kr/text/@v/v0.1.0.zip -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/text/@v/v0.1.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-cidranger/@v/v1.1.0.zip -> github.com%2Flibp2p%2Fgo-cidranger%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/libp2p/go-cidranger/@v/v1.1.0.mod -> github.com%2Flibp2p%2Fgo-cidranger%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/libp2p/go-conn-security/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-conn-security%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-doh-resolver/@v/v0.3.1.zip -> github.com%2Flibp2p%2Fgo-doh-resolver%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/libp2p/go-doh-resolver/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-doh-resolver%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.0.30.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.30.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.6.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.4.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.4.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.8.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.12.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.12.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.13.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.13.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.14.3.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.14.3.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.14.3.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.14.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-asn-util/@v/v0.0.0-20200825225859-85005c6cf052.zip -> github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.0.0-20200825225859-85005c6cf052.zip mirror://goproxy//github.com/libp2p/go-libp2p-asn-util/@v/v0.0.0-20200825225859-85005c6cf052.mod -> github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.0.0-20200825225859-85005c6cf052.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.4.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.4.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.4.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.4.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.0.9.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-connmgr/@v/v0.2.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-connmgr/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.6.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.6.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.7.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.7.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.8.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.8.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.8.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.8.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.8.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.5.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.5.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-gostream/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-gostream/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-http/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-http/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-pnet/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-pnet%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-kad-dht/@v/v0.11.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.11.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-kad-dht/@v/v0.12.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.12.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-kad-dht/@v/v0.12.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.12.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.4.7.zip -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.7.zip mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.4.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-metrics/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-metrics%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.4.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.4.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.4.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.6.zip -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-noise/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-noise/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-noise/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.7.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.7.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-pnet/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-pnet/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-protocol/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-protocol/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.4.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.4.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.4.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.4.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub-router/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub-router/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.10.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.11.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.11.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.11.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.11.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-routing/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-routing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-routing-helpers/@v/v0.2.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-routing-helpers/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.8.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.8.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.5.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.2-0.20200422005655-8775583591d8.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.2-0.20200422005655-8775583591d8.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.1.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.4.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.4.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-xor/@v/v0.0.0-20200501025846-71e284145d58.zip -> github.com%2Flibp2p%2Fgo-libp2p-xor%2F@v%2Fv0.0.0-20200501025846-71e284145d58.zip mirror://goproxy//github.com/libp2p/go-libp2p-xor/@v/v0.0.0-20200501025846-71e284145d58.mod -> github.com%2Flibp2p%2Fgo-libp2p-xor%2F@v%2Fv0.0.0-20200501025846-71e284145d58.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.8.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.8.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.5.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.5.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.5.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.4.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.6.zip -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.5.zip -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.5.mod -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.5.mod mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.6.zip -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.6.zip mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.6.mod -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.6.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.7.zip -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.7.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-socket-activation/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-socket-activation/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-stream-muxer/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-stream-muxer/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.4.zip -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.4.zip mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-testutil/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-testutil/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.1.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.2.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.3.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.3.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.3.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.3.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.5.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.5.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.7.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.7.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.4.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.4.1.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.4.1.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.4.1.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/libp2p/go-yamux/v2/@v/v2.0.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.0.0.mod mirror://goproxy//github.com/libp2p/go-yamux/v2/@v/v2.2.0.zip -> github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.2.0.zip mirror://goproxy//github.com/libp2p/go-yamux/v2/@v/v2.2.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.2.0.mod mirror://goproxy//github.com/lightstep/lightstep-tracer-common/golang/gogo/@v/v0.0.0-20190605223551-bc2310a04743.mod -> github.com%2Flightstep%2Flightstep-tracer-common%2Fgolang%2Fgogo%2F@v%2Fv0.0.0-20190605223551-bc2310a04743.mod mirror://goproxy//github.com/lightstep/lightstep-tracer-go/@v/v0.18.1.mod -> github.com%2Flightstep%2Flightstep-tracer-go%2F@v%2Fv0.18.1.mod mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.19.3.mod -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.19.3.mod mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.21.2.zip -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.21.2.zip mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.21.2.mod -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.21.2.mod mirror://goproxy//github.com/lunixbochs/vtclean/@v/v1.0.0.mod -> github.com%2Flunixbochs%2Fvtclean%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/lyft/protoc-gen-validate/@v/v0.0.13.mod -> github.com%2Flyft%2Fprotoc-gen-validate%2F@v%2Fv0.0.13.mod mirror://goproxy//github.com/magiconair/properties/@v/v1.8.0.mod -> github.com%2Fmagiconair%2Fproperties%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/mailru/easyjson/@v/v0.0.0-20180823135443-60711f1a8329.mod -> github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20180823135443-60711f1a8329.mod mirror://goproxy//github.com/mailru/easyjson/@v/v0.0.0-20190312143242-1de009706dbe.mod -> github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20190312143242-1de009706dbe.mod mirror://goproxy//github.com/marten-seemann/qpack/@v/v0.2.1.mod -> github.com%2Fmarten-seemann%2Fqpack%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/marten-seemann/qtls/@v/v0.10.0.mod -> github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/marten-seemann/qtls-go1-15/@v/v0.1.1.mod -> github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/marten-seemann/qtls-go1-15/@v/v0.1.4.mod -> github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/marten-seemann/qtls-go1-15/@v/v0.1.5.zip -> github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.5.zip mirror://goproxy//github.com/marten-seemann/qtls-go1-15/@v/v0.1.5.mod -> github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.5.mod mirror://goproxy//github.com/marten-seemann/qtls-go1-16/@v/v0.1.4.zip -> github.com%2Fmarten-seemann%2Fqtls-go1-16%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/marten-seemann/qtls-go1-16/@v/v0.1.4.mod -> github.com%2Fmarten-seemann%2Fqtls-go1-16%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/marten-seemann/qtls-go1-17/@v/v0.1.0-rc.1.zip -> github.com%2Fmarten-seemann%2Fqtls-go1-17%2F@v%2Fv0.1.0-rc.1.zip mirror://goproxy//github.com/marten-seemann/qtls-go1-17/@v/v0.1.0-rc.1.mod -> github.com%2Fmarten-seemann%2Fqtls-go1-17%2F@v%2Fv0.1.0-rc.1.mod mirror://goproxy//github.com/marten-seemann/tcp/@v/v0.0.0-20210406111302-dfbc87cc63fd.zip -> github.com%2Fmarten-seemann%2Ftcp%2F@v%2Fv0.0.0-20210406111302-dfbc87cc63fd.zip mirror://goproxy//github.com/marten-seemann/tcp/@v/v0.0.0-20210406111302-dfbc87cc63fd.mod -> github.com%2Fmarten-seemann%2Ftcp%2F@v%2Fv0.0.0-20210406111302-dfbc87cc63fd.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.1.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.2.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.zip -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.3.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.4.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.5.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.8.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.2.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.4.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.4.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.zip -> github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.mod -> github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/mgutz/ansi/@v/v0.0.0-20170206155736-9520e82c474b.zip -> github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.zip mirror://goproxy//github.com/mgutz/ansi/@v/v0.0.0-20170206155736-9520e82c474b.mod -> github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.mod mirror://goproxy//github.com/microcosm-cc/bluemonday/@v/v1.0.1.mod -> github.com%2Fmicrocosm-cc%2Fbluemonday%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/miekg/dns/@v/v1.0.14.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.0.14.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.12.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.12.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.28.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.28.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.31.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.31.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.41.zip -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.41.zip mirror://goproxy//github.com/miekg/dns/@v/v1.1.41.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.41.mod mirror://goproxy//github.com/mikioh/tcp/@v/v0.0.0-20190314235350-803a9b46060c.zip -> github.com%2Fmikioh%2Ftcp%2F@v%2Fv0.0.0-20190314235350-803a9b46060c.zip mirror://goproxy//github.com/mikioh/tcp/@v/v0.0.0-20190314235350-803a9b46060c.mod -> github.com%2Fmikioh%2Ftcp%2F@v%2Fv0.0.0-20190314235350-803a9b46060c.mod mirror://goproxy//github.com/mikioh/tcpinfo/@v/v0.0.0-20190314235526-30a79bb1804b.zip -> github.com%2Fmikioh%2Ftcpinfo%2F@v%2Fv0.0.0-20190314235526-30a79bb1804b.zip mirror://goproxy//github.com/mikioh/tcpinfo/@v/v0.0.0-20190314235526-30a79bb1804b.mod -> github.com%2Fmikioh%2Ftcpinfo%2F@v%2Fv0.0.0-20190314235526-30a79bb1804b.mod mirror://goproxy//github.com/mikioh/tcpopt/@v/v0.0.0-20190314235656-172688c1accc.zip -> github.com%2Fmikioh%2Ftcpopt%2F@v%2Fv0.0.0-20190314235656-172688c1accc.zip mirror://goproxy//github.com/mikioh/tcpopt/@v/v0.0.0-20190314235656-172688c1accc.mod -> github.com%2Fmikioh%2Ftcpopt%2F@v%2Fv0.0.0-20190314235656-172688c1accc.mod mirror://goproxy//github.com/minio/blake2b-simd/@v/v0.0.0-20160723061019-3f5f724cb5b1.zip -> github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.zip mirror://goproxy//github.com/minio/blake2b-simd/@v/v0.0.0-20160723061019-3f5f724cb5b1.mod -> github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190131020904-2d45a736cd16.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190131020904-2d45a736cd16.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190328051042-05b4dd3047e5.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190328051042-05b4dd3047e5.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.0.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1-0.20190913151208-6de447530771.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1-0.20190913151208-6de447530771.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v1.0.0.zip -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/minio/sha256-simd/@v/v1.0.0.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/mitchellh/cli/@v/v1.0.0.mod -> github.com%2Fmitchellh%2Fcli%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.0.0.mod -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.zip -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.mod -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mitchellh/go-testing-interface/@v/v1.0.0.mod -> github.com%2Fmitchellh%2Fgo-testing-interface%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/mitchellh/gox/@v/v0.4.0.mod -> github.com%2Fmitchellh%2Fgox%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/mitchellh/iochan/@v/v1.0.0.mod -> github.com%2Fmitchellh%2Fiochan%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/mitchellh/mapstructure/@v/v0.0.0-20160808181253-ca63d7c062ee.mod -> github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv0.0.0-20160808181253-ca63d7c062ee.mod mirror://goproxy//github.com/mitchellh/mapstructure/@v/v1.1.2.mod -> github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180228061459-e0a39a4cb421.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180228061459-e0a39a4cb421.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180306012644-bacd9c7ef1dd.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180306012644-bacd9c7ef1dd.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v0.0.0-20180701023420-4b7aa43c6742.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv0.0.0-20180701023420-4b7aa43c6742.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v1.0.1.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.0.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.1.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.2.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.3.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.3.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.2.0.zip -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/mr-tron/base58/@v/v1.2.0.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/multiformats/go-base32/@v/v0.0.3.zip -> github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/multiformats/go-base32/@v/v0.0.3.mod -> github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/multiformats/go-base36/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-base36%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-base36/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-base36%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.4.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.3.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.3.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.3.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.3.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.3.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.3.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.3.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.3.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.3.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.3.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.4.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.5.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.5.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.2.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.3.zip -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.3.mod -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/multiformats/go-multicodec/@v/v0.2.0.zip -> github.com%2Fmultiformats%2Fgo-multicodec%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/multiformats/go-multicodec/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multicodec%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.5.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.8.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.9.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.10.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.10.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.13.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.13.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.14.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.14.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.15.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.15.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.15.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.15.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.4.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.2.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.2.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.2.2.zip -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.2.2.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.5.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.6.zip -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.6.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/mwitkow/go-conntrack/@v/v0.0.0-20161129095857-cc309e4a2223.mod -> github.com%2Fmwitkow%2Fgo-conntrack%2F@v%2Fv0.0.0-20161129095857-cc309e4a2223.mod mirror://goproxy//github.com/mwitkow/go-conntrack/@v/v0.0.0-20190716064945-2f068394615f.mod -> github.com%2Fmwitkow%2Fgo-conntrack%2F@v%2Fv0.0.0-20190716064945-2f068394615f.mod mirror://goproxy//github.com/nats-io/jwt/@v/v0.3.0.mod -> github.com%2Fnats-io%2Fjwt%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/nats-io/jwt/@v/v0.3.2.mod -> github.com%2Fnats-io%2Fjwt%2F@v%2Fv0.3.2.mod mirror://goproxy//github.com/nats-io/nats-server/v2/@v/v2.1.2.mod -> github.com%2Fnats-io%2Fnats-server%2Fv2%2F@v%2Fv2.1.2.mod mirror://goproxy//github.com/nats-io/nats.go/@v/v1.9.1.mod -> github.com%2Fnats-io%2Fnats.go%2F@v%2Fv1.9.1.mod mirror://goproxy//github.com/nats-io/nkeys/@v/v0.1.0.mod -> github.com%2Fnats-io%2Fnkeys%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/nats-io/nkeys/@v/v0.1.3.mod -> github.com%2Fnats-io%2Fnkeys%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/nats-io/nuid/@v/v1.0.1.mod -> github.com%2Fnats-io%2Fnuid%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/neelance/astrewrite/@v/v0.0.0-20160511093645-99348263ae86.mod -> github.com%2Fneelance%2Fastrewrite%2F@v%2Fv0.0.0-20160511093645-99348263ae86.mod mirror://goproxy//github.com/neelance/sourcemap/@v/v0.0.0-20151028013722-8c68805598ab.mod -> github.com%2Fneelance%2Fsourcemap%2F@v%2Fv0.0.0-20151028013722-8c68805598ab.mod mirror://goproxy//github.com/nxadm/tail/@v/v1.4.4.mod -> github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.4.mod mirror://goproxy//github.com/nxadm/tail/@v/v1.4.8.zip -> github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.8.zip mirror://goproxy//github.com/nxadm/tail/@v/v1.4.8.mod -> github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.8.mod mirror://goproxy//github.com/oklog/oklog/@v/v0.3.2.mod -> github.com%2Foklog%2Foklog%2F@v%2Fv0.3.2.mod mirror://goproxy//github.com/oklog/run/@v/v1.0.0.mod -> github.com%2Foklog%2Frun%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/olekukonko/tablewriter/@v/v0.0.0-20170122224234-a0225b3f23b5.mod -> github.com%2Folekukonko%2Ftablewriter%2F@v%2Fv0.0.0-20170122224234-a0225b3f23b5.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.6.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.7.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.8.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.12.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.12.1.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.1.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.14.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.14.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.16.2.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.16.2.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.16.4.zip -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.16.4.zip mirror://goproxy//github.com/onsi/ginkgo/@v/v1.16.4.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.16.4.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.4.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.4.3.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.4.3.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.5.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.7.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.7.1.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.9.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.10.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.10.1.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.13.0.zip -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.13.0.zip mirror://goproxy//github.com/onsi/gomega/@v/v1.13.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.13.0.mod mirror://goproxy//github.com/op/go-logging/@v/v0.0.0-20160315200505-970db520ece7.mod -> github.com%2Fop%2Fgo-logging%2F@v%2Fv0.0.0-20160315200505-970db520ece7.mod mirror://goproxy//github.com/opentracing-contrib/go-observer/@v/v0.0.0-20170622124052-a52f23424492.mod -> github.com%2Fopentracing-contrib%2Fgo-observer%2F@v%2Fv0.0.0-20170622124052-a52f23424492.mod mirror://goproxy//github.com/opentracing/basictracer-go/@v/v1.0.0.mod -> github.com%2Fopentracing%2Fbasictracer-go%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.0.2.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.1.0.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.2.0.zip -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.2.0.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/openzipkin-contrib/zipkin-go-opentracing/@v/v0.4.5.mod -> github.com%2Fopenzipkin-contrib%2Fzipkin-go-opentracing%2F@v%2Fv0.4.5.mod mirror://goproxy//github.com/openzipkin/zipkin-go/@v/v0.1.1.mod -> github.com%2Fopenzipkin%2Fzipkin-go%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/openzipkin/zipkin-go/@v/v0.1.6.mod -> github.com%2Fopenzipkin%2Fzipkin-go%2F@v%2Fv0.1.6.mod mirror://goproxy//github.com/openzipkin/zipkin-go/@v/v0.2.1.mod -> github.com%2Fopenzipkin%2Fzipkin-go%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/openzipkin/zipkin-go/@v/v0.2.2.mod -> github.com%2Fopenzipkin%2Fzipkin-go%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/pact-foundation/pact-go/@v/v1.0.4.mod -> github.com%2Fpact-foundation%2Fpact-go%2F@v%2Fv1.0.4.mod mirror://goproxy//github.com/pascaldekloe/goe/@v/v0.0.0-20180627143212-57f6aae5913c.mod -> github.com%2Fpascaldekloe%2Fgoe%2F@v%2Fv0.0.0-20180627143212-57f6aae5913c.mod mirror://goproxy//github.com/pborman/uuid/@v/v1.2.0.mod -> github.com%2Fpborman%2Fuuid%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/pelletier/go-toml/@v/v1.2.0.mod -> github.com%2Fpelletier%2Fgo-toml%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/performancecopilot/speed/@v/v3.0.0+incompatible.mod -> github.com%2Fperformancecopilot%2Fspeed%2F@v%2Fv3.0.0+incompatible.mod mirror://goproxy//github.com/pierrec/lz4/@v/v1.0.2-0.20190131084431-473cd7ce01a1.mod -> github.com%2Fpierrec%2Flz4%2F@v%2Fv1.0.2-0.20190131084431-473cd7ce01a1.mod mirror://goproxy//github.com/pierrec/lz4/@v/v2.0.5+incompatible.mod -> github.com%2Fpierrec%2Flz4%2F@v%2Fv2.0.5+incompatible.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.0.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.zip -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.zip mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/pkg/profile/@v/v1.2.1.mod -> github.com%2Fpkg%2Fprofile%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190221155625-df39d6c2d992.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190221155625-df39d6c2d992.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190408063855-01bf1e26dd14.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190408063855-01bf1e26dd14.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190807091052-3d65705ee9f1.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190807091052-3d65705ee9f1.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20201211092308-30ac6d18308e.zip -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20201211092308-30ac6d18308e.zip mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20201211092308-30ac6d18308e.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20201211092308-30ac6d18308e.mod mirror://goproxy//github.com/posener/complete/@v/v1.1.1.mod -> github.com%2Fposener%2Fcomplete%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.8.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.1.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.2.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.2.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.3-0.20190127221311-3c4408c8b829.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.3-0.20190127221311-3c4408c8b829.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.0.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.3.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.6.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.7.1.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.7.1.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.9.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.10.0.zip -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.10.0.zip mirror://goproxy//github.com/prometheus/client_golang/@v/v1.10.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.10.0.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20180712105110-5c3871d89910.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20180712105110-5c3871d89910.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190115171406-56726106282f.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190115171406-56726106282f.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190129233127-fd36f4220a90.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190129233127-fd36f4220a90.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190812154241-14fe0d1b01d4.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190812154241-14fe0d1b01d4.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.1.0.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.2.0.zip -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/prometheus/client_model/@v/v0.2.0.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20180801064454-c7de2306084e.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20180801064454-c7de2306084e.mod mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20181126121408-4724e9255275.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181126121408-4724e9255275.mod mirror://goproxy//github.com/prometheus/common/@v/v0.2.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.4.1.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/prometheus/common/@v/v0.7.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.7.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.9.1.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/prometheus/common/@v/v0.10.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.15.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.15.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.18.0.zip -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.18.0.zip mirror://goproxy//github.com/prometheus/common/@v/v0.18.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.18.0.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20180725123919-05ee40e3a273.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20180725123919-05ee40e3a273.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181005140218-185b4288413d.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181005140218-185b4288413d.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181204211112-1dc9a6cbc91a.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181204211112-1dc9a6cbc91a.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20190117184657-bf6a532e95b1.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20190117184657-bf6a532e95b1.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.2.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.8.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.11.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.11.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.1.3.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.2.0.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.6.0.zip -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.6.0.zip mirror://goproxy//github.com/prometheus/procfs/@v/v0.6.0.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/prometheus/statsd_exporter/@v/v0.20.0.zip -> github.com%2Fprometheus%2Fstatsd_exporter%2F@v%2Fv0.20.0.zip mirror://goproxy//github.com/prometheus/statsd_exporter/@v/v0.20.0.mod -> github.com%2Fprometheus%2Fstatsd_exporter%2F@v%2Fv0.20.0.mod mirror://goproxy//github.com/rcrowley/go-metrics/@v/v0.0.0-20181016184325-3113b8401b8a.mod -> github.com%2Frcrowley%2Fgo-metrics%2F@v%2Fv0.0.0-20181016184325-3113b8401b8a.mod mirror://goproxy//github.com/rogpeppe/fastuuid/@v/v0.0.0-20150106093220-6724a57986af.mod -> github.com%2Frogpeppe%2Ffastuuid%2F@v%2Fv0.0.0-20150106093220-6724a57986af.mod mirror://goproxy//github.com/rogpeppe/go-internal/@v/v1.3.0.mod -> github.com%2Frogpeppe%2Fgo-internal%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/rs/cors/@v/v1.7.0.zip -> github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/rs/cors/@v/v1.7.0.mod -> github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/russross/blackfriday/@v/v1.5.2.mod -> github.com%2Frussross%2Fblackfriday%2F@v%2Fv1.5.2.mod mirror://goproxy//github.com/russross/blackfriday/v2/@v/v2.0.1.mod -> github.com%2Frussross%2Fblackfriday%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/rwcarlsen/goexif/@v/v0.0.0-20190401172101-9e8deecbddbd.mod -> github.com%2Frwcarlsen%2Fgoexif%2F@v%2Fv0.0.0-20190401172101-9e8deecbddbd.mod mirror://goproxy//github.com/ryanuber/columnize/@v/v0.0.0-20160712163229-9b3edd62028f.mod -> github.com%2Fryanuber%2Fcolumnize%2F@v%2Fv0.0.0-20160712163229-9b3edd62028f.mod mirror://goproxy//github.com/samuel/go-zookeeper/@v/v0.0.0-20190923202752-2cc03de413da.mod -> github.com%2Fsamuel%2Fgo-zookeeper%2F@v%2Fv0.0.0-20190923202752-2cc03de413da.mod mirror://goproxy//github.com/sean-/seed/@v/v0.0.0-20170313163322-e2103e2c3529.mod -> github.com%2Fsean-%2Fseed%2F@v%2Fv0.0.0-20170313163322-e2103e2c3529.mod mirror://goproxy//github.com/sergi/go-diff/@v/v1.0.0.mod -> github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/shurcoo!l/component/@v/v0.0.0-20170202220835-f88ec8f54cc4.mod -> github.com%2Fshurcoo!l%2Fcomponent%2F@v%2Fv0.0.0-20170202220835-f88ec8f54cc4.mod mirror://goproxy//github.com/shurcoo!l/events/@v/v0.0.0-20181021180414-410e4ca65f48.mod -> github.com%2Fshurcoo!l%2Fevents%2F@v%2Fv0.0.0-20181021180414-410e4ca65f48.mod mirror://goproxy//github.com/shurcoo!l/github_flavored_markdown/@v/v0.0.0-20181002035957-2122de532470.mod -> github.com%2Fshurcoo!l%2Fgithub_flavored_markdown%2F@v%2Fv0.0.0-20181002035957-2122de532470.mod mirror://goproxy//github.com/shurcoo!l/go/@v/v0.0.0-20180423040247-9e1955d9fb6e.mod -> github.com%2Fshurcoo!l%2Fgo%2F@v%2Fv0.0.0-20180423040247-9e1955d9fb6e.mod mirror://goproxy//github.com/shurcoo!l/go-goon/@v/v0.0.0-20170922171312-37c2f522c041.mod -> github.com%2Fshurcoo!l%2Fgo-goon%2F@v%2Fv0.0.0-20170922171312-37c2f522c041.mod mirror://goproxy//github.com/shurcoo!l/gofontwoff/@v/v0.0.0-20180329035133-29b52fc0a18d.mod -> github.com%2Fshurcoo!l%2Fgofontwoff%2F@v%2Fv0.0.0-20180329035133-29b52fc0a18d.mod mirror://goproxy//github.com/shurcoo!l/gopherjslib/@v/v0.0.0-20160914041154-feb6d3990c2c.mod -> github.com%2Fshurcoo!l%2Fgopherjslib%2F@v%2Fv0.0.0-20160914041154-feb6d3990c2c.mod mirror://goproxy//github.com/shurcoo!l/highlight_diff/@v/v0.0.0-20170515013008-09bb4053de1b.mod -> github.com%2Fshurcoo!l%2Fhighlight_diff%2F@v%2Fv0.0.0-20170515013008-09bb4053de1b.mod mirror://goproxy//github.com/shurcoo!l/highlight_go/@v/v0.0.0-20181028180052-98c3abbbae20.mod -> github.com%2Fshurcoo!l%2Fhighlight_go%2F@v%2Fv0.0.0-20181028180052-98c3abbbae20.mod mirror://goproxy//github.com/shurcoo!l/home/@v/v0.0.0-20181020052607-80b7ffcb30f9.mod -> github.com%2Fshurcoo!l%2Fhome%2F@v%2Fv0.0.0-20181020052607-80b7ffcb30f9.mod mirror://goproxy//github.com/shurcoo!l/htmlg/@v/v0.0.0-20170918183704-d01228ac9e50.mod -> github.com%2Fshurcoo!l%2Fhtmlg%2F@v%2Fv0.0.0-20170918183704-d01228ac9e50.mod mirror://goproxy//github.com/shurcoo!l/httperror/@v/v0.0.0-20170206035902-86b7830d14cc.mod -> github.com%2Fshurcoo!l%2Fhttperror%2F@v%2Fv0.0.0-20170206035902-86b7830d14cc.mod mirror://goproxy//github.com/shurcoo!l/httpfs/@v/v0.0.0-20171119174359-809beceb2371.mod -> github.com%2Fshurcoo!l%2Fhttpfs%2F@v%2Fv0.0.0-20171119174359-809beceb2371.mod mirror://goproxy//github.com/shurcoo!l/httpgzip/@v/v0.0.0-20180522190206-b1c53ac65af9.mod -> github.com%2Fshurcoo!l%2Fhttpgzip%2F@v%2Fv0.0.0-20180522190206-b1c53ac65af9.mod mirror://goproxy//github.com/shurcoo!l/issues/@v/v0.0.0-20181008053335-6292fdc1e191.mod -> github.com%2Fshurcoo!l%2Fissues%2F@v%2Fv0.0.0-20181008053335-6292fdc1e191.mod mirror://goproxy//github.com/shurcoo!l/issuesapp/@v/v0.0.0-20180602232740-048589ce2241.mod -> github.com%2Fshurcoo!l%2Fissuesapp%2F@v%2Fv0.0.0-20180602232740-048589ce2241.mod mirror://goproxy//github.com/shurcoo!l/notifications/@v/v0.0.0-20181007000457-627ab5aea122.mod -> github.com%2Fshurcoo!l%2Fnotifications%2F@v%2Fv0.0.0-20181007000457-627ab5aea122.mod mirror://goproxy//github.com/shurcoo!l/octicon/@v/v0.0.0-20181028054416-fa4f57f9efb2.mod -> github.com%2Fshurcoo!l%2Focticon%2F@v%2Fv0.0.0-20181028054416-fa4f57f9efb2.mod mirror://goproxy//github.com/shurcoo!l/reactions/@v/v0.0.0-20181006231557-f2e0b4ca5b82.mod -> github.com%2Fshurcoo!l%2Freactions%2F@v%2Fv0.0.0-20181006231557-f2e0b4ca5b82.mod mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v0.0.0-20170918181015-86672fcb3f95.mod -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv0.0.0-20170918181015-86672fcb3f95.mod mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v1.0.0.mod -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/shurcoo!l/users/@v/v0.0.0-20180125191416-49c67e49c537.mod -> github.com%2Fshurcoo!l%2Fusers%2F@v%2Fv0.0.0-20180125191416-49c67e49c537.mod mirror://goproxy//github.com/shurcoo!l/webdavfs/@v/v0.0.0-20170829043945-18c3829fa133.mod -> github.com%2Fshurcoo!l%2Fwebdavfs%2F@v%2Fv0.0.0-20170829043945-18c3829fa133.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.2.0.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.4.2.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.6.0.zip -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.6.0.zip mirror://goproxy//github.com/sirupsen/logrus/@v/v1.6.0.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v0.0.0-20180927180507-b2de0cb4f26d.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv0.0.0-20180927180507-b2de0cb4f26d.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.0.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.1.zip -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.1.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190222223459-a17d461953aa.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190222223459-a17d461953aa.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190330032615-68dc04aab96a.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190330032615-68dc04aab96a.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v1.6.4.zip -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv1.6.4.zip mirror://goproxy//github.com/smartystreets/goconvey/@v/v1.6.4.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv1.6.4.mod mirror://goproxy//github.com/smola/gocompat/@v/v0.2.0.mod -> github.com%2Fsmola%2Fgocompat%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/soheilhy/cmux/@v/v0.1.4.mod -> github.com%2Fsoheilhy%2Fcmux%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/sony/gobreaker/@v/v0.4.1.mod -> github.com%2Fsony%2Fgobreaker%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/sourcegraph/annotate/@v/v0.0.0-20160123013949-f4cad6c6324d.mod -> github.com%2Fsourcegraph%2Fannotate%2F@v%2Fv0.0.0-20160123013949-f4cad6c6324d.mod mirror://goproxy//github.com/sourcegraph/syntaxhighlight/@v/v0.0.0-20170531221838-bd320f5d308e.mod -> github.com%2Fsourcegraph%2Fsyntaxhighlight%2F@v%2Fv0.0.0-20170531221838-bd320f5d308e.mod mirror://goproxy//github.com/spacemonkeygo/openssl/@v/v0.0.0-20181017203307-c2dcc5cca94a.mod -> github.com%2Fspacemonkeygo%2Fopenssl%2F@v%2Fv0.0.0-20181017203307-c2dcc5cca94a.mod mirror://goproxy//github.com/spacemonkeygo/spacelog/@v/v0.0.0-20180420211403-2296661a0572.zip -> github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.zip mirror://goproxy//github.com/spacemonkeygo/spacelog/@v/v0.0.0-20180420211403-2296661a0572.mod -> github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v0.0.0-20180118202830-f09979ecbc72.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv0.0.0-20180118202830-f09979ecbc72.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.zip -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/spf13/afero/@v/v1.1.2.mod -> github.com%2Fspf13%2Fafero%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/spf13/cast/@v/v1.3.0.mod -> github.com%2Fspf13%2Fcast%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/spf13/cobra/@v/v0.0.3.mod -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/spf13/cobra/@v/v0.0.5.mod -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/spf13/jwalterweatherman/@v/v1.0.0.mod -> github.com%2Fspf13%2Fjwalterweatherman%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.1.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.3.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/spf13/viper/@v/v1.3.2.mod -> github.com%2Fspf13%2Fviper%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/src-d/envconfig/@v/v1.0.0.mod -> github.com%2Fsrc-d%2Fenvconfig%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/streadway/amqp/@v/v0.0.0-20190404075320-75d898a42a94.mod -> github.com%2Fstreadway%2Famqp%2F@v%2Fv0.0.0-20190404075320-75d898a42a94.mod mirror://goproxy//github.com/streadway/amqp/@v/v0.0.0-20190827072141-edfb9018d271.mod -> github.com%2Fstreadway%2Famqp%2F@v%2Fv0.0.0-20190827072141-edfb9018d271.mod mirror://goproxy//github.com/streadway/handy/@v/v0.0.0-20190108123426-d5acb3125c2a.mod -> github.com%2Fstreadway%2Fhandy%2F@v%2Fv0.0.0-20190108123426-d5acb3125c2a.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.1.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.2.2.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.5.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.6.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.7.0.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.7.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/syndtr/goleveldb/@v/v1.0.0.zip -> github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/syndtr/goleveldb/@v/v1.0.0.mod -> github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/tarm/serial/@v/v0.0.0-20180830185346-98f6abe2eb07.mod -> github.com%2Ftarm%2Fserial%2F@v%2Fv0.0.0-20180830185346-98f6abe2eb07.mod mirror://goproxy//github.com/texttheater/golang-levenshtein/@v/v0.0.0-20180516184445-d188e65d659e.zip -> github.com%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.zip mirror://goproxy//github.com/texttheater/golang-levenshtein/@v/v0.0.0-20180516184445-d188e65d659e.mod -> github.com%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.mod mirror://goproxy//github.com/tmc/grpc-websocket-proxy/@v/v0.0.0-20170815181823-89b8d40f7ca8.mod -> github.com%2Ftmc%2Fgrpc-websocket-proxy%2F@v%2Fv0.0.0-20170815181823-89b8d40f7ca8.mod mirror://goproxy//github.com/tv42/httpunix/@v/v0.0.0-20191220191345-2ba4b9c3382c.zip -> github.com%2Ftv42%2Fhttpunix%2F@v%2Fv0.0.0-20191220191345-2ba4b9c3382c.zip mirror://goproxy//github.com/tv42/httpunix/@v/v0.0.0-20191220191345-2ba4b9c3382c.mod -> github.com%2Ftv42%2Fhttpunix%2F@v%2Fv0.0.0-20191220191345-2ba4b9c3382c.mod mirror://goproxy//github.com/ugorji/go/codec/@v/v0.0.0-20181204163529-d75b2dcb6bc8.mod -> github.com%2Fugorji%2Fgo%2Fcodec%2F@v%2Fv0.0.0-20181204163529-d75b2dcb6bc8.mod mirror://goproxy//github.com/urfave/cli/@v/v1.20.0.mod -> github.com%2Furfave%2Fcli%2F@v%2Fv1.20.0.mod mirror://goproxy//github.com/urfave/cli/@v/v1.22.1.mod -> github.com%2Furfave%2Fcli%2F@v%2Fv1.22.1.mod mirror://goproxy//github.com/urfave/cli/v2/@v/v2.0.0.mod -> github.com%2Furfave%2Fcli%2Fv2%2F@v%2Fv2.0.0.mod mirror://goproxy//github.com/viant/assertly/@v/v0.4.8.mod -> github.com%2Fviant%2Fassertly%2F@v%2Fv0.4.8.mod mirror://goproxy//github.com/viant/toolbox/@v/v0.24.0.mod -> github.com%2Fviant%2Ftoolbox%2F@v%2Fv0.24.0.mod mirror://goproxy//github.com/wangjia184/sortedset/@v/v0.0.0-20160527075905-f5d03557ba30.mod -> github.com%2Fwangjia184%2Fsortedset%2F@v%2Fv0.0.0-20160527075905-f5d03557ba30.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20180510122957-5ad1f5abf436.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20180510122957-5ad1f5abf436.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20190328234359-8b3e70f8e830.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20190328234359-8b3e70f8e830.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20200122115046-b9ea61034e4a.zip -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20200122115046-b9ea61034e4a.zip mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20200122115046-b9ea61034e4a.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20200122115046-b9ea61034e4a.mod mirror://goproxy//github.com/whyrusleeping/base32/@v/v0.0.0-20170828182744-c30ac30633cc.zip -> github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.zip mirror://goproxy//github.com/whyrusleeping/base32/@v/v0.0.0-20170828182744-c30ac30633cc.mod -> github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.mod mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20200123233031-1cdf64d27158.mod -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200123233031-1cdf64d27158.mod mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20200710004633-5379fc63235d.mod -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200710004633-5379fc63235d.mod mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20210219115102-f37d292932f2.zip -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20210219115102-f37d292932f2.zip mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20210219115102-f37d292932f2.mod -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20210219115102-f37d292932f2.mod mirror://goproxy//github.com/whyrusleeping/chunker/@v/v0.0.0-20181014151217-fe64bd25879f.zip -> github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.zip mirror://goproxy//github.com/whyrusleeping/chunker/@v/v0.0.0-20181014151217-fe64bd25879f.mod -> github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.mod mirror://goproxy//github.com/whyrusleeping/go-keyspace/@v/v0.0.0-20160322163242-5b898ac5add1.zip -> github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.zip mirror://goproxy//github.com/whyrusleeping/go-keyspace/@v/v0.0.0-20160322163242-5b898ac5add1.mod -> github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.mod mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.0-20170515211332-0457bb6b88fc.mod -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.0-20170515211332-0457bb6b88fc.mod mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.1.mod -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/whyrusleeping/go-notifier/@v/v0.0.0-20170827234753-097c5d47330f.mod -> github.com%2Fwhyrusleeping%2Fgo-notifier%2F@v%2Fv0.0.0-20170827234753-097c5d47330f.mod mirror://goproxy//github.com/whyrusleeping/go-sysinfo/@v/v0.0.0-20190219211824-4a357d4b90b1.zip -> github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.zip mirror://goproxy//github.com/whyrusleeping/go-sysinfo/@v/v0.0.0-20190219211824-4a357d4b90b1.mod -> github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.mod mirror://goproxy//github.com/whyrusleeping/mafmt/@v/v1.2.8.mod -> github.com%2Fwhyrusleeping%2Fmafmt%2F@v%2Fv1.2.8.mod mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20180901202407-ef14215e6b30.mod -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20180901202407-ef14215e6b30.mod mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20190826153040-b9b60ed33aa9.zip -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9.zip mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20190826153040-b9b60ed33aa9.mod -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9.mod mirror://goproxy//github.com/whyrusleeping/multiaddr-filter/@v/v0.0.0-20160516205228-e903e4adabd7.zip -> github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.zip mirror://goproxy//github.com/whyrusleeping/multiaddr-filter/@v/v0.0.0-20160516205228-e903e4adabd7.mod -> github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.mod mirror://goproxy//github.com/whyrusleeping/timecache/@v/v0.0.0-20160911033111-cfcb2f1abfee.zip -> github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.zip mirror://goproxy//github.com/whyrusleeping/timecache/@v/v0.0.0-20160911033111-cfcb2f1abfee.mod -> github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.mod mirror://goproxy//github.com/x-cray/logrus-prefixed-formatter/@v/v0.5.2.mod -> github.com%2Fx-cray%2Flogrus-prefixed-formatter%2F@v%2Fv0.5.2.mod mirror://goproxy//github.com/xiang90/probing/@v/v0.0.0-20190116061207-43a291ad63a2.mod -> github.com%2Fxiang90%2Fprobing%2F@v%2Fv0.0.0-20190116061207-43a291ad63a2.mod mirror://goproxy//github.com/xordataexchange/crypt/@v/v0.0.3-0.20170626215501-b2862e3d0a77.mod -> github.com%2Fxordataexchange%2Fcrypt%2F@v%2Fv0.0.3-0.20170626215501-b2862e3d0a77.mod mirror://goproxy//github.com/yuin/goldmark/@v/v1.1.27.mod -> github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.1.27.mod mirror://goproxy//github.com/yuin/goldmark/@v/v1.2.1.mod -> github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/yuin/goldmark/@v/v1.3.5.mod -> github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.3.5.mod mirror://goproxy//go.etcd.io/bbolt/@v/v1.3.3.mod -> go.etcd.io%2Fbbolt%2F@v%2Fv1.3.3.mod mirror://goproxy//go.etcd.io/etcd/@v/v0.0.0-20191023171146-3cf2f69b5738.mod -> go.etcd.io%2Fetcd%2F@v%2Fv0.0.0-20191023171146-3cf2f69b5738.mod mirror://goproxy//go.opencensus.io/@v/v0.18.0.mod -> go.opencensus.io%2F@v%2Fv0.18.0.mod mirror://goproxy//go.opencensus.io/@v/v0.20.1.mod -> go.opencensus.io%2F@v%2Fv0.20.1.mod mirror://goproxy//go.opencensus.io/@v/v0.20.2.mod -> go.opencensus.io%2F@v%2Fv0.20.2.mod mirror://goproxy//go.opencensus.io/@v/v0.21.0.mod -> go.opencensus.io%2F@v%2Fv0.21.0.mod mirror://goproxy//go.opencensus.io/@v/v0.22.0.mod -> go.opencensus.io%2F@v%2Fv0.22.0.mod mirror://goproxy//go.opencensus.io/@v/v0.22.1.mod -> go.opencensus.io%2F@v%2Fv0.22.1.mod mirror://goproxy//go.opencensus.io/@v/v0.22.2.mod -> go.opencensus.io%2F@v%2Fv0.22.2.mod mirror://goproxy//go.opencensus.io/@v/v0.22.3.mod -> go.opencensus.io%2F@v%2Fv0.22.3.mod mirror://goproxy//go.opencensus.io/@v/v0.22.4.mod -> go.opencensus.io%2F@v%2Fv0.22.4.mod mirror://goproxy//go.opencensus.io/@v/v0.23.0.zip -> go.opencensus.io%2F@v%2Fv0.23.0.zip mirror://goproxy//go.opencensus.io/@v/v0.23.0.mod -> go.opencensus.io%2F@v%2Fv0.23.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.3.2.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.3.2.mod mirror://goproxy//go.uber.org/atomic/@v/v1.4.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.4.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.5.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.5.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.6.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.6.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.7.0.zip -> go.uber.org%2Fatomic%2F@v%2Fv1.7.0.zip mirror://goproxy//go.uber.org/atomic/@v/v1.7.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.7.0.mod mirror://goproxy//go.uber.org/dig/@v/v1.10.0.zip -> go.uber.org%2Fdig%2F@v%2Fv1.10.0.zip mirror://goproxy//go.uber.org/dig/@v/v1.10.0.mod -> go.uber.org%2Fdig%2F@v%2Fv1.10.0.mod mirror://goproxy//go.uber.org/fx/@v/v1.13.1.zip -> go.uber.org%2Ffx%2F@v%2Fv1.13.1.zip mirror://goproxy//go.uber.org/fx/@v/v1.13.1.mod -> go.uber.org%2Ffx%2F@v%2Fv1.13.1.mod mirror://goproxy//go.uber.org/goleak/@v/v0.10.0.mod -> go.uber.org%2Fgoleak%2F@v%2Fv0.10.0.mod mirror://goproxy//go.uber.org/goleak/@v/v1.0.0.zip -> go.uber.org%2Fgoleak%2F@v%2Fv1.0.0.zip mirror://goproxy//go.uber.org/goleak/@v/v1.0.0.mod -> go.uber.org%2Fgoleak%2F@v%2Fv1.0.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.1.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.1.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.3.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.3.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.4.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.4.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.5.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.5.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.6.0.zip -> go.uber.org%2Fmultierr%2F@v%2Fv1.6.0.zip mirror://goproxy//go.uber.org/multierr/@v/v1.6.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.6.0.mod mirror://goproxy//go.uber.org/tools/@v/v0.0.0-20190618225709-2cfd321de3ee.mod -> go.uber.org%2Ftools%2F@v%2Fv0.0.0-20190618225709-2cfd321de3ee.mod mirror://goproxy//go.uber.org/zap/@v/v1.10.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.10.0.mod mirror://goproxy//go.uber.org/zap/@v/v1.13.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.13.0.mod mirror://goproxy//go.uber.org/zap/@v/v1.14.1.mod -> go.uber.org%2Fzap%2F@v%2Fv1.14.1.mod mirror://goproxy//go.uber.org/zap/@v/v1.15.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.15.0.mod mirror://goproxy//go.uber.org/zap/@v/v1.16.0.zip -> go.uber.org%2Fzap%2F@v%2Fv1.16.0.zip mirror://goproxy//go.uber.org/zap/@v/v1.16.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.16.0.mod mirror://goproxy//go4.org/@v/v0.0.0-20180809161055-417644f6feb5.mod -> go4.org%2F@v%2Fv0.0.0-20180809161055-417644f6feb5.mod mirror://goproxy//go4.org/@v/v0.0.0-20200411211856-f5505b9728dd.zip -> go4.org%2F@v%2Fv0.0.0-20200411211856-f5505b9728dd.zip mirror://goproxy//go4.org/@v/v0.0.0-20200411211856-f5505b9728dd.mod -> go4.org%2F@v%2Fv0.0.0-20200411211856-f5505b9728dd.mod mirror://goproxy//golang.org/x/build/@v/v0.0.0-20190111050920-041ab4dc3f9d.mod -> golang.org%2Fx%2Fbuild%2F@v%2Fv0.0.0-20190111050920-041ab4dc3f9d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20170930174604-9419663f5a44.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20170930174604-9419663f5a44.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20180904163835-0709b304e793.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20180904163835-0709b304e793.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20181029021203-45a5f77698d3.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181029021203-45a5f77698d3.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20181030102418-4d3f4d9ffa16.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181030102418-4d3f4d9ffa16.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20181203042331-505ab145d0a9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181203042331-505ab145d0a9.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190211182817-74369b46fc67.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190211182817-74369b46fc67.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190225124518-7f87c0fbb88b.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190225124518-7f87c0fbb88b.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190228161510-8dd112bcdc25.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190228161510-8dd112bcdc25.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190313024323-a1f597ede03a.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190313024323-a1f597ede03a.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190426145343-a29dc8fdc734.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190426145343-a29dc8fdc734.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190510104115-cbcb75029529.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190510104115-cbcb75029529.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190513172903-22d7a77e9e5f.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190513172903-22d7a77e9e5f.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190530122614-20be4c3c3ed5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190530122614-20be4c3c3ed5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190605123033-f99c8df09eb5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190605123033-f99c8df09eb5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190611184440-5c40567a22f8.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190611184440-5c40567a22f8.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190618222545-ea8f1a30c443.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190618222545-ea8f1a30c443.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190701094942-4def268fd1a4.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190701094942-4def268fd1a4.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20191011191535-87dc89f01550.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191011191535-87dc89f01550.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200115085410-6d4e4cb37c7d.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200115085410-6d4e4cb37c7d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200221231518-2aa609cf4a9d.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200221231518-2aa609cf4a9d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200423211502-4bdfaf469ed5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200423211502-4bdfaf469ed5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200510223506-06a226fb4e37.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200510223506-06a226fb4e37.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200602180216-279210d13fed.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200602180216-279210d13fed.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200622213623-75b288015ac9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200820211705-5c72a883971a.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200820211705-5c72a883971a.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210220033148-5ea612d1eb83.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210220033148-5ea612d1eb83.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210220033148-5ea612d1eb83.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210220033148-5ea612d1eb83.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210322153248-0c34fe9e7dc2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210322153248-0c34fe9e7dc2.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210506145944-38f3c27a63bf.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210506145944-38f3c27a63bf.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210506145944-38f3c27a63bf.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210506145944-38f3c27a63bf.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190121172915-509febef88a4.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190121172915-509febef88a4.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190306152737-a1d7652674e8.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190306152737-a1d7652674e8.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190510132918-efd6b22b2522.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190510132918-efd6b22b2522.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190829153037-c13cbed26979.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190829153037-c13cbed26979.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20191030013958-a1ab85dbe136.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191030013958-a1ab85dbe136.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20191129062945-2f5052295587.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191129062945-2f5052295587.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20191227195350-da58074b4299.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191227195350-da58074b4299.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20200207192155-f17229e696bd.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20200207192155-f17229e696bd.mod mirror://goproxy//golang.org/x/image/@v/v0.0.0-20190227222117-0694c2d4d067.mod -> golang.org%2Fx%2Fimage%2F@v%2Fv0.0.0-20190227222117-0694c2d4d067.mod mirror://goproxy//golang.org/x/image/@v/v0.0.0-20190802002840-cff245a6509b.mod -> golang.org%2Fx%2Fimage%2F@v%2Fv0.0.0-20190802002840-cff245a6509b.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20180702182130-06c8688daad7.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20180702182130-06c8688daad7.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20181026193005-c67002cb31c3.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20181026193005-c67002cb31c3.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190227174305-5b3e6a55c961.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190227174305-5b3e6a55c961.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190301231843-5614ed5bae6f.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190301231843-5614ed5bae6f.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190313153728-d0100b6bd8b3.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190313153728-d0100b6bd8b3.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190409202823-959b441ac422.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190409202823-959b441ac422.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190909230951-414d861bb4ac.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190909230951-414d861bb4ac.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190930215403-16217165b5de.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190930215403-16217165b5de.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20191125180803-fdd1cda4f05f.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20191125180803-fdd1cda4f05f.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20200130185559-910be7a94367.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200130185559-910be7a94367.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20200302205851-738671d3881b.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200302205851-738671d3881b.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20201208152925-83fdc39ff7b5.zip -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20201208152925-83fdc39ff7b5.zip mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20201208152925-83fdc39ff7b5.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20201208152925-83fdc39ff7b5.mod mirror://goproxy//golang.org/x/mobile/@v/v0.0.0-20190312151609-d3739f865fa6.mod -> golang.org%2Fx%2Fmobile%2F@v%2Fv0.0.0-20190312151609-d3739f865fa6.mod mirror://goproxy//golang.org/x/mobile/@v/v0.0.0-20190719004257-d2bd2a29d028.mod -> golang.org%2Fx%2Fmobile%2F@v%2Fv0.0.0-20190719004257-d2bd2a29d028.mod mirror://goproxy//golang.org/x/mod/@v/v0.0.0-20190513183733-4bf6d317e70e.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.0.0-20190513183733-4bf6d317e70e.mod mirror://goproxy//golang.org/x/mod/@v/v0.1.0.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.0.mod mirror://goproxy//golang.org/x/mod/@v/v0.1.1-0.20191105210325-c90efee705ee.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.1-0.20191105210325-c90efee705ee.mod mirror://goproxy//golang.org/x/mod/@v/v0.2.0.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.2.0.mod mirror://goproxy//golang.org/x/mod/@v/v0.3.0.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/mod/@v/v0.4.1.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.4.1.mod mirror://goproxy//golang.org/x/mod/@v/v0.4.2.zip -> golang.org%2Fx%2Fmod%2F@v%2Fv0.4.2.zip mirror://goproxy//golang.org/x/mod/@v/v0.4.2.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.4.2.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180719180050-a680a1efc54d.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180719180050-a680a1efc54d.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180724234803-3673e40ba225.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180724234803-3673e40ba225.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180826012351-8a410e7b638d.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180826012351-8a410e7b638d.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180906233101-161cd47e91fd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180906233101-161cd47e91fd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181011144130-49bb7cea24b1.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181011144130-49bb7cea24b1.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181023162649-9b4f9f5ad519.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181023162649-9b4f9f5ad519.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181029044818-c44066c5c816.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181029044818-c44066c5c816.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181106065722-10aee1819953.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181106065722-10aee1819953.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181114220301-adae6a3d119a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181114220301-adae6a3d119a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181201002055-351d144fa1fc.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181201002055-351d144fa1fc.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181220203305-927f97764cc3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181220203305-927f97764cc3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190108225652-1e06a53dbb7e.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190108225652-1e06a53dbb7e.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190125091013-d26f9f9a57f3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190125091013-d26f9f9a57f3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190213061140-3a22650c66bd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190213061140-3a22650c66bd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190227160552-c95aed5357e7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190227160552-c95aed5357e7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190311183353-d8887717615a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190311183353-d8887717615a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190313220215-9f648a60d977.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190313220215-9f648a60d977.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190501004415-9ce7a6920f09.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190501004415-9ce7a6920f09.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190503192946-f4e77d36d62c.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190503192946-f4e77d36d62c.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190522155817-f3200d17e092.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190522155817-f3200d17e092.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190603091049-60506f45cf65.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190603091049-60506f45cf65.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190611141213-3f473d35a33a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190611141213-3f473d35a33a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190613194153-d28f0bde5980.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190613194153-d28f0bde5980.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190724013045-ca1201d0de80.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190724013045-ca1201d0de80.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190813141303-74dc4d7220e7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190813141303-74dc4d7220e7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190923162816-aa69164e4478.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190923162816-aa69164e4478.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20191209160850-c0dbc17a3553.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20191209160850-c0dbc17a3553.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200202094626-16171245cfb2.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200202094626-16171245cfb2.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200222125558-5a598a2470a0.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200222125558-5a598a2470a0.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200226121028-0de0cce0169b.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200226121028-0de0cce0169b.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200520004742-59133d7f0dd7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200520004742-59133d7f0dd7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200625001655-4c5254603344.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200625001655-4c5254603344.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200707034311-ab3426394381.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20201021035429-f5854403a974.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201021035429-f5854403a974.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20201110031124-69a78807bb2b.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201110031124-69a78807bb2b.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210119194325-5f4716e94777.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210119194325-5f4716e94777.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210226172049-e18ecbb05110.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210226172049-e18ecbb05110.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210316092652-d523dce5a7f4.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210316092652-d523dce5a7f4.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210405180319-a5a99cb37ef4.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210405180319-a5a99cb37ef4.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210423184538-5f58ad60dda6.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210423184538-5f58ad60dda6.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210428140749-89ef3d95e781.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210428140749-89ef3d95e781.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210428140749-89ef3d95e781.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210428140749-89ef3d95e781.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20180821212333-d2e6202438be.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20180821212333-d2e6202438be.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20181017192945-9dcd33a902f4.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20181017192945-9dcd33a902f4.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20181203162652-d668ce993890.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20181203162652-d668ce993890.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20190226205417-e64efc72b421.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20190226205417-e64efc72b421.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20190604053449-0f29369cfe45.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20190604053449-0f29369cfe45.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20191202225959-858c2ad4c8b6.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20191202225959-858c2ad4c8b6.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20200107190931-bf48bf16ab8d.zip -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20200107190931-bf48bf16ab8d.zip mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20200107190931-bf48bf16ab8d.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20200107190931-bf48bf16ab8d.mod mirror://goproxy//golang.org/x/perf/@v/v0.0.0-20180704124530-6e6d33e29852.mod -> golang.org%2Fx%2Fperf%2F@v%2Fv0.0.0-20180704124530-6e6d33e29852.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20180314180146-1d60e4601c6f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20180314180146-1d60e4601c6f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181108010431-42b317875d0f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181108010431-42b317875d0f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181221193216-37e7f081c4d4.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181221193216-37e7f081c4d4.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190227155943-e225da77a7e6.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190227155943-e225da77a7e6.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190911185100-cd5d95a43a6e.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190911185100-cd5d95a43a6e.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20200317015054-43a5402ce75a.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20200317015054-43a5402ce75a.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20201020160332-67f06af15bc9.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20201020160332-67f06af15bc9.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20201207232520-09787c993a3a.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20201207232520-09787c993a3a.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20210220032951-036812b2e83c.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20210220032951-036812b2e83c.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20210220032951-036812b2e83c.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20210220032951-036812b2e83c.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180823144017-11551d06cbcc.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180823144017-11551d06cbcc.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180830151530-49385e6e1522.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180830151530-49385e6e1522.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180905080454-ebe1bf3edb33.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180905080454-ebe1bf3edb33.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180909124046-d0be0721c37e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180909124046-d0be0721c37e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181026203630-95b1ffbd15a5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181026203630-95b1ffbd15a5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181029174526-d69651ed3497.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181029174526-d69651ed3497.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181107165924-66b7b1311ac8.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181107165924-66b7b1311ac8.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181116152217-5ac8a444bdc5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181116152217-5ac8a444bdc5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181122145206-62eef0e2fa9b.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181122145206-62eef0e2fa9b.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181205085412-a5c9d58dba9a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181205085412-a5c9d58dba9a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190219092855-153ac476189d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190219092855-153ac476189d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190222072716-a9d3bda3a223.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190222072716-a9d3bda3a223.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190228124157-a34e9553db1e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190228124157-a34e9553db1e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190302025703-b6889370fb10.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190302025703-b6889370fb10.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190312061237-fead79001313.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190312061237-fead79001313.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190316082340-a2f829d7f35f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190316082340-a2f829d7f35f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190405154228-4b34438f7a67.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190405154228-4b34438f7a67.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190422165155-953cdadca894.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190422165155-953cdadca894.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190502145724-3ef323f4f1fd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190502145724-3ef323f4f1fd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190507160741-ecd444e8653b.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190507160741-ecd444e8653b.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190524122548-abf6ff778158.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190524122548-abf6ff778158.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190524152521-dbbf3f1254d4.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190524152521-dbbf3f1254d4.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190526052359-791d8a0f4d09.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190526052359-791d8a0f4d09.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190606165138-5da285871e9c.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190606165138-5da285871e9c.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190610200419-93c9922d18ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190610200419-93c9922d18ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190624142023-c5567b49c5d0.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190624142023-c5567b49c5d0.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190626221950-04f50cda93cb.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626221950-04f50cda93cb.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190726091711-fc99dfbffb4e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190726091711-fc99dfbffb4e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190826190057-c7b8b68b1456.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190826190057-c7b8b68b1456.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190904154756-749cb33beabd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190904154756-749cb33beabd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190924154521-2837fb4f24fe.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190924154521-2837fb4f24fe.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191005200804-aed5e4c7ecf9.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191005200804-aed5e4c7ecf9.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191026070338-33540a1f6037.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191120155948-bd437916bb0e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191120155948-bd437916bb0e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191204072324-ce4227a45e2e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191204072324-ce4227a45e2e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191210023423-ac6580df4449.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191210023423-ac6580df4449.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191220142924-d4481acd189f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191220142924-d4481acd189f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191228213918-04cbcbbfeed8.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191228213918-04cbcbbfeed8.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200106162015-b016eb3dc98e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200106162015-b016eb3dc98e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200202164722-d101bd2416d5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200202164722-d101bd2416d5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200212091648-12a6c2dcc1e4.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200212091648-12a6c2dcc1e4.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200223170610-d5e6a3e2c0ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200223170610-d5e6a3e2c0ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200323222414-85ca7c5b95cd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200420163511-1957bb5e6d1f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200420163511-1957bb5e6d1f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200519105757-fe76b779f299.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200519105757-fe76b779f299.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200523222454-059865788121.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200523222454-059865788121.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200602225109-6fdc65e7d980.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200602225109-6fdc65e7d980.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200615200032-f1bc736245b1.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200615200032-f1bc736245b1.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200625212154-ddb9806d33ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200625212154-ddb9806d33ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200930185726-fdedc70b468f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200930185726-fdedc70b468f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20201119102817-f84b799fce68.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201119102817-f84b799fce68.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20201214210602-f9fddec55a1e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201214210602-f9fddec55a1e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210112080510-489259a85091.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210112080510-489259a85091.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210124154548-22da62e12c0c.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210124154548-22da62e12c0c.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210303074136-134d130e1a04.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210303074136-134d130e1a04.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210303074136-134d130e1a04.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210303074136-134d130e1a04.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210309074719-68d13333faf2.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210309074719-68d13333faf2.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210315160823-c6e025ad8005.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210315160823-c6e025ad8005.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210317225723-c4fcb01b228e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210317225723-c4fcb01b228e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210330210617-4fbd30eecc44.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210330210617-4fbd30eecc44.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210423082822-04245dca01da.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210423082822-04245dca01da.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210426080607-c94f62235c83.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210426080607-c94f62235c83.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210510120138-977fb7262007.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210510120138-977fb7262007.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210511113859-b0526f3d8744.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210511113859-b0526f3d8744.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210511113859-b0526f3d8744.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210511113859-b0526f3d8744.mod mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201117132131-f5c789dd3221.mod -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201117132131-f5c789dd3221.mod mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201126162022-7de9c90e9dd1.zip -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201126162022-7de9c90e9dd1.zip mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201126162022-7de9c90e9dd1.mod -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201126162022-7de9c90e9dd1.mod mirror://goproxy//golang.org/x/text/@v/v0.0.0-20170915032832-14c0d48ead0c.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.0.0-20170915032832-14c0d48ead0c.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/text/@v/v0.3.1-0.20180807135948-17ff2d5776d2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.1-0.20180807135948-17ff2d5776d2.mod mirror://goproxy//golang.org/x/text/@v/v0.3.2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.mod mirror://goproxy//golang.org/x/text/@v/v0.3.3.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.mod mirror://goproxy//golang.org/x/text/@v/v0.3.6.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.6.zip mirror://goproxy//golang.org/x/text/@v/v0.3.6.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.6.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20180412165947-fbb02b2291d2.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20180412165947-fbb02b2291d2.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20181108054448-85acf8d2951c.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20181108054448-85acf8d2951c.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20190308202827-9d24e82272b4.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20190308202827-9d24e82272b4.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20191024005414-555d28b269f0.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20191024005414-555d28b269f0.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180221164845-07fd8470d635.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180221164845-07fd8470d635.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180828015842-6cd1fcedba52.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180828015842-6cd1fcedba52.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181030000716-a0a13e073c7b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181030000716-a0a13e073c7b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181030221726-6c7e314b6563.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181030221726-6c7e314b6563.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181130052023-1c3d964395ce.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181130052023-1c3d964395ce.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190114222345-bf090417da8b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190114222345-bf090417da8b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190226205152-f727befe758c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190226205152-f727befe758c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190311212946-11955173bddd.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190311212946-11955173bddd.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190312151545-0bb0c0a6e846.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190312151545-0bb0c0a6e846.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190312170243-e65039ee4138.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190312170243-e65039ee4138.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190328211700-ab21143f2384.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190328211700-ab21143f2384.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190425150028-36563e24a262.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190425150028-36563e24a262.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190506145303-2d16b83fe98c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190506145303-2d16b83fe98c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190524140312-2c0ae7006135.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190524140312-2c0ae7006135.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190606124116-d0a3d012864b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190606124116-d0a3d012864b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190621195816-6e04913cbbac.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190621195816-6e04913cbbac.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190628153133-6cdbf07be9d0.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190628153133-6cdbf07be9d0.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190816200558-6889da9d5479.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190816200558-6889da9d5479.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190911174233-4f2ddba30aff.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190911174233-4f2ddba30aff.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191012152004-8de300cfc20a.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191012152004-8de300cfc20a.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191029041327-9cc4af7d6b2c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191029041327-9cc4af7d6b2c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191029190741-b9c20aec41a5.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191029190741-b9c20aec41a5.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191030062658-86caa796c7ab.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191030062658-86caa796c7ab.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191108193012-7d206e10da11.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191108193012-7d206e10da11.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191113191852-77e3bb0ad9e7.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191113191852-77e3bb0ad9e7.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191114200427-caa0b0f7d508.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191114200427-caa0b0f7d508.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191115202509-3a792d9c32b2.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191115202509-3a792d9c32b2.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191119224855-298f0cb1881e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191119224855-298f0cb1881e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191125144606-a911d9008d1f.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191125144606-a911d9008d1f.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216052735-49a3e744a425.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216052735-49a3e744a425.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216173652-a0e659d51361.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216173652-a0e659d51361.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191227053925-7b8e75db28f4.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191227053925-7b8e75db28f4.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200103221440-774c71fcf114.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200103221440-774c71fcf114.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200130002326-2f3ba24bd6e7.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200130002326-2f3ba24bd6e7.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200207183749-b753a1ba74fa.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200207183749-b753a1ba74fa.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200212150539-ea181f53ac56.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200212150539-ea181f53ac56.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200619180055-7c47624df98f.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200619180055-7c47624df98f.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20201224043029-2b0845dc783e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20201224043029-2b0845dc783e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20210106214847-113979e3529a.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20210106214847-113979e3529a.mod mirror://goproxy//golang.org/x/tools/@v/v0.1.1-0.20210225150353-54dc8c5edb56.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.1.1-0.20210225150353-54dc8c5edb56.mod mirror://goproxy//golang.org/x/tools/@v/v0.1.1.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.1.1.zip mirror://goproxy//golang.org/x/tools/@v/v0.1.1.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.1.1.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20190717185122-a985d3407aa7.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190717185122-a985d3407aa7.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191011141410-1b5146add898.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191011141410-1b5146add898.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20200804184101-5ec99f83aff1.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20200804184101-5ec99f83aff1.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20200804184101-5ec99f83aff1.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20200804184101-5ec99f83aff1.mod mirror://goproxy//google.golang.org/api/@v/v0.0.0-20180910000450-7ca32eb868bf.mod -> google.golang.org%2Fapi%2F@v%2Fv0.0.0-20180910000450-7ca32eb868bf.mod mirror://goproxy//google.golang.org/api/@v/v0.0.0-20181030000543-1d582fd0359e.mod -> google.golang.org%2Fapi%2F@v%2Fv0.0.0-20181030000543-1d582fd0359e.mod mirror://goproxy//google.golang.org/api/@v/v0.1.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.1.0.mod mirror://goproxy//google.golang.org/api/@v/v0.3.1.mod -> google.golang.org%2Fapi%2F@v%2Fv0.3.1.mod mirror://goproxy//google.golang.org/api/@v/v0.4.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.4.0.mod mirror://goproxy//google.golang.org/api/@v/v0.7.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.7.0.mod mirror://goproxy//google.golang.org/api/@v/v0.8.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.8.0.mod mirror://goproxy//google.golang.org/api/@v/v0.9.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.9.0.mod mirror://goproxy//google.golang.org/api/@v/v0.13.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.13.0.mod mirror://goproxy//google.golang.org/api/@v/v0.14.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.14.0.mod mirror://goproxy//google.golang.org/api/@v/v0.15.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.15.0.mod mirror://goproxy//google.golang.org/api/@v/v0.17.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.17.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.1.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.1.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.2.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.2.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.3.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.3.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.4.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.4.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.5.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.5.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.6.1.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.6.1.mod mirror://goproxy//google.golang.org/appengine/@v/v1.6.5.zip -> google.golang.org%2Fappengine%2F@v%2Fv1.6.5.zip mirror://goproxy//google.golang.org/appengine/@v/v1.6.5.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.6.5.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20180817151627-c66870c02cf8.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180817151627-c66870c02cf8.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20180831171423-11092d34479b.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180831171423-11092d34479b.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20181029155118-b69ba1387ce2.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20181029155118-b69ba1387ce2.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20181202183823-bd91e49a0898.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20181202183823-bd91e49a0898.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190306203927-b5d61aea6440.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190306203927-b5d61aea6440.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190307195333-5fe7a883aa19.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190307195333-5fe7a883aa19.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190418145605-e7d98fc518a7.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190418145605-e7d98fc518a7.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190425155659-357c62f0e4bb.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190425155659-357c62f0e4bb.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190502173448-54afdca5d873.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190502173448-54afdca5d873.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190530194941-fb225487d101.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190530194941-fb225487d101.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190801165951-fa694d86fc64.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190801165951-fa694d86fc64.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190819201941-24fa4b261c55.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190819201941-24fa4b261c55.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190911173649-1774047e7e51.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190911173649-1774047e7e51.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191108220845-16a3f7862a1a.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191108220845-16a3f7862a1a.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191115194625-c23dd37a84c9.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191115194625-c23dd37a84c9.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191216164720-4f79533eabd1.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191216164720-4f79533eabd1.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191230161307-f3c370f40bfb.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191230161307-f3c370f40bfb.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200212174721-66ed5ce911ce.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200212174721-66ed5ce911ce.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200526211855-cb27e3aa2013.zip -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200526211855-cb27e3aa2013.zip mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200526211855-cb27e3aa2013.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200526211855-cb27e3aa2013.mod mirror://goproxy//google.golang.org/grpc/@v/v1.14.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.14.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.16.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.16.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.17.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.17.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.19.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.19.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.20.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.20.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.20.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.20.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.21.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.21.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.21.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.21.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.22.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.22.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.23.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.23.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.23.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.23.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.25.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.25.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.26.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.26.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.27.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.27.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.27.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.27.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.28.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.28.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.31.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.31.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.33.2.zip -> google.golang.org%2Fgrpc%2F@v%2Fv1.33.2.zip mirror://goproxy//google.golang.org/grpc/@v/v1.33.2.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.33.2.mod mirror://goproxy//google.golang.org/protobuf/@v/v0.0.0-20200109180630-ec00e32a8dfd.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200109180630-ec00e32a8dfd.mod mirror://goproxy//google.golang.org/protobuf/@v/v0.0.0-20200221191635-4d8936d0db64.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200221191635-4d8936d0db64.mod mirror://goproxy//google.golang.org/protobuf/@v/v0.0.0-20200228230310-ab0ca4ff8a60.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200228230310-ab0ca4ff8a60.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.20.1-0.20200309200217-e05f789c0967.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.20.1-0.20200309200217-e05f789c0967.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.21.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.21.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.22.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.22.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.23.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.23.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.23.1-0.20200526195155-81db48ad09cc.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.23.1-0.20200526195155-81db48ad09cc.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.24.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.24.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.25.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.25.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.26.0-rc.1.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.26.0-rc.1.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.26.0.zip -> google.golang.org%2Fprotobuf%2F@v%2Fv1.26.0.zip mirror://goproxy//google.golang.org/protobuf/@v/v1.26.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.26.0.mod mirror://goproxy//gopkg.in/alecthomas/kingpin.v2/@v/v2.2.6.zip -> gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.zip mirror://goproxy//gopkg.in/alecthomas/kingpin.v2/@v/v2.2.6.mod -> gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20180628173108-788fd7840127.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20180628173108-788fd7840127.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20201130134442-10cb98267c6c.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20201130134442-10cb98267c6c.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20201130134442-10cb98267c6c.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20201130134442-10cb98267c6c.mod mirror://goproxy//gopkg.in/cheggaaa/pb.v1/@v/v1.0.25.mod -> gopkg.in%2Fcheggaaa%2Fpb.v1%2F@v%2Fv1.0.25.mod mirror://goproxy//gopkg.in/errgo.v2/@v/v2.1.0.mod -> gopkg.in%2Ferrgo.v2%2F@v%2Fv2.1.0.mod mirror://goproxy//gopkg.in/fsnotify.v1/@v/v1.4.7.mod -> gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.mod mirror://goproxy//gopkg.in/gcfg.v1/@v/v1.2.3.mod -> gopkg.in%2Fgcfg.v1%2F@v%2Fv1.2.3.mod mirror://goproxy//gopkg.in/inf.v0/@v/v0.9.1.mod -> gopkg.in%2Finf.v0%2F@v%2Fv0.9.1.mod mirror://goproxy//gopkg.in/resty.v1/@v/v1.12.0.mod -> gopkg.in%2Fresty.v1%2F@v%2Fv1.12.0.mod mirror://goproxy//gopkg.in/src-d/go-cli.v0/@v/v0.0.0-20181105080154-d492247bbc0d.mod -> gopkg.in%2Fsrc-d%2Fgo-cli.v0%2F@v%2Fv0.0.0-20181105080154-d492247bbc0d.mod mirror://goproxy//gopkg.in/src-d/go-log.v1/@v/v1.0.1.mod -> gopkg.in%2Fsrc-d%2Fgo-log.v1%2F@v%2Fv1.0.1.mod mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.zip -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.zip mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.mod -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.mod mirror://goproxy//gopkg.in/warnings.v0/@v/v0.1.2.mod -> gopkg.in%2Fwarnings.v0%2F@v%2Fv0.1.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.0.0-20170812160011-eb3733d160e7.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.0.0-20170812160011-eb3733d160e7.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.1.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.1.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.4.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.4.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.5.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.5.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.3.0.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.4.0.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.4.0.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.4.0.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.4.0.mod mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.zip -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.zip mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.mod -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.mod mirror://goproxy//grpc.go4.org/@v/v0.0.0-20170609214715-11d0a25b4919.mod -> grpc.go4.org%2F@v%2Fv0.0.0-20170609214715-11d0a25b4919.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20180728063816-88497007e858.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20180728063816-88497007e858.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190102054323-c2f93a96b099.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190102054323-c2f93a96b099.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190106161140-3f1c8253044a.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190106161140-3f1c8253044a.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190418001031-e561f6794a2a.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190418001031-e561f6794a2a.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190523083050-ea95bdfd59fc.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190523083050-ea95bdfd59fc.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.1-2019.2.3.zip -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.zip mirror://goproxy//honnef.co/go/tools/@v/v0.0.1-2019.2.3.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.mod mirror://goproxy//rsc.io/binaryregexp/@v/v0.2.0.mod -> rsc.io%2Fbinaryregexp%2F@v%2Fv0.2.0.mod mirror://goproxy//rsc.io/quote/v3/@v/v3.1.0.mod -> rsc.io%2Fquote%2Fv3%2F@v%2Fv3.1.0.mod mirror://goproxy//rsc.io/sampler/@v/v1.3.0.mod -> rsc.io%2Fsampler%2F@v%2Fv1.3.0.mod mirror://goproxy//sigs.k8s.io/yaml/@v/v1.1.0.mod -> sigs.k8s.io%2Fyaml%2F@v%2Fv1.1.0.mod mirror://goproxy//sourcegraph.com/sourcegraph/appdash/@v/v0.0.0-20190731080439-ebfcffb1b5c0.mod -> sourcegraph.com%2Fsourcegraph%2Fappdash%2F@v%2Fv0.0.0-20190731080439-ebfcffb1b5c0.mod mirror://goproxy//sourcegraph.com/sourcegraph/go-diff/@v/v0.5.0.mod -> sourcegraph.com%2Fsourcegraph%2Fgo-diff%2F@v%2Fv0.5.0.mod mirror://goproxy//sourcegraph.com/sqs/pbtypes/@v/v0.0.0-20180604144634-d3ebe8f20ae4.mod -> sourcegraph.com%2Fsqs%2Fpbtypes%2F@v%2Fv0.0.0-20180604144634-d3ebe8f20ae4.mod -_eclasses_=bash-completion-r1 d3a60385655d9b402be765a6de333245 go-module 82631624a3653e595cf9c18164a8c500 multilib 8a0248f83ae77f945d376ff4a7953257 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=2dbe7fb596695b3a6756845ea477f46d diff --git a/metadata/md5-cache/sci-chemistry/MDAnalysis-2.0.0 b/metadata/md5-cache/sci-chemistry/MDAnalysis-2.0.0 new file mode 100644 index 000000000000..b94e979d14d6 --- /dev/null +++ b/metadata/md5-cache/sci-chemistry/MDAnalysis-2.0.0 @@ -0,0 +1,15 @@ +BDEPEND=>=dev-python/numpy-1.16.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/scipy-1.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=sci-biology/biopython-1.71[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/networkx-1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/GridDataFormats-0.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/joblib-0.12[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/matplotlib-1.5.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/mmtf-python-1.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tqdm-4.43.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/gsd-1.9.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/threadpoolctl[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/numpy-1.16.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/scipy-1.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=sci-biology/biopython-1.71[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/networkx-1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/GridDataFormats-0.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/joblib-0.12[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/matplotlib-1.5.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/mmtf-python-1.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tqdm-4.43.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/gsd-1.9.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/threadpoolctl[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/nose-1.3.7-r4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A python library to analyze and manipulate molecular dynamics trajectories +EAPI=8 +HOMEPAGE=https://www.mdanalysis.org +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=>=dev-python/numpy-1.16.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/scipy-1.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=sci-biology/biopython-1.71[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/networkx-1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/GridDataFormats-0.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/joblib-0.12[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/matplotlib-1.5.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/mmtf-python-1.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tqdm-4.43.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/gsd-1.9.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/threadpoolctl[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=test !test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/M/MDAnalysis/MDAnalysis-2.0.0.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=ee1c9d9dd59c78af672cdcd2522e7f83 diff --git a/metadata/md5-cache/sci-chemistry/Manifest.gz b/metadata/md5-cache/sci-chemistry/Manifest.gz index e60246a74ad1..a9b511ec8ee6 100644 Binary files a/metadata/md5-cache/sci-chemistry/Manifest.gz and b/metadata/md5-cache/sci-chemistry/Manifest.gz differ diff --git a/metadata/md5-cache/sci-chemistry/mdtraj-1.9.7 b/metadata/md5-cache/sci-chemistry/mdtraj-1.9.7 new file mode 100644 index 000000000000..7a8bf40497c8 --- /dev/null +++ b/metadata/md5-cache/sci-chemistry/mdtraj-1.9.7 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/astunparse[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/astor[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pandas[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytables[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyparsing[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/networkx[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/astunparse[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/astor[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pandas[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytables[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyparsing[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/networkx[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/jupyter_client[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/nbformat[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/scikit-learn[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) +DESCRIPTION=Read, write and analyze MD trajectories with only a few lines of Python code +EAPI=8 +HOMEPAGE=http://mdtraj.org +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=dev-python/astunparse[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/astor[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pandas[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytables[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyparsing[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/networkx[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/m/mdtraj/mdtraj-1.9.7.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=ac95eca6ed249047e20449edf5336ffd diff --git a/metadata/md5-cache/sci-electronics/Manifest.gz b/metadata/md5-cache/sci-electronics/Manifest.gz index 422f4f4e5201..eb42245d2447 100644 Binary files a/metadata/md5-cache/sci-electronics/Manifest.gz and b/metadata/md5-cache/sci-electronics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-electronics/xnec2c-4.3.4 b/metadata/md5-cache/sci-electronics/xnec2c-4.3.4 new file mode 100644 index 000000000000..06a0d90da261 --- /dev/null +++ b/metadata/md5-cache/sci-electronics/xnec2c-4.3.4 @@ -0,0 +1,14 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=install postinst postrm prepare +DEPEND=dev-libs/glib:2 x11-libs/gtk+:3 sys-devel/gettext +DESCRIPTION=A GTK+ graphical interactive version of nec2c +EAPI=8 +HOMEPAGE=https://www.xnec2c.org +IUSE=doc examples +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/glib:2 x11-libs/gtk+:3 +SLOT=0 +SRC_URI=https://www.xnec2c.org/releases/xnec2c-v4.3.4.tar.gz +_eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 +_md5_=86ddf3eb1a11a9e01b164dd8b1b80444 diff --git a/metadata/md5-cache/sci-geosciences/Manifest.gz b/metadata/md5-cache/sci-geosciences/Manifest.gz index 124d0ae6bff0..a36ccccfca40 100644 Binary files a/metadata/md5-cache/sci-geosciences/Manifest.gz and b/metadata/md5-cache/sci-geosciences/Manifest.gz differ diff --git a/metadata/md5-cache/sci-geosciences/grass-7.8.5 b/metadata/md5-cache/sci-geosciences/grass-7.8.5-r1 similarity index 60% rename from metadata/md5-cache/sci-geosciences/grass-7.8.5 rename to metadata/md5-cache/sci-geosciences/grass-7.8.5-r1 index d8687c93cc1b..c0fa321ad9b6 100644 --- a/metadata/md5-cache/sci-geosciences/grass-7.8.5 +++ b/metadata/md5-cache/sci-geosciences/grass-7.8.5-r1 @@ -1,15 +1,15 @@ BDEPEND=sys-devel/bison sys-devel/flex sys-devel/gettext virtual/pkgconfig X? ( dev-lang/swig ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup -DEPEND=python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=app-admin/eselect-1.2 python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) sci-libs/gdal sys-libs/gdbm sys-libs/ncurses:0= sci-libs/proj sci-libs/xdrfile sys-libs/zlib blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:0= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:0= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X,opengl?] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd ) X? ( x11-base/xorg-proto ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DEPEND=python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=app-admin/eselect-1.2 python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:0= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:0= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:0= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X,opengl?] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) X? ( x11-base/xorg-proto ) dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=A free GIS with raster and vector functionality, as well as 3D vizualization EAPI=7 HOMEPAGE=https://grass.osgeo.org/ IUSE=blas cxx fftw geos lapack liblas mysql netcdf nls odbc opencl opengl openmp png postgres readline sqlite threads tiff truetype X zstd python_single_target_python3_8 python_single_target_python3_9 KEYWORDS=amd64 ~ppc x86 LICENSE=GPL-2 -RDEPEND=python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=app-admin/eselect-1.2 python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) sci-libs/gdal sys-libs/gdbm sys-libs/ncurses:0= sci-libs/proj sci-libs/xdrfile sys-libs/zlib blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:0= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:0= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X,opengl?] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd ) +RDEPEND=python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=app-admin/eselect-1.2 python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:0= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:0= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:0= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X,opengl?] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) opengl? ( X ) SLOT=0/7.8.0 SRC_URI=https://grass.osgeo.org/grass78/source/grass-7.8.5.tar.gz _eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 wxwidgets 7e8a20d3bacea0e3ecf6e96fb72180aa xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=0ee00b328ddaebcb3778f1f566eb357d +_md5_=b1a907890098fda5e93ba6422c16e984 diff --git a/metadata/md5-cache/sci-geosciences/grass-7.8.6 b/metadata/md5-cache/sci-geosciences/grass-7.8.6-r1 similarity index 60% rename from metadata/md5-cache/sci-geosciences/grass-7.8.6 rename to metadata/md5-cache/sci-geosciences/grass-7.8.6-r1 index 1d2a982cf721..daabc8d2efd9 100644 --- a/metadata/md5-cache/sci-geosciences/grass-7.8.6 +++ b/metadata/md5-cache/sci-geosciences/grass-7.8.6-r1 @@ -1,15 +1,15 @@ BDEPEND=sys-devel/bison sys-devel/flex sys-devel/gettext virtual/pkgconfig X? ( dev-lang/swig ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup -DEPEND=python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=app-admin/eselect-1.2 python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) sci-libs/gdal sys-libs/gdbm sys-libs/ncurses:0= sci-libs/proj sci-libs/xdrfile sys-libs/zlib blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:0= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:0= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X,opengl?] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd ) X? ( x11-base/xorg-proto ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DEPEND=python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=app-admin/eselect-1.2 python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:0= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:0= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:0= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X,opengl?] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd ) X? ( x11-base/xorg-proto ) dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=A free GIS with raster and vector functionality, as well as 3D vizualization EAPI=7 HOMEPAGE=https://grass.osgeo.org/ IUSE=blas cxx fftw geos lapack liblas mysql netcdf nls odbc opencl opengl openmp png postgres readline sqlite threads tiff truetype X zstd python_single_target_python3_8 python_single_target_python3_9 KEYWORDS=amd64 ~ppc x86 LICENSE=GPL-2 -RDEPEND=python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=app-admin/eselect-1.2 python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) sci-libs/gdal sys-libs/gdbm sys-libs/ncurses:0= sci-libs/proj sci-libs/xdrfile sys-libs/zlib blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:0= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:0= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X,opengl?] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd ) +RDEPEND=python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=app-admin/eselect-1.2 python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:0= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:0= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:0= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X,opengl?] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd ) REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) opengl? ( X ) SLOT=0/7.8.0 SRC_URI=https://grass.osgeo.org/grass78/source/grass-7.8.6.tar.gz _eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 wxwidgets 7e8a20d3bacea0e3ecf6e96fb72180aa xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=00fc5a2e0bd5e3e36d661b8b90991775 +_md5_=7cccb0a07642e8984fc3827c81945b20 diff --git a/metadata/md5-cache/sci-geosciences/grass-9999 b/metadata/md5-cache/sci-geosciences/grass-9999 index 8f2778bc14f7..e61b8f6be4a5 100644 --- a/metadata/md5-cache/sci-geosciences/grass-9999 +++ b/metadata/md5-cache/sci-geosciences/grass-9999 @@ -1,14 +1,14 @@ BDEPEND=sys-devel/bison sys-devel/flex sys-devel/gettext virtual/pkgconfig X? ( dev-lang/swig ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=app-admin/eselect-1.2 python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) sci-libs/gdal sys-libs/gdbm sys-libs/ncurses:0= sci-libs/proj sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) png? ( media-libs/libpng:0= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:0= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:0= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X,opengl] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd ) X? ( x11-base/xorg-proto ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DEPEND=python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=app-admin/eselect-1.2 python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:0= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) png? ( media-libs/libpng:0= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:0= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:0= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X,opengl] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd ) X? ( x11-base/xorg-proto ) dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=A free GIS with raster and vector functionality, as well as 3D vizualization EAPI=7 HOMEPAGE=https://grass.osgeo.org/ IUSE=blas cxx fftw geos lapack liblas mysql netcdf nls odbc opencl openmp png postgres readline sqlite threads tiff truetype X zstd python_single_target_python3_8 python_single_target_python3_9 LICENSE=GPL-2 PROPERTIES=live -RDEPEND=python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=app-admin/eselect-1.2 python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) sci-libs/gdal sys-libs/gdbm sys-libs/ncurses:0= sci-libs/proj sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) png? ( media-libs/libpng:0= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:0= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:0= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X,opengl] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd ) +RDEPEND=python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=app-admin/eselect-1.2 python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:0= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) png? ( media-libs/libpng:0= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:0= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:0= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X,opengl] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd ) REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) SLOT=0/7.9 _eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 wxwidgets 7e8a20d3bacea0e3ecf6e96fb72180aa xdg 6024fbc93167fad782e2032933654857 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=913ccbca087acbac278296f9d8fd04b3 +_md5_=78c35e99ca7fc41d18e12947683054d5 diff --git a/metadata/md5-cache/sci-geosciences/gshhs-1.13 b/metadata/md5-cache/sci-geosciences/gshhs-1.13-r1 similarity index 66% rename from metadata/md5-cache/sci-geosciences/gshhs-1.13 rename to metadata/md5-cache/sci-geosciences/gshhs-1.13-r1 index 748ee0fdd55c..4c06565a9c35 100644 --- a/metadata/md5-cache/sci-geosciences/gshhs-1.13 +++ b/metadata/md5-cache/sci-geosciences/gshhs-1.13-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile install -DEPEND=sci-libs/netcdf sci-libs/gdal data? ( sci-geosciences/gshhs-data ) virtual/pkgconfig app-arch/unzip +DEPEND=sci-libs/netcdf:= sci-libs/gdal:= data? ( sci-geosciences/gshhs-data ) DESCRIPTION=Global Self-consistent, Hierarchical, High-resolution Shoreline programs EAPI=5 HOMEPAGE=https://www.ngdc.noaa.gov/mgg/shorelines/gshhs.html IUSE=+data KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=sci-libs/netcdf sci-libs/gdal data? ( sci-geosciences/gshhs-data ) +RDEPEND=sci-libs/netcdf:= sci-libs/gdal:= data? ( sci-geosciences/gshhs-data ) SLOT=0 SRC_URI=ftp://ftp.soest.hawaii.edu/pwessel/gshhs/gshhs_1.13_src.zip _eclasses_=multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=c7553b20fda19a4f688bfbd8a2e58fe4 +_md5_=2fce1adfe452c5b2626b1685e843d819 diff --git a/metadata/md5-cache/sci-libs/Manifest.gz b/metadata/md5-cache/sci-libs/Manifest.gz index 980a5e3b552a..62b8d6c595fe 100644 Binary files a/metadata/md5-cache/sci-libs/Manifest.gz and b/metadata/md5-cache/sci-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sci-libs/cartopy-0.20.1-r1 b/metadata/md5-cache/sci-libs/cartopy-0.20.1-r1 new file mode 100644 index 000000000000..47747d728c91 --- /dev/null +++ b/metadata/md5-cache/sci-libs/cartopy-0.20.1-r1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/geos dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/pyshp[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/shapely[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/matplotlib[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pillow[jpeg,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/gdal[python,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyproj[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=sci-libs/proj-8 >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/geos dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/pyshp[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/shapely[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/matplotlib[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pillow[jpeg,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/gdal[python,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyproj[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=sci-libs/proj-8 dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/setuptools_scm_git_archive[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/cython[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/filelock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/flufl-lock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) +DESCRIPTION=Python package for geospatial data processing and analysis +EAPI=8 +HOMEPAGE=https://scitools.org.uk/cartopy +IUSE=test test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 test +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-3 +RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/geos dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/pyshp[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/shapely[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/matplotlib[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pillow[jpeg,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-libs/gdal[python,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyproj[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=sci-libs/proj-8 python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) || ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/SciTools/cartopy/archive/v0.20.1.tar.gz -> cartopy-0.20.1.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx fa024aa649b6bd544144bf94893d402c +_md5_=4facef8843bb5b8faec93b5ba8126bce diff --git a/metadata/md5-cache/sci-libs/exodusii-6.09 b/metadata/md5-cache/sci-libs/exodusii-6.09-r1 similarity index 82% rename from metadata/md5-cache/sci-libs/exodusii-6.09 rename to metadata/md5-cache/sci-libs/exodusii-6.09-r1 index 14ea4e63a8a8..db058ecfd001 100644 --- a/metadata/md5-cache/sci-libs/exodusii-6.09 +++ b/metadata/md5-cache/sci-libs/exodusii-6.09-r1 @@ -1,15 +1,15 @@ -BDEPEND=sys-devel/make >=dev-util/cmake-3.20.5 test? ( virtual/fortran ) +BDEPEND=test? ( app-shells/tcsh ) sys-devel/make >=dev-util/cmake-3.20.5 test? ( virtual/fortran ) DEFINED_PHASES=compile configure install prepare setup test -DEPEND=sci-libs/netcdf[hdf5] test? ( app-shells/tcsh ) +DEPEND=sci-libs/netcdf:=[hdf5] DESCRIPTION=Model developed to store and retrieve transient data for finite element analyses EAPI=7 HOMEPAGE=https://github.com/certik/exodus IUSE=static-libs test KEYWORDS=amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=BSD -RDEPEND=sci-libs/netcdf[hdf5] +RDEPEND=sci-libs/netcdf:=[hdf5] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://dev.gentoo.org/~asturm/distfiles/exodus-6.09.tar.gz _eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 fortran-2 7e39eb204d37699d5f1eaf9f4d61888a multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=ee7cba877b48eb5dcc9cbee3047b107a +_md5_=cad54e5493ef12f61137fb5c9f361204 diff --git a/metadata/md5-cache/sci-libs/netcdf-4.8.1 b/metadata/md5-cache/sci-libs/netcdf-4.8.1-r1 similarity index 96% rename from metadata/md5-cache/sci-libs/netcdf-4.8.1 rename to metadata/md5-cache/sci-libs/netcdf-4.8.1-r1 index 9b4f78663802..3ec0b34d6e65 100644 --- a/metadata/md5-cache/sci-libs/netcdf-4.8.1 +++ b/metadata/md5-cache/sci-libs/netcdf-4.8.1-r1 @@ -10,7 +10,7 @@ LICENSE=UCAR-Unidata RDEPEND=dev-libs/libxml2 dap? ( net-misc/curl:0= ) hdf? ( sci-libs/hdf:0= sci-libs/hdf5:0= virtual/jpeg ) hdf5? ( sci-libs/hdf5:0=[hl(+),mpi=,szip=,zlib] ) REQUIRED_USE=test? ( tools ) szip? ( hdf5 ) mpi? ( hdf5 ) RESTRICT=!test? ( test ) -SLOT=0/18 +SLOT=0/19 SRC_URI=https://github.com/Unidata/netcdf-c/archive/v4.8.1.tar.gz -> netcdf-4.8.1.tar.gz _eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=6013f0d74f6e74f2ccd1f53a33343ecb +_md5_=90610a81b67f279fd2499c4e9ca79d90 diff --git a/metadata/md5-cache/sci-libs/trilinos-13.0.1-r1 b/metadata/md5-cache/sci-libs/trilinos-13.0.1-r1 deleted file mode 100644 index 2fd9b7aa8406..000000000000 --- a/metadata/md5-cache/sci-libs/trilinos-13.0.1-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=sys-devel/make >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare test -DEPEND=!dev-cpp/kokkos dev-libs/boost:= sys-libs/binutils-libs virtual/blas virtual/lapack virtual/mpi adolc? ( sci-libs/adolc ) arprec? ( sci-libs/arprec ) clp? ( sci-libs/coinor-clp ) cuda? ( >=dev-util/nvidia-cuda-toolkit-3.2 ) eigen? ( dev-cpp/eigen:3 ) glpk? ( sci-mathematics/glpk ) gtest? ( dev-cpp/gtest ) hdf5? ( sci-libs/hdf5[mpi] ) hypre? ( sci-libs/hypre ) hwloc? ( sys-apps/hwloc:= ) matio? ( sci-libs/matio ) mkl? ( sci-libs/mkl ) metis? ( sci-libs/metis ) mumps? ( sci-libs/mumps ) netcdf? ( sci-libs/netcdf ) petsc? ( sci-mathematics/petsc ) qd? ( sci-libs/qd ) scalapack? ( sci-libs/scalapack ) scotch? ( sci-libs/scotch ) sparse? ( sci-libs/cxsparse sci-libs/umfpack ) superlu? ( sci-libs/superlu ) taucs? ( sci-libs/taucs ) tbb? ( dev-cpp/tbb:= ) tvmet? ( dev-libs/tvmet ) yaml? ( dev-cpp/yaml-cpp ) zlib? ( sys-libs/zlib ) X? ( x11-libs/libX11 ) virtual/pkgconfig -DESCRIPTION=Scientific library collection for large scale problems -EAPI=7 -HOMEPAGE=http://trilinos.sandia.gov/ -IUSE=adolc arprec clp cuda eigen glpk gtest hdf5 hwloc hypre matio metis mkl mumps netcdf petsc qd scalapack scotch sparse superlu taucs tbb test threads tvmet yaml zlib X -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux -LICENSE=BSD LGPL-2.1 -RDEPEND=!dev-cpp/kokkos dev-libs/boost:= sys-libs/binutils-libs virtual/blas virtual/lapack virtual/mpi adolc? ( sci-libs/adolc ) arprec? ( sci-libs/arprec ) clp? ( sci-libs/coinor-clp ) cuda? ( >=dev-util/nvidia-cuda-toolkit-3.2 ) eigen? ( dev-cpp/eigen:3 ) glpk? ( sci-mathematics/glpk ) gtest? ( dev-cpp/gtest ) hdf5? ( sci-libs/hdf5[mpi] ) hypre? ( sci-libs/hypre ) hwloc? ( sys-apps/hwloc:= ) matio? ( sci-libs/matio ) mkl? ( sci-libs/mkl ) metis? ( sci-libs/metis ) mumps? ( sci-libs/mumps ) netcdf? ( sci-libs/netcdf ) petsc? ( sci-mathematics/petsc ) qd? ( sci-libs/qd ) scalapack? ( sci-libs/scalapack ) scotch? ( sci-libs/scotch ) sparse? ( sci-libs/cxsparse sci-libs/umfpack ) superlu? ( sci-libs/superlu ) taucs? ( sci-libs/taucs ) tbb? ( dev-cpp/tbb:= ) tvmet? ( dev-libs/tvmet ) yaml? ( dev-cpp/yaml-cpp ) zlib? ( sys-libs/zlib ) X? ( x11-libs/libX11 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/trilinos/Trilinos/archive/trilinos-release-13-0-1.tar.gz -> trilinos-13.0.1.tar.gz https://dev.gentoo.org/~tamiko/distfiles/trilinos-13.0.0-patches-r0.tar.xz -_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=d494096b930eb3387084994f4892b47b diff --git a/metadata/md5-cache/sci-libs/trilinos-13.0.1-r2 b/metadata/md5-cache/sci-libs/trilinos-13.0.1-r2 new file mode 100644 index 000000000000..61c5f32dab55 --- /dev/null +++ b/metadata/md5-cache/sci-libs/trilinos-13.0.1-r2 @@ -0,0 +1,15 @@ +BDEPEND=sys-devel/make >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=!dev-cpp/kokkos dev-libs/boost:= sys-libs/binutils-libs:= virtual/blas virtual/lapack virtual/mpi adolc? ( sci-libs/adolc ) arprec? ( sci-libs/arprec ) clp? ( sci-libs/coinor-clp ) cuda? ( >=dev-util/nvidia-cuda-toolkit-3.2 ) eigen? ( dev-cpp/eigen:3 ) glpk? ( sci-mathematics/glpk ) gtest? ( dev-cpp/gtest ) hdf5? ( sci-libs/hdf5:=[mpi] ) hypre? ( sci-libs/hypre:= ) hwloc? ( sys-apps/hwloc:= ) matio? ( sci-libs/matio ) mkl? ( sci-libs/mkl ) metis? ( sci-libs/metis ) mumps? ( sci-libs/mumps ) netcdf? ( sci-libs/netcdf:= ) petsc? ( sci-mathematics/petsc ) qd? ( sci-libs/qd ) scalapack? ( sci-libs/scalapack ) scotch? ( sci-libs/scotch:= ) sparse? ( sci-libs/cxsparse sci-libs/umfpack ) superlu? ( sci-libs/superlu:= ) taucs? ( sci-libs/taucs ) tbb? ( dev-cpp/tbb:= ) tvmet? ( dev-libs/tvmet ) yaml? ( dev-cpp/yaml-cpp:= ) zlib? ( sys-libs/zlib ) X? ( x11-libs/libX11 ) virtual/pkgconfig +DESCRIPTION=Scientific library collection for large scale problems +EAPI=7 +HOMEPAGE=http://trilinos.sandia.gov/ +IUSE=adolc arprec clp cuda eigen glpk gtest hdf5 hwloc hypre matio metis mkl mumps netcdf petsc qd scalapack scotch sparse superlu taucs tbb test threads tvmet yaml zlib X +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=BSD LGPL-2.1 +RDEPEND=!dev-cpp/kokkos dev-libs/boost:= sys-libs/binutils-libs:= virtual/blas virtual/lapack virtual/mpi adolc? ( sci-libs/adolc ) arprec? ( sci-libs/arprec ) clp? ( sci-libs/coinor-clp ) cuda? ( >=dev-util/nvidia-cuda-toolkit-3.2 ) eigen? ( dev-cpp/eigen:3 ) glpk? ( sci-mathematics/glpk ) gtest? ( dev-cpp/gtest ) hdf5? ( sci-libs/hdf5:=[mpi] ) hypre? ( sci-libs/hypre:= ) hwloc? ( sys-apps/hwloc:= ) matio? ( sci-libs/matio ) mkl? ( sci-libs/mkl ) metis? ( sci-libs/metis ) mumps? ( sci-libs/mumps ) netcdf? ( sci-libs/netcdf:= ) petsc? ( sci-mathematics/petsc ) qd? ( sci-libs/qd ) scalapack? ( sci-libs/scalapack ) scotch? ( sci-libs/scotch:= ) sparse? ( sci-libs/cxsparse sci-libs/umfpack ) superlu? ( sci-libs/superlu:= ) taucs? ( sci-libs/taucs ) tbb? ( dev-cpp/tbb:= ) tvmet? ( dev-libs/tvmet ) yaml? ( dev-cpp/yaml-cpp:= ) zlib? ( sys-libs/zlib ) X? ( x11-libs/libX11 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/trilinos/Trilinos/archive/trilinos-release-13-0-1.tar.gz -> trilinos-13.0.1.tar.gz https://dev.gentoo.org/~tamiko/distfiles/trilinos-13.0.0-patches-r0.tar.xz +_eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 +_md5_=b3a0fcf874a997bdc9c085f62e76b8bc diff --git a/metadata/md5-cache/sci-mathematics/Manifest.gz b/metadata/md5-cache/sci-mathematics/Manifest.gz index e3404a493242..3732700352d8 100644 Binary files a/metadata/md5-cache/sci-mathematics/Manifest.gz and b/metadata/md5-cache/sci-mathematics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-mathematics/alt-ergo-2.4.1 b/metadata/md5-cache/sci-mathematics/alt-ergo-2.4.1 deleted file mode 100644 index 41f8499568aa..000000000000 --- a/metadata/md5-cache/sci-mathematics/alt-ergo-2.4.1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=dev-ml/dune dev-lang/ocaml -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-lang/ocaml-4.09.0:=[ocamlopt=] >=dev-ml/menhir-20181006:= >=dev-ml/ocplib-simplex-0.4:= >=sci-mathematics/psmt2-frontend-0.4.0:= dev-ml/camlzip:= dev-ml/num:= dev-ml/seq:= dev-ml/zarith:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= -DESCRIPTION=Automatic theorem prover -EAPI=8 -HOMEPAGE=https://alt-ergo.ocamlpro.com -IUSE=examples +ocamlopt -KEYWORDS=~amd64 -LICENSE=CeCILL-C -RDEPEND=>=dev-lang/ocaml-4.09.0:=[ocamlopt=] >=dev-ml/menhir-20181006:= >=dev-ml/ocplib-simplex-0.4:= >=sci-mathematics/psmt2-frontend-0.4.0:= dev-ml/camlzip:= dev-ml/num:= dev-ml/seq:= dev-ml/zarith:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= -SLOT=0/2.4.1 -SRC_URI=https://github.com/OCamlPro/alt-ergo/archive/2.4.1.tar.gz -> alt-ergo-2.4.1.tar.gz -_eclasses_=dune dce723780ea5cdf2d76da678d3bd9cea -_md5_=fc6c4d81f908b7b5b296a7350ab5a102 diff --git a/metadata/md5-cache/sci-mathematics/alt-ergo-2.4.1-r1 b/metadata/md5-cache/sci-mathematics/alt-ergo-2.4.1-r1 new file mode 100644 index 000000000000..3d4be5952d4f --- /dev/null +++ b/metadata/md5-cache/sci-mathematics/alt-ergo-2.4.1-r1 @@ -0,0 +1,14 @@ +BDEPEND=dev-ml/dune-configurator dev-ml/dune dev-lang/ocaml +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-lang/ocaml-4.09.0:=[ocamlopt=] >=sci-mathematics/psmt2-frontend-0.4.0:= >=dev-ml/menhir-20181006:= >=dev-ml/ocplib-simplex-0.4:= dev-ml/camlzip:= dev-ml/cmdliner:= dev-ml/num:= dev-ml/seq:= dev-ml/stdlib-shims:= dev-ml/zarith:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= +DESCRIPTION=Automatic theorem prover +EAPI=8 +HOMEPAGE=https://alt-ergo.ocamlpro.com +IUSE=examples +ocamlopt +KEYWORDS=~amd64 +LICENSE=CeCILL-C +RDEPEND=>=dev-lang/ocaml-4.09.0:=[ocamlopt=] >=sci-mathematics/psmt2-frontend-0.4.0:= >=dev-ml/menhir-20181006:= >=dev-ml/ocplib-simplex-0.4:= dev-ml/camlzip:= dev-ml/cmdliner:= dev-ml/num:= dev-ml/seq:= dev-ml/stdlib-shims:= dev-ml/zarith:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= +SLOT=0/2.4.1 +SRC_URI=https://github.com/OCamlPro/alt-ergo/archive/2.4.1.tar.gz -> alt-ergo-2.4.1.tar.gz +_eclasses_=dune dce723780ea5cdf2d76da678d3bd9cea +_md5_=a876e76f95ae843e5353279c991918e5 diff --git a/metadata/md5-cache/sci-mathematics/cadical-1.5.2-r1 b/metadata/md5-cache/sci-mathematics/cadical-1.5.2-r1 new file mode 100644 index 000000000000..12ed568e51a1 --- /dev/null +++ b/metadata/md5-cache/sci-mathematics/cadical-1.5.2-r1 @@ -0,0 +1,10 @@ +DEFINED_PHASES=configure install +DESCRIPTION=Simplified Satisfiability Solver +EAPI=8 +HOMEPAGE=http://fmv.jku.at/cadical/ +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +SLOT=0/1.5.2 +SRC_URI=https://github.com/arminbiere/cadical/archive/rel-1.5.2.tar.gz -> cadical-1.5.2.tar.gz +_eclasses_=multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=13d23c58e98ce73fac79905166beaf78 diff --git a/metadata/md5-cache/sci-mathematics/smtinterpol-2.5_p20211018 b/metadata/md5-cache/sci-mathematics/smtinterpol-2.5_p20211018 new file mode 100644 index 000000000000..333876c98441 --- /dev/null +++ b/metadata/md5-cache/sci-mathematics/smtinterpol-2.5_p20211018 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup +DEPEND=>=virtual/jdk-1.8 >=dev-java/java-config-2.2.0-r3 >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit +DESCRIPTION=Interpolating SMT-solver that can compute Craig interpolants for various theories +EAPI=8 +HOMEPAGE=http://ultimate.informatik.uni-freiburg.de/smtinterpol/ +IUSE=elibc_FreeBSD +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-3 +RDEPEND=>=virtual/jre-1.8 >=dev-java/java-config-2.2.0-r3 +SLOT=0 +SRC_URI=https://github.com/ultimate-pa/smtinterpol/archive/32d7fa8751f668f9e9a18e4e96df3337b53d2150.tar.gz -> smtinterpol-2.5_p20211018.tar.gz +_eclasses_=java-ant-2 262d853e2dd1056dc103b953dfc113b9 java-pkg-2 2d0eb1353bf1264bd6e61736d3e409a2 java-utils-2 32fe52795e36e76dcbcf92d89bb1c4d0 multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=bf1f604f075bd795e556e4a88b9be6ad diff --git a/metadata/md5-cache/sci-physics/Manifest.gz b/metadata/md5-cache/sci-physics/Manifest.gz index d6cf7e5ad4b0..c69d87430ebf 100644 Binary files a/metadata/md5-cache/sci-physics/Manifest.gz and b/metadata/md5-cache/sci-physics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-physics/lammps-20200303-r1 b/metadata/md5-cache/sci-physics/lammps-20200303-r2 similarity index 60% rename from metadata/md5-cache/sci-physics/lammps-20200303-r1 rename to metadata/md5-cache/sci-physics/lammps-20200303-r2 index 4d054b0e5b2c..24c4c9c15561 100644 --- a/metadata/md5-cache/sci-physics/lammps-20200303-r1 +++ b/metadata/md5-cache/sci-physics/lammps-20200303-r2 @@ -1,16 +1,16 @@ BDEPEND=sys-devel/make >=dev-util/cmake-3.20.5 virtual/fortran DEFINED_PHASES=compile configure install prepare setup test -DEPEND=app-arch/gzip media-libs/libpng:0 sys-libs/zlib mpi? ( virtual/mpi sci-libs/hdf5[mpi] ) python? ( python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) sci-libs/voro++ virtual/blas virtual/lapack sci-libs/fftw:3.0 netcdf? ( sci-libs/netcdf ) cuda? ( >=dev-util/nvidia-cuda-toolkit-4.2.9-r1 ) kokkos? ( =dev-cpp/kokkos-3.0* ) dev-cpp/eigen:3 virtual/fortran +DEPEND=app-arch/gzip media-libs/libpng:0 sys-libs/zlib mpi? ( virtual/mpi sci-libs/hdf5:=[mpi] ) python? ( python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) sci-libs/voro++ virtual/blas virtual/lapack sci-libs/fftw:3.0= netcdf? ( sci-libs/netcdf:= ) cuda? ( >=dev-util/nvidia-cuda-toolkit-4.2.9-r1 ) kokkos? ( =dev-cpp/kokkos-3.0* ) dev-cpp/eigen:3 virtual/fortran DESCRIPTION=Large-scale Atomic/Molecular Massively Parallel Simulator EAPI=7 HOMEPAGE=https://lammps.sandia.gov/ IUSE=cuda examples gzip kokkos lammps-memalign mpi netcdf python test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=app-arch/gzip media-libs/libpng:0 sys-libs/zlib mpi? ( virtual/mpi sci-libs/hdf5[mpi] ) python? ( python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) sci-libs/voro++ virtual/blas virtual/lapack sci-libs/fftw:3.0 netcdf? ( sci-libs/netcdf ) cuda? ( >=dev-util/nvidia-cuda-toolkit-4.2.9-r1 ) kokkos? ( =dev-cpp/kokkos-3.0* ) dev-cpp/eigen:3 virtual/fortran +RDEPEND=app-arch/gzip media-libs/libpng:0 sys-libs/zlib mpi? ( virtual/mpi sci-libs/hdf5:=[mpi] ) python? ( python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) sci-libs/voro++ virtual/blas virtual/lapack sci-libs/fftw:3.0= netcdf? ( sci-libs/netcdf:= ) cuda? ( >=dev-util/nvidia-cuda-toolkit-4.2.9-r1 ) kokkos? ( =dev-cpp/kokkos-3.0* ) dev-cpp/eigen:3 virtual/fortran REQUIRED_USE=python? ( || ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/lammps/lammps/archive/stable_3Mar2020.tar.gz -> lammps-stable_3Mar2020.tar.gz test? ( https://github.com/lammps/lammps-testing/archive/stable_3Mar2020.tar.gz -> lammps-testing-stable_3Mar2020.tar.gz ) _eclasses_=cmake 11fee991ab428a3370e5c20fa8231fb6 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 fortran-2 7e39eb204d37699d5f1eaf9f4d61888a multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 python-r1 e574a3642f886323f18f867ecc4d91c4 python-utils-r1 a8b7938ade305f087865de7e52d079b5 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 4f29a8b760a594a212abe9c2ba957c31 -_md5_=b79510de2f6ec947ca68287d313e6f16 +_md5_=16c425b1ebfa38f9ef6b554097777531 diff --git a/metadata/md5-cache/sci-visualization/Manifest.gz b/metadata/md5-cache/sci-visualization/Manifest.gz index bff90f27a0d5..d7f7a9922269 100644 Binary files a/metadata/md5-cache/sci-visualization/Manifest.gz and b/metadata/md5-cache/sci-visualization/Manifest.gz differ diff --git a/metadata/md5-cache/sci-visualization/grace-5.1.25_p9 b/metadata/md5-cache/sci-visualization/grace-5.1.25_p9-r1 similarity index 76% rename from metadata/md5-cache/sci-visualization/grace-5.1.25_p9 rename to metadata/md5-cache/sci-visualization/grace-5.1.25_p9-r1 index 784187d0317a..f42f4ef402a2 100644 --- a/metadata/md5-cache/sci-visualization/grace-5.1.25_p9 +++ b/metadata/md5-cache/sci-visualization/grace-5.1.25_p9-r1 @@ -1,14 +1,14 @@ BDEPEND=fortran? ( virtual/fortran ) DEFINED_PHASES=configure install prepare setup -DEPEND=media-libs/t1lib media-libs/tiff:0 sys-libs/zlib >=x11-libs/motif-2.3:0 x11-libs/xbae fftw? ( sci-libs/fftw:3.0= ) jpeg? ( virtual/jpeg:0 ) netcdf? ( sci-libs/netcdf ) png? ( media-libs/libpng:0= ) fortran? ( virtual/fortran ) +DEPEND=media-libs/t1lib media-libs/tiff:0 sys-libs/zlib >=x11-libs/motif-2.3:0 x11-libs/xbae fftw? ( sci-libs/fftw:3.0= ) jpeg? ( virtual/jpeg:0 ) netcdf? ( sci-libs/netcdf:= ) png? ( media-libs/libpng:0= ) fortran? ( virtual/fortran ) DESCRIPTION=Motif based XY-plotting tool EAPI=7 HOMEPAGE=https://plasma-gate.weizmann.ac.il/Grace/ IUSE=fftw fortran jpeg netcdf png KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 LGPL-2 -RDEPEND=media-libs/t1lib media-libs/tiff:0 sys-libs/zlib >=x11-libs/motif-2.3:0 x11-libs/xbae fftw? ( sci-libs/fftw:3.0= ) jpeg? ( virtual/jpeg:0 ) netcdf? ( sci-libs/netcdf ) png? ( media-libs/libpng:0= ) x11-misc/xdg-utils fortran? ( virtual/fortran ) +RDEPEND=media-libs/t1lib media-libs/tiff:0 sys-libs/zlib >=x11-libs/motif-2.3:0 x11-libs/xbae fftw? ( sci-libs/fftw:3.0= ) jpeg? ( virtual/jpeg:0 ) netcdf? ( sci-libs/netcdf:= ) png? ( media-libs/libpng:0= ) x11-misc/xdg-utils fortran? ( virtual/fortran ) SLOT=0 SRC_URI=ftp://plasma-gate.weizmann.ac.il/pub/grace/src/stable/grace-5.1.25.tar.gz mirror://debian/pool/main/g/grace/grace_5.1.25-9.debian.tar.xz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 fortran-2 7e39eb204d37699d5f1eaf9f4d61888a multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=86e9246638e27e7234470ee407fb34c2 +_md5_=2f2a3b943b4d751eed4a282db9d9a466 diff --git a/metadata/md5-cache/sci-visualization/opendx-4.4.4-r7 b/metadata/md5-cache/sci-visualization/opendx-4.4.4-r8 similarity index 78% rename from metadata/md5-cache/sci-visualization/opendx-4.4.4-r7 rename to metadata/md5-cache/sci-visualization/opendx-4.4.4-r8 index 82f8c51d1db3..d4febf984f80 100644 --- a/metadata/md5-cache/sci-visualization/opendx-4.4.4-r7 +++ b/metadata/md5-cache/sci-visualization/opendx-4.4.4-r8 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare -DEPEND=x11-libs/libX11 x11-libs/libXmu x11-libs/libXpm x11-libs/libXt >=x11-libs/motif-2.3:0 virtual/opengl virtual/glu szip? ( virtual/szip ) hdf? ( sci-libs/hdf ) cdf? ( sci-libs/cdf ) netcdf? ( sci-libs/netcdf ) tiff? ( media-libs/tiff:0 ) imagemagick? ( virtual/imagemagick-tools ) virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=x11-libs/libX11 x11-libs/libXmu x11-libs/libXpm x11-libs/libXt >=x11-libs/motif-2.3:0 virtual/opengl virtual/glu szip? ( virtual/szip ) hdf? ( sci-libs/hdf ) cdf? ( sci-libs/cdf ) netcdf? ( sci-libs/netcdf:= ) tiff? ( media-libs/tiff:0 ) imagemagick? ( virtual/imagemagick-tools ) virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=3D data visualization tool EAPI=6 HOMEPAGE=http://www.opendx.org/ IUSE=hdf cdf netcdf tiff imagemagick szip smp KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux LICENSE=IBM -RDEPEND=x11-libs/libX11 x11-libs/libXmu x11-libs/libXpm x11-libs/libXt >=x11-libs/motif-2.3:0 virtual/opengl virtual/glu szip? ( virtual/szip ) hdf? ( sci-libs/hdf ) cdf? ( sci-libs/cdf ) netcdf? ( sci-libs/netcdf ) tiff? ( media-libs/tiff:0 ) imagemagick? ( virtual/imagemagick-tools ) +RDEPEND=x11-libs/libX11 x11-libs/libXmu x11-libs/libXpm x11-libs/libXt >=x11-libs/motif-2.3:0 virtual/opengl virtual/glu szip? ( virtual/szip ) hdf? ( sci-libs/hdf ) cdf? ( sci-libs/cdf ) netcdf? ( sci-libs/netcdf:= ) tiff? ( media-libs/tiff:0 ) imagemagick? ( virtual/imagemagick-tools ) SLOT=0 SRC_URI=http://opendx.sdsc.edu/source/dx-4.4.4.tar.gz https://dev.gentoo.org/~soap/distfiles/opendx-4.4.4_p20160917-fix-c++14.patch.bz2 _eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean b690a7e9b6c497cf59326a7545df4283 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=35e19501a81266b234a9cf94adac95ea +_md5_=e410bf84d3e096cad3d619426a60a0ae diff --git a/metadata/md5-cache/sys-apps/Manifest.gz b/metadata/md5-cache/sys-apps/Manifest.gz index d00190f7cb9c..d2d3f8658b7b 100644 Binary files a/metadata/md5-cache/sys-apps/Manifest.gz and b/metadata/md5-cache/sys-apps/Manifest.gz differ diff --git a/metadata/md5-cache/sys-apps/pcmciautils-018_p8-r3 b/metadata/md5-cache/sys-apps/pcmciautils-018_p8-r3 index d4bdc21eee7f..d7b7b7a35586 100644 --- a/metadata/md5-cache/sys-apps/pcmciautils-018_p8-r3 +++ b/metadata/md5-cache/sys-apps/pcmciautils-018_p8-r3 @@ -10,4 +10,4 @@ RDEPEND=sys-apps/kmod[tools] SLOT=0 SRC_URI=mirror://debian/pool/main/p/pcmciautils/pcmciautils_018.orig.tar.gz mirror://debian/pool/main/p/pcmciautils/pcmciautils_018-8.debian.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 linux-info 6b67971d8a0a029d13181f2cfb9f5fa9 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 8a0248f83ae77f945d376ff4a7953257 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 vcs-clean b690a7e9b6c497cf59326a7545df4283 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=d6779884f59b0a3fdfb675c03f5e13a2 +_md5_=dfba7584930577b6e8ad3d584414d3a0 diff --git a/metadata/md5-cache/sys-devel/Manifest.gz b/metadata/md5-cache/sys-devel/Manifest.gz index 2d7ac6113afb..011d3403c528 100644 Binary files a/metadata/md5-cache/sys-devel/Manifest.gz and b/metadata/md5-cache/sys-devel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-devel/gcc-10.3.0-r2 b/metadata/md5-cache/sys-devel/gcc-10.3.0-r2 index bc5336046cbf..a98aa2928256 100644 --- a/metadata/md5-cache/sys-devel/gcc-10.3.0-r2 +++ b/metadata/md5-cache/sys-devel/gcc-10.3.0-r2 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=10 SRC_URI=mirror://gnu/gcc/gcc-10.3.0/gcc-10.3.0.tar.xz https://dev.gentoo.org/~soap/distfiles/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-10.3.0-patches-3.tar.bz2 mirror://gentoo/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~soap/distfiles/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-10.3.0-musl-patches-1.tar.bz2 mirror://gentoo/gcc-10.3.0-musl-patches-1.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=66513cfcb98cc2b6a5a53f51d0d31637 diff --git a/metadata/md5-cache/sys-devel/gcc-10.3.1_p20211126 b/metadata/md5-cache/sys-devel/gcc-10.3.1_p20211126 index 78945e9f5c67..4c14b6bbdd43 100644 --- a/metadata/md5-cache/sys-devel/gcc-10.3.1_p20211126 +++ b/metadata/md5-cache/sys-devel/gcc-10.3.1_p20211126 @@ -11,6 +11,6 @@ PDEPEND=>=sys-devel/gcc-config-2.3 RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) RESTRICT=!test? ( test ) SLOT=10 -SRC_URI=ftp://gcc.gnu.org/pub/gcc/snapshots/10-20211126/gcc-10-20211126.tar.xz https://dev.gentoo.org/~soap/distfiles/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-10.4.0-patches-0.tar.bz2 mirror://gentoo/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~soap/distfiles/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-10.3.0-musl-patches-1.tar.bz2 mirror://gentoo/gcc-10.3.0-musl-patches-1.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +SRC_URI=https://gcc.gnu.org/pub/gcc/snapshots/10-20211126/gcc-10-20211126.tar.xz https://dev.gentoo.org/~soap/distfiles/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-10.4.0-patches-0.tar.bz2 mirror://gentoo/gcc-10.4.0-patches-0.tar.bz2 https://dev.gentoo.org/~soap/distfiles/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-10.3.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-10.3.0-musl-patches-1.tar.bz2 mirror://gentoo/gcc-10.3.0-musl-patches-1.tar.bz2 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=907f7621dd96f09d5fe4d2d375296d7b diff --git a/metadata/md5-cache/sys-devel/gcc-10.3.1_pre9999 b/metadata/md5-cache/sys-devel/gcc-10.3.1_pre9999 index 6e17a0d71db6..5e9db64f9d98 100644 --- a/metadata/md5-cache/sys-devel/gcc-10.3.1_pre9999 +++ b/metadata/md5-cache/sys-devel/gcc-10.3.1_pre9999 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=10 SRC_URI=https://dev.gentoo.org/~soap/distfiles/gcc-10.3.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-10.3.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.3.0-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-10.3.0-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-10.3.0-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-10.3.0-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-10.3.0-patches-1.tar.bz2 mirror://gentoo/gcc-10.3.0-patches-1.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e292546d4839eca2e919d2a37705e392 diff --git a/metadata/md5-cache/sys-devel/gcc-11.2.0 b/metadata/md5-cache/sys-devel/gcc-11.2.0 index e80a1e917c49..1f269c63dc8e 100644 --- a/metadata/md5-cache/sys-devel/gcc-11.2.0 +++ b/metadata/md5-cache/sys-devel/gcc-11.2.0 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=11 SRC_URI=mirror://gnu/gcc/gcc-11.2.0/gcc-11.2.0.tar.xz https://dev.gentoo.org/~soap/distfiles/gcc-11.2.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-11.2.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.2.0-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-11.2.0-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-11.2.0-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-11.2.0-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-11.2.0-patches-1.tar.bz2 mirror://gentoo/gcc-11.2.0-patches-1.tar.bz2 https://dev.gentoo.org/~soap/distfiles/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-11.2.0-musl-patches-1.tar.bz2 mirror://gentoo/gcc-11.2.0-musl-patches-1.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7d712394b8c8fe4cd985af35d02c7512 diff --git a/metadata/md5-cache/sys-devel/gcc-11.2.1_p20211127 b/metadata/md5-cache/sys-devel/gcc-11.2.1_p20211127 index 19a46577f971..2f2028cbeab0 100644 --- a/metadata/md5-cache/sys-devel/gcc-11.2.1_p20211127 +++ b/metadata/md5-cache/sys-devel/gcc-11.2.1_p20211127 @@ -11,6 +11,6 @@ PDEPEND=>=sys-devel/gcc-config-2.3 RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) RESTRICT=!test? ( test ) SLOT=11 -SRC_URI=ftp://gcc.gnu.org/pub/gcc/snapshots/11-20211127/gcc-11-20211127.tar.xz https://dev.gentoo.org/~soap/distfiles/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-11.3.0-patches-2.tar.bz2 mirror://gentoo/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~soap/distfiles/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-11.2.0-musl-patches-1.tar.bz2 mirror://gentoo/gcc-11.2.0-musl-patches-1.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +SRC_URI=https://gcc.gnu.org/pub/gcc/snapshots/11-20211127/gcc-11-20211127.tar.xz https://dev.gentoo.org/~soap/distfiles/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-11.3.0-patches-2.tar.bz2 mirror://gentoo/gcc-11.3.0-patches-2.tar.bz2 https://dev.gentoo.org/~soap/distfiles/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-11.2.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-11.2.0-musl-patches-1.tar.bz2 mirror://gentoo/gcc-11.2.0-musl-patches-1.tar.bz2 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=0f5dab38b1a6d09ae51af550afd4286d diff --git a/metadata/md5-cache/sys-devel/gcc-11.2.1_pre9999 b/metadata/md5-cache/sys-devel/gcc-11.2.1_pre9999 index ce63a763412d..cd67dd07bd04 100644 --- a/metadata/md5-cache/sys-devel/gcc-11.2.1_pre9999 +++ b/metadata/md5-cache/sys-devel/gcc-11.2.1_pre9999 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=11 SRC_URI=https://dev.gentoo.org/~soap/distfiles/gcc-11.2.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-11.2.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.2.0-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-11.2.0-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-11.2.0-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-11.2.0-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-11.2.0-patches-1.tar.bz2 mirror://gentoo/gcc-11.2.0-patches-1.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=58b3deebeac6423c709570df91505378 diff --git a/metadata/md5-cache/sys-devel/gcc-12.0.0_pre9999 b/metadata/md5-cache/sys-devel/gcc-12.0.0_pre9999 index ea7ec997ac74..71ae215d3ae3 100644 --- a/metadata/md5-cache/sys-devel/gcc-12.0.0_pre9999 +++ b/metadata/md5-cache/sys-devel/gcc-12.0.0_pre9999 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=12 SRC_URI=https://dev.gentoo.org/~soap/distfiles/gcc-12.0.0-patches-2.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-12.0.0-patches-2.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.0.0-patches-2.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-12.0.0-patches-2.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-12.0.0-patches-2.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-12.0.0-patches-2.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-12.0.0-patches-2.tar.bz2 mirror://gentoo/gcc-12.0.0-patches-2.tar.bz2 -_eclasses_=flag-o-matic d5e1306543bc457213f68bb18f830d14 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_eclasses_=flag-o-matic d5e1306543bc457213f68bb18f830d14 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 _md5_=af519d281c076dbc0332244398a2ac83 diff --git a/metadata/md5-cache/sys-devel/gcc-6.5.0-r4 b/metadata/md5-cache/sys-devel/gcc-6.5.0-r4 index 29672cb91b25..68370ae101d9 100644 --- a/metadata/md5-cache/sys-devel/gcc-6.5.0-r4 +++ b/metadata/md5-cache/sys-devel/gcc-6.5.0-r4 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=6.5.0 SRC_URI=mirror://gnu/gcc/gcc-6.5.0/gcc-6.5.0.tar.xz https://dev.gentoo.org/~soap/distfiles/gcc-6.5.0-patches-6.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-6.5.0-patches-6.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-6.5.0-patches-6.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-6.5.0-patches-6.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-6.5.0-patches-6.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-6.5.0-patches-6.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-6.5.0-patches-6.tar.bz2 mirror://gentoo/gcc-6.5.0-patches-6.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f8f43a350a54709604645df150d2db6b diff --git a/metadata/md5-cache/sys-devel/gcc-7.5.0-r2 b/metadata/md5-cache/sys-devel/gcc-7.5.0-r2 index 1a24cd561e94..e0dc50b94a94 100644 --- a/metadata/md5-cache/sys-devel/gcc-7.5.0-r2 +++ b/metadata/md5-cache/sys-devel/gcc-7.5.0-r2 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=7.5.0 SRC_URI=mirror://gnu/gcc/gcc-7.5.0/gcc-7.5.0.tar.xz https://dev.gentoo.org/~soap/distfiles/gcc-7.5.0-patches-4.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-7.5.0-patches-4.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-7.5.0-patches-4.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-7.5.0-patches-4.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-7.5.0-patches-4.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-7.5.0-patches-4.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-7.5.0-patches-4.tar.bz2 mirror://gentoo/gcc-7.5.0-patches-4.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f27156fb5bdc447364253107591e28f1 diff --git a/metadata/md5-cache/sys-devel/gcc-8.5.0-r1 b/metadata/md5-cache/sys-devel/gcc-8.5.0-r1 index edafb3412d5c..fde27d1e2cba 100644 --- a/metadata/md5-cache/sys-devel/gcc-8.5.0-r1 +++ b/metadata/md5-cache/sys-devel/gcc-8.5.0-r1 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=8.5.0 SRC_URI=mirror://gnu/gcc/gcc-8.5.0/gcc-8.5.0.tar.xz https://dev.gentoo.org/~soap/distfiles/gcc-8.5.0-patches-2.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-8.5.0-patches-2.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-8.5.0-patches-2.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-8.5.0-patches-2.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-8.5.0-patches-2.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-8.5.0-patches-2.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-8.5.0-patches-2.tar.bz2 mirror://gentoo/gcc-8.5.0-patches-2.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=5db021f282348ebe91be240970a0c178 diff --git a/metadata/md5-cache/sys-devel/gcc-9.4.0 b/metadata/md5-cache/sys-devel/gcc-9.4.0 index 8760d4d413ad..caed4004f799 100644 --- a/metadata/md5-cache/sys-devel/gcc-9.4.0 +++ b/metadata/md5-cache/sys-devel/gcc-9.4.0 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=9.4.0 SRC_URI=mirror://gnu/gcc/gcc-9.4.0/gcc-9.4.0.tar.xz https://dev.gentoo.org/~soap/distfiles/gcc-9.4.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-9.4.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-9.4.0-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-9.4.0-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-9.4.0-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-9.4.0-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-9.4.0-patches-1.tar.bz2 mirror://gentoo/gcc-9.4.0-patches-1.tar.bz2 https://dev.gentoo.org/~soap/distfiles/gcc-9.4.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-9.4.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-9.4.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-9.4.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-9.4.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-9.4.0-musl-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-9.4.0-musl-patches-1.tar.bz2 mirror://gentoo/gcc-9.4.0-musl-patches-1.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7dfff6db7e3e7f663af3584f0d8d0625 diff --git a/metadata/md5-cache/sys-devel/gcc-9.4.1_pre9999 b/metadata/md5-cache/sys-devel/gcc-9.4.1_pre9999 index a66d1e594182..b4ef26806689 100644 --- a/metadata/md5-cache/sys-devel/gcc-9.4.1_pre9999 +++ b/metadata/md5-cache/sys-devel/gcc-9.4.1_pre9999 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=9.4.1 SRC_URI=https://dev.gentoo.org/~soap/distfiles/gcc-9.4.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-9.4.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-9.4.0-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-9.4.0-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-9.4.0-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-9.4.0-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-9.4.0-patches-1.tar.bz2 mirror://gentoo/gcc-9.4.0-patches-1.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=d7fc00eeb48f9964d7dbffaf9aa6df18 diff --git a/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5666-r3 b/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5666-r3 index 034c7322f8db..c2e22041c735 100644 --- a/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5666-r3 +++ b/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5666-r3 @@ -12,5 +12,5 @@ RDEPEND=>=sys-libs/zlib-1.1.4 >=sys-libs/ncurses-5.2-r2 nls? ( sys-devel/gettext RESTRICT=!test? ( test ) SLOT=42 SRC_URI=http://www.opensource.apple.com/darwinsource/tarballs/other/gcc-5666.3.tar.gz http://www.opensource.apple.com/darwinsource/tarballs/other/libstdcxx-39.tar.gz fortran? ( mirror://gnu/gcc/gcc-4.2.4/gcc-fortran-4.2.4.tar.bz2 https://dev.gentoo.org/~grobian/distfiles/gcc-apple-4.2.1_p5646-gfortran.patch ) -_eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a985071b860d5fe91f55bc2183ff0c0e diff --git a/metadata/md5-cache/sys-devel/kgcc64-10.3.0 b/metadata/md5-cache/sys-devel/kgcc64-10.3.0 index c99c228797d9..c31cd27f0df0 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-10.3.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-10.3.0 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=10 SRC_URI=mirror://gnu/gcc/gcc-10.3.0/gcc-10.3.0.tar.xz https://dev.gentoo.org/~soap/distfiles/gcc-10.3.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-10.3.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.3.0-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-10.3.0-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-10.3.0-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-10.3.0-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-10.3.0-patches-1.tar.bz2 mirror://gentoo/gcc-10.3.0-patches-1.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=499c3e296cb44fae1926c95e7fac1e3b diff --git a/metadata/md5-cache/sys-devel/kgcc64-11.1.0 b/metadata/md5-cache/sys-devel/kgcc64-11.1.0 index 7f11838b5771..c572f84ac416 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-11.1.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-11.1.0 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=11 SRC_URI=mirror://gnu/gcc/gcc-11.1.0/gcc-11.1.0.tar.xz https://dev.gentoo.org/~soap/distfiles/gcc-11.1.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-11.1.0-patches-1.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.1.0-patches-1.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-11.1.0-patches-1.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-11.1.0-patches-1.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-11.1.0-patches-1.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-11.1.0-patches-1.tar.bz2 mirror://gentoo/gcc-11.1.0-patches-1.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7c819679af79cb7ed395c6f91baf6357 diff --git a/metadata/md5-cache/sys-devel/kgcc64-9.3.0-r2 b/metadata/md5-cache/sys-devel/kgcc64-9.3.0-r2 index a6be0f28cd79..62f7f89a0b9b 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-9.3.0-r2 +++ b/metadata/md5-cache/sys-devel/kgcc64-9.3.0-r2 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=9.3.0 SRC_URI=mirror://gnu/gcc/gcc-9.3.0/gcc-9.3.0.tar.xz https://dev.gentoo.org/~soap/distfiles/gcc-9.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~sam/distfiles/gcc-9.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-9.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-9.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-9.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-9.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-9.3.0-patches-3.tar.bz2 mirror://gentoo/gcc-9.3.0-patches-3.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 57769187c59c435e0e0ec281fd5abd06 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 pax-utils fce6ad998516159787b92e8043167889 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain e2379dfbc7cdb5e6b503930099982d29 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=3aeb65e537bc37427af84e711e14e1d8 diff --git a/metadata/md5-cache/sys-kernel/Manifest.gz b/metadata/md5-cache/sys-kernel/Manifest.gz index b89852053d6e..24ba4d39e618 100644 Binary files a/metadata/md5-cache/sys-kernel/Manifest.gz and b/metadata/md5-cache/sys-kernel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-kernel/dracut-055-r4 b/metadata/md5-cache/sys-kernel/dracut-055-r4 index c1e8f2b351de..37393af6ac44 100644 --- a/metadata/md5-cache/sys-kernel/dracut-055-r4 +++ b/metadata/md5-cache/sys-kernel/dracut-055-r4 @@ -5,11 +5,11 @@ DESCRIPTION=Generic initramfs generation tool EAPI=7 HOMEPAGE=https://dracut.wiki.kernel.org IUSE=selinux test kernel_linux -KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv ~sparc ~x86 +KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86 LICENSE=GPL-2 RDEPEND=app-arch/cpio >=app-shells/bash-4.0:0 sys-apps/coreutils[xattr(-)] >=sys-apps/kmod-23[tools] || ( >=sys-apps/sysvinit-2.87-r3 sys-apps/openrc[sysv-utils(-),selinux?] sys-apps/systemd[sysv-utils] ) >=sys-apps/util-linux-2.21 virtual/pkgconfig virtual/udev elibc_musl? ( sys-libs/fts-standalone ) selinux? ( sec-policy/selinux-dracut sys-libs/libselinux sys-libs/libsepol ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.kernel.org/pub/linux/utils/boot/dracut/dracut-055.tar.xz _eclasses_=bash-completion-r1 d3a60385655d9b402be765a6de333245 linux-info 6b67971d8a0a029d13181f2cfb9f5fa9 multilib 8a0248f83ae77f945d376ff4a7953257 optfeature 30ce9dec2b8943338c9b015bd32bac6a systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=69a8850b6a7d23ff33d2c3dc2831223a +_md5_=4478532be66550c426649f0699cf855d diff --git a/metadata/md5-cache/www-apps/Manifest.gz b/metadata/md5-cache/www-apps/Manifest.gz index 669b0512d8e1..74517424e2b7 100644 Binary files a/metadata/md5-cache/www-apps/Manifest.gz and b/metadata/md5-cache/www-apps/Manifest.gz differ diff --git a/metadata/md5-cache/www-apps/icingaweb2-module-director-1.8.1 b/metadata/md5-cache/www-apps/icingaweb2-module-director-1.8.1 new file mode 100644 index 000000000000..22950136bbf9 --- /dev/null +++ b/metadata/md5-cache/www-apps/icingaweb2-module-director-1.8.1 @@ -0,0 +1,13 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=install postinst +DEPEND=>=net-analyzer/icinga2-2.6.0 >=www-apps/icingaweb2-2.6.0 || ( dev-lang/php:7.3[curl,iconv,pcntl,posix,sockets] dev-lang/php:7.4[curl,iconv,pcntl,posix,sockets] dev-lang/php:8.0[curl,iconv,pcntl,posix,sockets] ) acct-group/icingaweb2 acct-user/icingadirector +DESCRIPTION=Icinga Web 2 plugin for configuration +EAPI=8 +HOMEPAGE=https://dev.icinga.org/projects/icingaweb2-module-director/ +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=net-analyzer/icinga2-2.6.0 >=www-apps/icingaweb2-2.6.0 || ( dev-lang/php:7.3[curl,iconv,pcntl,posix,sockets] dev-lang/php:7.4[curl,iconv,pcntl,posix,sockets] dev-lang/php:8.0[curl,iconv,pcntl,posix,sockets] ) acct-group/icingaweb2 acct-user/icingadirector +SLOT=0 +SRC_URI=https://codeload.github.com/Icinga/icingaweb2-module-director/tar.gz/v1.8.1 -> icingaweb2-module-director-1.8.1.tar.gz +_eclasses_=multilib 8a0248f83ae77f945d376ff4a7953257 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=d467cd73a597cc2174eb3319d2c1e17d diff --git a/metadata/md5-cache/www-apps/icingaweb2-module-director-9999 b/metadata/md5-cache/www-apps/icingaweb2-module-director-9999 index e2b24a67f714..77ca919c0535 100644 --- a/metadata/md5-cache/www-apps/icingaweb2-module-director-9999 +++ b/metadata/md5-cache/www-apps/icingaweb2-module-director-9999 @@ -1,11 +1,12 @@ -DEFINED_PHASES=install unpack -DEPEND=>=net-analyzer/icinga2-2.4.3 >=www-apps/icingaweb2-2.2.0 || ( dev-lang/php:5.6[curl] dev-lang/php:7.1[curl] dev-lang/php:7.2[curl] dev-lang/php:7.3[curl] ) >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=install postinst unpack +DEPEND=>=net-analyzer/icinga2-2.6.0 >=www-apps/icingaweb2-2.6.0 || ( dev-lang/php:7.3[curl,iconv,pcntl,posix,sockets] dev-lang/php:7.4[curl,iconv,pcntl,posix,sockets] dev-lang/php:8.0[curl,iconv,pcntl,posix,sockets] ) acct-group/icingaweb2 acct-user/icingadirector DESCRIPTION=Icinga Web 2 plugin for configuration -EAPI=6 +EAPI=8 HOMEPAGE=https://dev.icinga.org/projects/icingaweb2-module-director/ LICENSE=GPL-2 PROPERTIES=live -RDEPEND=>=net-analyzer/icinga2-2.4.3 >=www-apps/icingaweb2-2.2.0 || ( dev-lang/php:5.6[curl] dev-lang/php:7.1[curl] dev-lang/php:7.2[curl] dev-lang/php:7.3[curl] ) +RDEPEND=>=net-analyzer/icinga2-2.6.0 >=www-apps/icingaweb2-2.6.0 || ( dev-lang/php:7.3[curl,iconv,pcntl,posix,sockets] dev-lang/php:7.4[curl,iconv,pcntl,posix,sockets] dev-lang/php:8.0[curl,iconv,pcntl,posix,sockets] ) acct-group/icingaweb2 acct-user/icingadirector SLOT=0 -_eclasses_=git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da -_md5_=4c4675c7cf709950a846219f7c12bd13 +_eclasses_=git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da multilib 8a0248f83ae77f945d376ff4a7953257 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=d467cd73a597cc2174eb3319d2c1e17d diff --git a/metadata/md5-cache/www-apps/icingaweb2-module-incubator-0.11.0 b/metadata/md5-cache/www-apps/icingaweb2-module-incubator-0.11.0 new file mode 100644 index 000000000000..452c205d16e4 --- /dev/null +++ b/metadata/md5-cache/www-apps/icingaweb2-module-incubator-0.11.0 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install +DEPEND=>=net-analyzer/icinga2-2.6.0 >=www-apps/icingaweb2-2.6.0 || ( dev-lang/php:7.3[curl] dev-lang/php:7.4[curl] dev-lang/php:8.0[curl] ) +DESCRIPTION=Libraries useful for Icinga Web 2 +EAPI=8 +HOMEPAGE=https://dev.icinga.org/projects/icingaweb2-module-incubator/ +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=net-analyzer/icinga2-2.6.0 >=www-apps/icingaweb2-2.6.0 || ( dev-lang/php:7.3[curl] dev-lang/php:7.4[curl] dev-lang/php:8.0[curl] ) +SLOT=0 +SRC_URI=https://codeload.github.com/Icinga/icingaweb2-module-incubator/tar.gz/v0.11.0 -> icingaweb2-module-incubator-0.11.0.tar.gz +_md5_=372a7102b7875f75e28c5d6070daccc6 diff --git a/metadata/md5-cache/x11-drivers/Manifest.gz b/metadata/md5-cache/x11-drivers/Manifest.gz index 3918e6955bee..06e10db6c8bc 100644 Binary files a/metadata/md5-cache/x11-drivers/Manifest.gz and b/metadata/md5-cache/x11-drivers/Manifest.gz differ diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-390.144-r1 b/metadata/md5-cache/x11-drivers/nvidia-drivers-390.144-r1 index fd3bacf153e6..17182a3fbfdb 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-390.144-r1 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-390.144-r1 @@ -12,4 +12,4 @@ RDEPEND=acct-group/video acct-user/nvpd net-libs/libtirpc tools? ( dev-libs/atk SLOT=0/390 SRC_URI=amd64? ( https://download.nvidia.com/XFree86/Linux-x86_64/390.144/NVIDIA-Linux-x86_64-390.144.run ) x86? ( https://download.nvidia.com/XFree86/Linux-x86/390.144/NVIDIA-Linux-x86-390.144.run ) https://download.nvidia.com/XFree86/nvidia-installer/nvidia-installer-390.144.tar.bz2 https://download.nvidia.com/XFree86/nvidia-modprobe/nvidia-modprobe-390.144.tar.bz2 https://download.nvidia.com/XFree86/nvidia-persistenced/nvidia-persistenced-390.144.tar.bz2 https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-390.144.tar.bz2 https://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-390.144.tar.bz2 _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff linux-info 6b67971d8a0a029d13181f2cfb9f5fa9 linux-mod 1c03540c81548283580ab5526ab0978c multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 928e1f35ef78ba9fc2b214e29c2b55a4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=d218973c667535ce83a8a1c591632b96 +_md5_=18fd4c0e2e409f2b4cad45fbbd22baf3 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-390.147 b/metadata/md5-cache/x11-drivers/nvidia-drivers-390.147 index 8b8a68952dff..37e92b1ad44a 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-390.147 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-390.147 @@ -11,4 +11,4 @@ RDEPEND=acct-group/video persistenced? ( acct-user/nvpd net-libs/libtirpc:= ) to SLOT=0/390 SRC_URI=amd64? ( https://download.nvidia.com/XFree86/Linux-x86_64/390.147/NVIDIA-Linux-x86_64-390.147.run ) x86? ( https://download.nvidia.com/XFree86/Linux-x86/390.147/NVIDIA-Linux-x86-390.147.run ) https://download.nvidia.com/XFree86/nvidia-installer/nvidia-installer-390.147.tar.bz2 https://download.nvidia.com/XFree86/nvidia-modprobe/nvidia-modprobe-390.147.tar.bz2 https://download.nvidia.com/XFree86/nvidia-persistenced/nvidia-persistenced-390.147.tar.bz2 https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-390.147.tar.bz2 https://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-390.147.tar.bz2 _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 linux-info 6b67971d8a0a029d13181f2cfb9f5fa9 linux-mod 1c03540c81548283580ab5526ab0978c multilib 8a0248f83ae77f945d376ff4a7953257 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 928e1f35ef78ba9fc2b214e29c2b55a4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=e724932d106fc612d68221fa4378fbbd +_md5_=a5b0795de6be987f5acfb2220fcb175d diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-460.91.03-r1 b/metadata/md5-cache/x11-drivers/nvidia-drivers-460.91.03-r1 index 63668b8e5c47..33f8bce7773d 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-460.91.03-r1 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-460.91.03-r1 @@ -12,4 +12,4 @@ RDEPEND=acct-group/video acct-user/nvpd net-libs/libtirpc tools? ( dev-libs/atk SLOT=0/460 SRC_URI=amd64? ( https://download.nvidia.com/XFree86/Linux-x86_64/460.91.03/NVIDIA-Linux-x86_64-460.91.03.run ) arm64? ( https://download.nvidia.com/XFree86/Linux-aarch64/460.91.03/NVIDIA-Linux-aarch64-460.91.03.run ) https://download.nvidia.com/XFree86/nvidia-installer/nvidia-installer-460.91.03.tar.bz2 https://download.nvidia.com/XFree86/nvidia-modprobe/nvidia-modprobe-460.91.03.tar.bz2 https://download.nvidia.com/XFree86/nvidia-persistenced/nvidia-persistenced-460.91.03.tar.bz2 https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-460.91.03.tar.bz2 https://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-460.91.03.tar.bz2 _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff linux-info 6b67971d8a0a029d13181f2cfb9f5fa9 linux-mod 1c03540c81548283580ab5526ab0978c multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 optfeature 30ce9dec2b8943338c9b015bd32bac6a readme.gentoo-r1 c9646d622541c023f5159b86a14e930c strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 928e1f35ef78ba9fc2b214e29c2b55a4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=1e897bb3c2f7460ce889c58046a23909 +_md5_=0a2c5d92e7032e6e884e6fe2cbf18503 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-460.91.03-r2 b/metadata/md5-cache/x11-drivers/nvidia-drivers-460.91.03-r2 new file mode 100644 index 000000000000..98c7aa9ce3e2 --- /dev/null +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-460.91.03-r2 @@ -0,0 +1,15 @@ +BDEPEND=sys-devel/m4 virtual/pkgconfig virtual/pkgconfig +DEFINED_PHASES=compile install postinst postrm preinst prepare setup unpack +DEPEND=acct-group/video persistenced? ( acct-user/nvpd net-libs/libtirpc:= ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson:= media-libs/harfbuzz:= x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXxf86vm x11-libs/pango ) static-libs? ( x11-libs/libX11 x11-libs/libXext ) tools? ( media-libs/libglvnd sys-apps/dbus x11-base/xorg-proto x11-libs/libXrandr x11-libs/libXv x11-libs/libvdpau ) driver? ( kernel_linux? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) ) driver? ( sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) ) +DESCRIPTION=NVIDIA Accelerated Graphics Driver +EAPI=7 +HOMEPAGE=https://www.nvidia.com/download/index.aspx +IUSE=+X abi_x86_32 abi_x86_64 +driver persistenced static-libs +tools kernel_linux kernel_linux dist-kernel driver +KEYWORDS=-* ~amd64 +LICENSE=NVIDIA-r2 BSD BSD-2 GPL-2 MIT ZLIB curl openssl +PDEPEND=X? ( NVIDIA-Linux-x86_64-470.62.16.run https://download.nvidia.com/XFree86/nvidia-installer/nvidia-installer-470.86.tar.bz2 https://download.nvidia.com/XFree86/nvidia-modprobe/nvidia-modprobe-470.86.tar.bz2 https://download.nvidia.com/XFree86/nvidia-persistenced/nvidia-persistenced-470.86.tar.bz2 https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-470.86.tar.bz2 https://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-470.86.tar.bz2 _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 linux-info 6b67971d8a0a029d13181f2cfb9f5fa9 linux-mod 1c03540c81548283580ab5526ab0978c multilib 8a0248f83ae77f945d376ff4a7953257 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 928e1f35ef78ba9fc2b214e29c2b55a4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=903e60ebe8725dc29a736d3170d4560e +_md5_=d844ce77615202fda14b16d33bfc48c9 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-470.86-r2 b/metadata/md5-cache/x11-drivers/nvidia-drivers-470.86-r2 index cc1f55f300b5..6bbd6f4e68e1 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-470.86-r2 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-470.86-r2 @@ -11,4 +11,4 @@ RDEPEND=acct-group/video acct-user/nvpd net-libs/libtirpc:= tools? ( dev-libs/at SLOT=0/470 SRC_URI=amd64? ( https://download.nvidia.com/XFree86/Linux-x86_64/470.86/NVIDIA-Linux-x86_64-470.86.run ) arm64? ( https://download.nvidia.com/XFree86/Linux-aarch64/470.86/NVIDIA-Linux-aarch64-470.86.run ) https://download.nvidia.com/XFree86/nvidia-installer/nvidia-installer-470.86.tar.bz2 https://download.nvidia.com/XFree86/nvidia-modprobe/nvidia-modprobe-470.86.tar.bz2 https://download.nvidia.com/XFree86/nvidia-persistenced/nvidia-persistenced-470.86.tar.bz2 https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-470.86.tar.bz2 https://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-470.86.tar.bz2 _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff linux-info 6b67971d8a0a029d13181f2cfb9f5fa9 linux-mod 1c03540c81548283580ab5526ab0978c multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 928e1f35ef78ba9fc2b214e29c2b55a4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=b86000b2a67387e7c0f84e63b2d1798f +_md5_=e5b569bdc395985073d59b487cb11710 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-470.94 b/metadata/md5-cache/x11-drivers/nvidia-drivers-470.94 index f9bf485eb951..486aa29d023e 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-470.94 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-470.94 @@ -5,10 +5,10 @@ DESCRIPTION=NVIDIA Accelerated Graphics Driver EAPI=7 HOMEPAGE=https://www.nvidia.com/download/index.aspx IUSE=+X abi_x86_32 abi_x86_64 +driver persistenced static-libs +tools wayland kernel_linux kernel_linux dist-kernel driver -KEYWORDS=-* ~amd64 +KEYWORDS=-* amd64 LICENSE=NVIDIA-r2 BSD BSD-2 GPL-2 MIT ZLIB curl openssl RDEPEND=acct-group/video persistenced? ( acct-user/nvpd net-libs/libtirpc:= ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson:= media-libs/harfbuzz:= x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXxf86vm x11-libs/pango ) X? ( media-libs/libglvnd[X,abi_x86_32(-)?] x11-libs/libX11[abi_x86_32(-)?] x11-libs/libXext[abi_x86_32(-)?] ) wayland? ( ~gui-libs/egl-wayland-1.1.7 media-libs/libglvnd ) driver? ( kernel_linux? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) ) SLOT=0/470 SRC_URI=amd64? ( https://us.download.nvidia.com/XFree86/Linux-x86_64/470.94/NVIDIA-Linux-x86_64-470.94.run ) arm64? ( https://us.download.nvidia.com/XFree86/aarch64/470.94/NVIDIA-Linux-aarch64-470.94.run ) https://github.com/NVIDIA/nvidia-installer/archive/refs/tags/470.94.tar.gz -> nvidia-installer-470.94.tar.gz https://github.com/NVIDIA/nvidia-modprobe/archive/refs/tags/470.94.tar.gz -> nvidia-modprobe-470.94.tar.gz https://github.com/NVIDIA/nvidia-persistenced/archive/refs/tags/470.94.tar.gz -> nvidia-persistenced-470.94.tar.gz https://github.com/NVIDIA/nvidia-settings/archive/refs/tags/470.94.tar.gz -> nvidia-settings-470.94.tar.gz https://github.com/NVIDIA/nvidia-xconfig/archive/refs/tags/470.94.tar.gz -> nvidia-xconfig-470.94.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 linux-info 6b67971d8a0a029d13181f2cfb9f5fa9 linux-mod 1c03540c81548283580ab5526ab0978c multilib 8a0248f83ae77f945d376ff4a7953257 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 928e1f35ef78ba9fc2b214e29c2b55a4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=383ebcd7079ab1e9bb9e36b634b292f3 +_md5_=f1854c8fc012b2c4b658df9bf3baa145 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-495.44-r2 b/metadata/md5-cache/x11-drivers/nvidia-drivers-495.44-r2 index d2c02d36d098..8fa7cc263a17 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-495.44-r2 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-495.44-r2 @@ -12,4 +12,4 @@ RESTRICT=bindist SLOT=0/495 SRC_URI=amd64? ( https://download.nvidia.com/XFree86/Linux-x86_64/495.44/NVIDIA-Linux-x86_64-495.44.run ) arm64? ( https://download.nvidia.com/XFree86/Linux-aarch64/495.44/NVIDIA-Linux-aarch64-495.44.run ) https://download.nvidia.com/XFree86/nvidia-installer/nvidia-installer-495.44.tar.bz2 https://download.nvidia.com/XFree86/nvidia-modprobe/nvidia-modprobe-495.44.tar.bz2 https://download.nvidia.com/XFree86/nvidia-persistenced/nvidia-persistenced-495.44.tar.bz2 https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-495.44.tar.bz2 https://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-495.44.tar.bz2 _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff linux-info 6b67971d8a0a029d13181f2cfb9f5fa9 linux-mod 1c03540c81548283580ab5526ab0978c multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 928e1f35ef78ba9fc2b214e29c2b55a4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=4fb30bcb9f458b12994d933d03866a87 +_md5_=207482da317a1fed571d725df11dddbf diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-495.46 b/metadata/md5-cache/x11-drivers/nvidia-drivers-495.46 index fc98df26936a..6c17335592ad 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-495.46 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-495.46 @@ -11,4 +11,4 @@ RDEPEND=acct-group/video persistenced? ( acct-user/nvpd net-libs/libtirpc:= ) to SLOT=0/495 SRC_URI=amd64? ( https://us.download.nvidia.com/XFree86/Linux-x86_64/495.46/NVIDIA-Linux-x86_64-495.46.run ) arm64? ( https://us.download.nvidia.com/XFree86/aarch64/495.46/NVIDIA-Linux-aarch64-495.46.run ) https://github.com/NVIDIA/nvidia-installer/archive/refs/tags/495.46.tar.gz -> nvidia-installer-495.46.tar.gz https://github.com/NVIDIA/nvidia-modprobe/archive/refs/tags/495.46.tar.gz -> nvidia-modprobe-495.46.tar.gz https://github.com/NVIDIA/nvidia-persistenced/archive/refs/tags/495.46.tar.gz -> nvidia-persistenced-495.46.tar.gz https://github.com/NVIDIA/nvidia-settings/archive/refs/tags/495.46.tar.gz -> nvidia-settings-495.46.tar.gz https://github.com/NVIDIA/nvidia-xconfig/archive/refs/tags/495.46.tar.gz -> nvidia-xconfig-495.46.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 linux-info 6b67971d8a0a029d13181f2cfb9f5fa9 linux-mod 1c03540c81548283580ab5526ab0978c multilib 8a0248f83ae77f945d376ff4a7953257 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 928e1f35ef78ba9fc2b214e29c2b55a4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=55ef5a59e5c648159f83c4f982cf536a +_md5_=f344ed2662e9842a76d49fb3805bf35e diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-495.46-r10 b/metadata/md5-cache/x11-drivers/nvidia-drivers-495.46-r10 index 0695a775e81e..c0b6fb2f4870 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-495.46-r10 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-495.46-r10 @@ -12,4 +12,4 @@ RESTRICT=bindist SLOT=0/495 SRC_URI=amd64? ( https://us.download.nvidia.com/XFree86/Linux-x86_64/495.46/NVIDIA-Linux-x86_64-495.46.run ) arm64? ( https://us.download.nvidia.com/XFree86/aarch64/495.46/NVIDIA-Linux-aarch64-495.46.run ) https://github.com/NVIDIA/nvidia-installer/archive/refs/tags/495.46.tar.gz -> nvidia-installer-495.46.tar.gz https://github.com/NVIDIA/nvidia-modprobe/archive/refs/tags/495.46.tar.gz -> nvidia-modprobe-495.46.tar.gz https://github.com/NVIDIA/nvidia-persistenced/archive/refs/tags/495.46.tar.gz -> nvidia-persistenced-495.46.tar.gz https://github.com/NVIDIA/nvidia-settings/archive/refs/tags/495.46.tar.gz -> nvidia-settings-495.46.tar.gz https://github.com/NVIDIA/nvidia-xconfig/archive/refs/tags/495.46.tar.gz -> nvidia-xconfig-495.46.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 linux-info 6b67971d8a0a029d13181f2cfb9f5fa9 linux-mod 1c03540c81548283580ab5526ab0978c multilib 8a0248f83ae77f945d376ff4a7953257 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 928e1f35ef78ba9fc2b214e29c2b55a4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=e691eb8f40e778401eb5519d0b9859c4 +_md5_=6f3bf927b7f553211977d9e40f2fa3a4 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-495.46-r20 b/metadata/md5-cache/x11-drivers/nvidia-drivers-495.46-r20 index a1921ade1f2c..529298b5b7ba 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-495.46-r20 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-495.46-r20 @@ -11,4 +11,4 @@ RESTRICT=bindist SLOT=0/495 SRC_URI=amd64? ( https://us.download.nvidia.com/XFree86/Linux-x86_64/495.46/NVIDIA-Linux-x86_64-495.46.run ) arm64? ( https://us.download.nvidia.com/XFree86/aarch64/495.46/NVIDIA-Linux-aarch64-495.46.run ) https://github.com/NVIDIA/nvidia-installer/archive/refs/tags/495.46.tar.gz -> nvidia-installer-495.46.tar.gz https://github.com/NVIDIA/nvidia-modprobe/archive/refs/tags/495.46.tar.gz -> nvidia-modprobe-495.46.tar.gz https://github.com/NVIDIA/nvidia-persistenced/archive/refs/tags/495.46.tar.gz -> nvidia-persistenced-495.46.tar.gz https://github.com/NVIDIA/nvidia-settings/archive/refs/tags/495.46.tar.gz -> nvidia-settings-495.46.tar.gz https://github.com/NVIDIA/nvidia-xconfig/archive/refs/tags/495.46.tar.gz -> nvidia-xconfig-495.46.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic d5e1306543bc457213f68bb18f830d14 linux-info 6b67971d8a0a029d13181f2cfb9f5fa9 linux-mod 1c03540c81548283580ab5526ab0978c multilib 8a0248f83ae77f945d376ff4a7953257 readme.gentoo-r1 c9646d622541c023f5159b86a14e930c strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 928e1f35ef78ba9fc2b214e29c2b55a4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=87820c9ee98a669d0738509d17e115db +_md5_=c8d2464e0e29abf2054614da6d74e95e diff --git a/metadata/md5-cache/x11-terms/Manifest.gz b/metadata/md5-cache/x11-terms/Manifest.gz index 7309d1abb552..00d5a89109b3 100644 Binary files a/metadata/md5-cache/x11-terms/Manifest.gz and b/metadata/md5-cache/x11-terms/Manifest.gz differ diff --git a/metadata/md5-cache/x11-terms/guake-3.8.1 b/metadata/md5-cache/x11-terms/guake-3.8.1 new file mode 100644 index 000000000000..9ae82bef4a49 --- /dev/null +++ b/metadata/md5-cache/x11-terms/guake-3.8.1 @@ -0,0 +1,15 @@ +BDEPEND=python_single_target_python3_8? ( dev-python/pbr[python_targets_python3_8(-)] test? ( dev-python/pyfakefs[python_targets_python3_8(-)] dev-python/pytest-mock[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-python/pbr[python_targets_python3_9(-)] test? ( dev-python/pyfakefs[python_targets_python3_9(-)] dev-python/pytest-mock[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-python/pbr[python_targets_python3_10(-)] test? ( dev-python/pyfakefs[python_targets_python3_10(-)] dev-python/pytest-mock[python_targets_python3_10(-)] ) ) dev-libs/glib:2 gnome-base/gsettings-desktop-schemas sys-devel/gettext test? ( python_single_target_python3_8? ( dev-python/dbus-python[python_targets_python3_8(-)] dev-python/pycairo[python_targets_python3_8(-)] dev-python/pygobject:3[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/dbus-python[python_targets_python3_9(-)] dev-python/pycairo[python_targets_python3_9(-)] dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/dbus-python[python_targets_python3_10(-)] dev-python/pycairo[python_targets_python3_10(-)] dev-python/pygobject:3[python_targets_python3_10(-)] ) dev-libs/keybinder:3[introspection] x11-libs/libnotify[introspection] x11-libs/libwnck:3[introspection] x11-libs/vte:2.91[introspection] utempter? ( sys-libs/libutempter ) python_single_target_python3_8? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/pytest-4.5.0[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pytest-4.5.0[python_targets_python3_10(-)] ) ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) python_single_target_python3_8? ( >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/setuptools-42.0.2[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/setuptools-42.0.2[python_targets_python3_10(-)] ) test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm prepare setup test +DESCRIPTION=Drop-down terminal for GNOME +EAPI=8 +HOMEPAGE=http://guake-project.org/ +IUSE=utempter test python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 test +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=GPL-2+ +RDEPEND=python_single_target_python3_8? ( dev-python/dbus-python[python_targets_python3_8(-)] dev-python/pycairo[python_targets_python3_8(-)] dev-python/pygobject:3[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/dbus-python[python_targets_python3_9(-)] dev-python/pycairo[python_targets_python3_9(-)] dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/dbus-python[python_targets_python3_10(-)] dev-python/pycairo[python_targets_python3_10(-)] dev-python/pygobject:3[python_targets_python3_10(-)] ) dev-libs/keybinder:3[introspection] x11-libs/libnotify[introspection] x11-libs/libwnck:3[introspection] x11-libs/vte:2.91[introspection] utempter? ( sys-libs/libutempter ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) +REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/Guake/guake/archive/refs/tags/3.8.1.tar.gz -> guake-3.8.1.tar.gz +_eclasses_=distutils-r1 63df6e5a6bbff9ec3cf60cf7cdc94f23 gnome2-utils 239e7afa214b50012f83b8bb61de7555 multilib 8a0248f83ae77f945d376ff4a7953257 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 d46c125afba8be02eb1cd7104bac6e9c python-utils-r1 a8b7938ade305f087865de7e52d079b5 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx fa024aa649b6bd544144bf94893d402c xdg-utils 4f29a8b760a594a212abe9c2ba957c31 +_md5_=c05d63db8d6d51cbe75f8fea3614f342 diff --git a/metadata/md5-cache/x11-terms/rxvt-unicode-9.30 b/metadata/md5-cache/x11-terms/rxvt-unicode-9.30 index 3cc97bc4a6c9..86dd28eaf214 100644 --- a/metadata/md5-cache/x11-terms/rxvt-unicode-9.30 +++ b/metadata/md5-cache/x11-terms/rxvt-unicode-9.30 @@ -5,10 +5,10 @@ DESCRIPTION=rxvt clone with xft and unicode support EAPI=8 HOMEPAGE=http://software.schmorp.de/pkg/rxvt-unicode.html IUSE=24-bit-color 256-color blink fading-colors +font-styles gdk-pixbuf iso14755 +mousewheel +perl startup-notification unicode3 xft -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86 LICENSE=GPL-3 RDEPEND=>=sys-libs/ncurses-5.7-r6:= dev-libs/libptytty media-libs/fontconfig x11-libs/libX11 x11-libs/libXrender x11-libs/libXt gdk-pixbuf? ( x11-libs/gdk-pixbuf ) kernel_Darwin? ( dev-perl/Mac-Pasteboard ) perl? ( dev-lang/perl:= ) startup-notification? ( x11-libs/startup-notification ) xft? ( x11-libs/libXft ) SLOT=0 SRC_URI=http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-9.30.tar.bz2 https://dev.gentoo.org/~marecki/dists/rxvt-unicode/rxvt-unicode-9.29_24-bit-color_aur-9.26-20210712.patch.xz _eclasses_=autotools c9df06c186913b43eb211100ef5fe2cf desktop c0d27bf73aa08ca05b663dbd31fbef28 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 8a0248f83ae77f945d376ff4a7953257 prefix d04f14b297013ad1410550c0757f14f8 systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=33122d4ae4d23bee853aff2b26917507 +_md5_=6e3894f9eb73625e80e478d3c657bcb7 diff --git a/metadata/md5-cache/x11-themes/Manifest.gz b/metadata/md5-cache/x11-themes/Manifest.gz index 50d3371caf6a..58934fd1c233 100644 Binary files a/metadata/md5-cache/x11-themes/Manifest.gz and b/metadata/md5-cache/x11-themes/Manifest.gz differ diff --git a/metadata/md5-cache/x11-themes/gtk-engines-murrine-0.98.2-r3 b/metadata/md5-cache/x11-themes/gtk-engines-murrine-0.98.2-r3 index 8dc48ca46d9d..3521066fec71 100644 --- a/metadata/md5-cache/x11-themes/gtk-engines-murrine-0.98.2-r3 +++ b/metadata/md5-cache/x11-themes/gtk-engines-murrine-0.98.2-r3 @@ -5,11 +5,11 @@ DESCRIPTION=Murrine GTK+2 Cairo Engine EAPI=7 HOMEPAGE=https://tracker.debian.org/pkg/gtk2-engines-murrine IUSE=+themes animation-rtl 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 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~amd64 ~arm ~arm64 ppc ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux LICENSE=LGPL-2.1 LGPL-3 PDEPEND=themes? ( x11-themes/murrine-themes ) RDEPEND=>=x11-libs/gtk+-2.24.23:2[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/glib-2.34.3:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/gdk-pixbuf-2.30.7:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/cairo-1.12.14-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(-)?] >=x11-libs/pango-1.36.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/pixman-0.32.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(-)?] SLOT=0 SRC_URI=mirror://gnome/sources/murrine/0.98/murrine-0.98.2.tar.xz _eclasses_=gnome.org b5c48cddff1da36a205d924d722b28c9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 8a0248f83ae77f945d376ff4a7953257 multilib-build 19ec165e9adcaa4c132b9e3fe3e7f556 multilib-minimal be5919734a8448dddd49c2b26db45091 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=50206afc450518d7ac5a7b2e4a64d9fd +_md5_=e791d0abd8a1844d975ac4f011b68d74 diff --git a/metadata/md5-cache/x11-themes/murrine-themes-0.98.11 b/metadata/md5-cache/x11-themes/murrine-themes-0.98.11 index fe2b7d56aac1..75cea53a96e9 100644 --- a/metadata/md5-cache/x11-themes/murrine-themes-0.98.11 +++ b/metadata/md5-cache/x11-themes/murrine-themes-0.98.11 @@ -2,9 +2,9 @@ DEFINED_PHASES=install prepare DESCRIPTION=Themes for the Murrine GTK+2 Cairo Engine EAPI=8 HOMEPAGE=https://tracker.debian.org/pkg/murrine-themes -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ppc ppc64 ~riscv ~x86 LICENSE=GPL-2 RDEPEND=>=x11-themes/gtk-engines-murrine-0.98.0 SLOT=0 SRC_URI=mirror://debian/pool/main/m/murrine-themes/murrine-themes_0.98.11.tar.xz -_md5_=06ed6f70700a08216b8ec01e356993c4 +_md5_=670bbd3749d6a3843779c5b9062fed28 diff --git a/metadata/md5-cache/x11-wm/Manifest.gz b/metadata/md5-cache/x11-wm/Manifest.gz index 55432e409023..42c645c5f612 100644 Binary files a/metadata/md5-cache/x11-wm/Manifest.gz and b/metadata/md5-cache/x11-wm/Manifest.gz differ diff --git a/metadata/md5-cache/x11-wm/cwm-6.6 b/metadata/md5-cache/x11-wm/cwm-6.6 deleted file mode 100644 index 47c855c71539..000000000000 --- a/metadata/md5-cache/x11-wm/cwm-6.6 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=sys-devel/bison virtual/pkgconfig -DEFINED_PHASES=compile install -DEPEND=x11-libs/libXft x11-libs/libXinerama x11-libs/libXrandr -DESCRIPTION=OpenBSD fork of calmwm, a clean and lightweight window manager -EAPI=7 -HOMEPAGE=https://www.openbsd.org/cgi-bin/cvsweb/xenocara/app/cwm/ https://github.com/chneukirchen/cwm -KEYWORDS=amd64 arm ~arm64 x86 -LICENSE=ISC -RDEPEND=x11-libs/libXft x11-libs/libXinerama x11-libs/libXrandr -SLOT=0 -SRC_URI=https://github.com/leahneukirchen/cwm/archive/v6.6.tar.gz -> cwm-6.6.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 multilib 8a0248f83ae77f945d376ff4a7953257 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=34655a33b79941c1e89f7eeb16a02342 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 9e00790bf803..21a1aabaf1f5 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Tue, 28 Dec 2021 08:39:09 +0000 +Wed, 29 Dec 2021 07:09:13 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index a2dd3e8daea1..a78b22229fe0 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Tue Dec 28 08:39:08 AM UTC 2021 +Wed Dec 29 07:09:13 AM UTC 2021 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 54064098af67..72bddc9f9686 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Tue, 28 Dec 2021 09:00:01 +0000 +Wed, 29 Dec 2021 07:30:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index b344e2f23c13..1802e7e6e787 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -eef6437a7b61cda1cc9836a7f2bc9559a81dc606 1640679958 2021-12-28T08:25:58+00:00 +960d6582105480888b1d2ee989750897a9a4ff87 1640761184 2021-12-29T06:59:44+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 3e2241155ad3..8953762a1cd5 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1640680501 Tue 28 Dec 2021 08:35:01 AM UTC +1640761801 Wed 29 Dec 2021 07:10:01 AM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index f422db91b466..21a1aabaf1f5 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Tue, 28 Dec 2021 08:39:08 +0000 +Wed, 29 Dec 2021 07:09:13 +0000 diff --git a/net-analyzer/Manifest.gz b/net-analyzer/Manifest.gz index 9061c512e986..2ffd51b866f9 100644 Binary files a/net-analyzer/Manifest.gz and b/net-analyzer/Manifest.gz differ diff --git a/net-analyzer/snallygaster/Manifest b/net-analyzer/snallygaster/Manifest index 976721d1609b..ec0b3ff27da7 100644 --- a/net-analyzer/snallygaster/Manifest +++ b/net-analyzer/snallygaster/Manifest @@ -1,3 +1,4 @@ +DIST snallygaster-0.0.11.tar.gz 25238 BLAKE2B 11867c0a71cd1701205f499cc7e492520018d39dcdeae0d8e8ae130e2034fd15d20039ed2c7325c879b1640b67a02515685640d5278e0aaafba864fd9d47a7a0 SHA512 6c050f8d67748fa148a578e37f3788305251d210691047f045d63dd531eca4ef4eb9e1d74a22ce9db13c71e471ced304d8138b8f283a1fe4841381532baab733 DIST snallygaster-0.0.6.tar.gz 22260 BLAKE2B 5f5f45678ee83922d477eb7356bf830a4ececbff6fc02bc21d2b714abf350c1b2643fb8134f330d8f54a4c58809b9de2671f46b728e631ac0a5f4996f87fd8e1 SHA512 abca663005e43948ef7c6516a3e85d1b1010811365f39a280b9c091490a8b4687fdaa1b0acbd29f5a84285fe16cd74398098eb9600b5ec41ec880d355cd0ddbd DIST snallygaster-0.0.8.tar.gz 23341 BLAKE2B 0b4e92b50c9f766440a19bab6e39f7be323c5574c8f350ed3fbd07499ca04b358ec0e66deeddd30b5e798d093a73fbce65434be4058285eb773918314f373dac SHA512 a4937d5e486109deb54d4a3494fcdb2b06a0938cb9ca686550616d31d2f5bde01b4162f610db15c34c86e41673f6f05f749fb921d5f858cbc4a2fc7f65a6dda6 DIST snallygaster-0.0.9.tar.gz 24055 BLAKE2B 049a88250877ed87103d23a30443ed638320e61c788716d432d877407c837f439bd16dc78a6eb00f7fea844280975f155898d9b084f7e285a0ed81a6becf9d68 SHA512 e7de6d97576f1651e0a6882c4d2766efe82b8656f53a6c30a5e36eeadbaa4fdc2b79dc370a1106a0bbd916d45d1c92169dcfb5d7c75e89946b371bc80098366c diff --git a/net-analyzer/snallygaster/snallygaster-0.0.11.ebuild b/net-analyzer/snallygaster/snallygaster-0.0.11.ebuild new file mode 100644 index 000000000000..48f6645e8f84 --- /dev/null +++ b/net-analyzer/snallygaster/snallygaster-0.0.11.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{7,8,9} ) +DISTUTILS_SINGLE_IMPL=1 +inherit distutils-r1 + +DESCRIPTION="Finds file leaks and other security problems on HTTP servers" +HOMEPAGE="https://github.com/hannob/snallygaster" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="CC0-1.0" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="dev-python/dnspython + dev-python/urllib3 + dev-python/beautifulsoup4" +RDEPEND="${DEPEND}" +DOCS=( README.md TESTS.md ) + +# Only codingstyle and similar tests, require dependencies +# not packaged in Gentoo +RESTRICT="test" diff --git a/net-dns/Manifest.gz b/net-dns/Manifest.gz index bc74d5c925a7..6ffc48c26d50 100644 Binary files a/net-dns/Manifest.gz and b/net-dns/Manifest.gz differ diff --git a/net-dns/unbound/unbound-1.13.2-r1.ebuild b/net-dns/unbound/unbound-1.13.2-r1.ebuild index b9020033208e..b0b17344a2a6 100644 --- a/net-dns/unbound/unbound-1.13.2-r1.ebuild +++ b/net-dns/unbound/unbound-1.13.2-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://nlnetlabs.nl/downloads/unbound/${MY_P}.tar.gz" LICENSE="BSD GPL-2" SLOT="0/8" # ABI version of libunbound.so -KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~x86" +KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~mips ppc ppc64 x86" IUSE="debug dnscrypt dnstap +ecdsa ecs gost +http2 python redis selinux static-libs systemd test +tfo threads" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RESTRICT="!test? ( test )" diff --git a/net-im/Manifest.gz b/net-im/Manifest.gz index 557ee0b9c880..4d72590c8518 100644 Binary files a/net-im/Manifest.gz and b/net-im/Manifest.gz differ diff --git a/net-im/rocketchat-desktop-bin/Manifest b/net-im/rocketchat-desktop-bin/Manifest index f50de2ac8795..76fadfcbf4b8 100644 --- a/net-im/rocketchat-desktop-bin/Manifest +++ b/net-im/rocketchat-desktop-bin/Manifest @@ -1 +1 @@ -DIST rocketchat-3.7.2.x86_64.rpm 72045336 BLAKE2B 7c40abf16fa9a5d45809bb142f491da35b8bd0096b66b966e4e6a63520e6b4387aed6cbfeefc9ccdd1806171cb6e71259833c3691a88c3093cb8465e74d4672c SHA512 bcf94c6b0c1fbf1ae0c2c57609865a3b849283315c0e60682926cbc49eb556d144358e3c1d3792ae5f901ed7cef992f0f868c4338b9418fc6d37d0e99168778f +DIST rocketchat-3.7.3.x86_64.rpm 72060836 BLAKE2B 4d7760c954a9e9f75440bb27a2a3b60dc788a72da2e20a64d3231684ec1f465657448426b26c3e261de6f6a06a60ecb072325e00b334258211ade2ed4532095b SHA512 b88f49a567460f6b6ec6c4dc809a0bdc6dbe14194841e85b4a7136113ccf504b020a36fd489ee0b859bacb0d5555b29ff55cf8cf32b2c11f60f79b37550a4535 diff --git a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.2.ebuild b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.3.ebuild similarity index 100% rename from net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.2.ebuild rename to net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.3.ebuild diff --git a/net-libs/Manifest.gz b/net-libs/Manifest.gz index 8a07fbd6afbd..5c71ee31b3d9 100644 Binary files a/net-libs/Manifest.gz and b/net-libs/Manifest.gz differ diff --git a/net-libs/enet/Manifest b/net-libs/enet/Manifest index daa988d6f3fa..a873dd5c2d1d 100644 --- a/net-libs/enet/Manifest +++ b/net-libs/enet/Manifest @@ -1,3 +1,2 @@ DIST enet-1.2.2.tar.gz 413454 BLAKE2B 3d13ae43a3ce361cf19d7b79c8ec92f76b7c1066659bf4e531a3144b03aac4e7b3738c102eff12bc0748a4a798e7be77473a6b386d29bb416998057f71ffe9d9 SHA512 2c28ab4b650dd4165ee5913c1bc80dc47e43f2363a5fdd7f3aa9be8fb3afbc8aff7a6bce731f7dac45eb930fc6338cd811c07e8dedca5554a7dd32293685062d -DIST enet-1.3.13.tar.gz 669090 BLAKE2B 3041e9b2fe431dda2eae3464417d79b80664ff2c303222607991db28328e8eca2357fbf66248f40344bf93a26e0d1ffdad4698f9fe58939224b830700acee501 SHA512 82501c0248330a3a6bcac907907760e59b18cb662ebb42fe2c91e1557f1bc8ab452bf3fe7477dc01fa7a6e3b6124e1eb8eac46382d5bbebb2394879f9568b5df DIST enet-1.3.17.tar.gz 703278 BLAKE2B d31838a173f629a2216f59173c259cf7cb35985913c5f8f016641ceb189dc20308effa206f03391cafde842ad6e43ec1776d38ce02283bd5990ccf38eadf4d6b SHA512 efa0cb093a6ca295e5012a4fdebc5ffd6516a66a967e97b386b72781b18ce4a118c9bf94e87adbbdcd0ed441e22c62a05c24ff39fd6b475919e8efe9ab4715e4 diff --git a/net-libs/enet/enet-1.3.13.ebuild b/net-libs/enet/enet-1.3.13.ebuild deleted file mode 100644 index 0e307002387a..000000000000 --- a/net-libs/enet/enet-1.3.13.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Relatively thin, simple and robust network communication layer on top of UDP" -HOMEPAGE="http://enet.bespin.org/" -SRC_URI="http://enet.bespin.org/download/${P}.tar.gz" - -LICENSE="MIT" -SLOT="1.3/7" -KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86" -IUSE="static-libs" - -RDEPEND="!${CATEGORY}/${PN}:0" - -src_configure() { - econf $(use_enable static-libs static) -} - -src_install() { - default - find "${ED}" -name '*.la' -delete || die -} diff --git a/net-libs/libmicrohttpd/Manifest b/net-libs/libmicrohttpd/Manifest index 86e8f26e846f..a4ca0686a148 100644 --- a/net-libs/libmicrohttpd/Manifest +++ b/net-libs/libmicrohttpd/Manifest @@ -2,3 +2,4 @@ DIST libmicrohttpd-0.9.68.tar.gz 1884342 BLAKE2B 3f74c48917fa19753a617242fa07b99 DIST libmicrohttpd-0.9.72.tar.gz 1693553 BLAKE2B 24d9284d8cab65d4a5b6b7f3a5b860dfd8cf69b21e44ee05ae2f7561b766a72d2dbb7f57849a31c22454e211befa74e058f78814b79e7876b3d14c7252ab5800 SHA512 9695e2fb08785e4b60342226ef3a0af22da4d80f127e7db9ec80ce844f70d0d781b30af207d58d8eb691b85a5fe4691cb9ecf887ca86f5e059a05259ae041316 DIST libmicrohttpd-0.9.73.tar.gz 1738675 BLAKE2B 63845b1b7fa0aa8ce29e9917521e10bd59fa0d27658e87ef3273d5014adf5cd9514a2d84465a573df03b44dcd50da7d157ef9c4952107ebba49efdfb398476c2 SHA512 473996b087ac6734ab577a1c7681c6c0b0136e04e34e13c3b50fd758358c1516017ad79097e0c57792786f6dd0208834374c09238113efed13bb4be11ef649d3 DIST libmicrohttpd-0.9.74.tar.gz 1962057 BLAKE2B 6751696740e2893b6ad1ecf5f6e6716dc4b053f788ca1c9c76a25051437942cd975dc0ee428a65af58da04f4cca41c4ed79cdd335b3f90d1dd52651185ee42dc SHA512 86e8b88e064f17557455617975888993a285f4de6d4051cb837ef3e7328d3718001ef280473d306724dd85a01e1787fca099d4bd18e5d78b766e41a3a9f126ef +DIST libmicrohttpd-0.9.75.tar.gz 1952076 BLAKE2B 419d7b7113edbcc54eec3e3b6da92d040e15b451bde4e1372b368fdd87277c85daddc295bc71d25bf02135921a8716876e9536c9dee286fa29b66bfb8167ebd2 SHA512 4dc62ed191342a61cc2767171bb1ff4050f390db14ef7100299888237b52ea0b04b939c843878fe7f5daec2b35a47b3c1b7e7c11fb32d458184fe6b19986a37c diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.75.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.75.ebuild new file mode 100644 index 000000000000..0103838713fd --- /dev/null +++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.75.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +inherit multilib-minimal + +MY_P="${P/_/}" + +DESCRIPTION="Small C library to run an HTTP server as part of another application" +HOMEPAGE="https://www.gnu.org/software/libmicrohttpd/" +SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz" +S="${WORKDIR}"/${MY_P} + +LICENSE="LGPL-2.1+" +SLOT="0/12" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="+epoll ssl static-libs test +thread-names" +RESTRICT="!test? ( test )" + +RDEPEND="ssl? ( >net-libs/gnutls-2.12.20:= )" +# libcurl and the curl binary are used during tests on CHOST +DEPEND="${RDEPEND} + test? ( net-misc/curl[ssl?] )" +BDEPEND="ssl? ( virtual/pkgconfig )" + +DOCS=( AUTHORS NEWS COPYING README ChangeLog ) + +multilib_src_configure() { + ECONF_SOURCE="${S}" \ + econf \ + --enable-shared \ + $(use_enable static-libs static) \ + --disable-nls \ + --enable-bauth \ + --enable-dauth \ + --disable-examples \ + --enable-messages \ + --enable-postprocessor \ + --enable-httpupgrade \ + --disable-experimental \ + --disable-heavy-tests \ + $(use_enable thread-names) \ + $(use_enable epoll) \ + $(use_enable test curl) \ + $(use_enable ssl https) \ + $(use_with ssl gnutls) +} + +multilib_src_install_all() { + default + + if ! use static-libs; then + find "${ED}" -name '*.la' -delete || die + fi +} diff --git a/net-libs/mbedtls/Manifest b/net-libs/mbedtls/Manifest index 855bdcea15c8..8ae3706a4a11 100644 --- a/net-libs/mbedtls/Manifest +++ b/net-libs/mbedtls/Manifest @@ -1,4 +1,3 @@ -DIST mbedtls-2.16.11.tar.gz 2692209 BLAKE2B 9d7bccfc0d1bc5a038b6dcb866722a27362c229a5f1b515396aabbb53e77cfe36525446fb2557c817772810f24335a51c9a5c45bcfa866d8a07ff4e96498dbde SHA512 b35de49ce596b549b5e85b6affdf2cf1360fb8b0d4e551636a91a4923b1cb212dce7880d575d40c73d5682afe8bb893312d803798ce8f807842a2aab8e2ba2ee DIST mbedtls-2.16.12.tar.gz 2702190 BLAKE2B 3cbe0bcfd0eca279d9b4b3816416b8e778f0aa38d368d810701e65140f0d1524afabe4fd1a1a65297f872a7dfafb7d2feeb7382fe8ea2b180f24551ceac53c26 SHA512 40c4487cc40afcf929bc7158d735a869ebada41c811f63a10d74e9b9644960e2a0aeb7c7c9841c0aef815425990847d47e7f42f9bafe0b2a959e769e3d74ebe9 DIST mbedtls-2.27.0.tar.gz 4212185 BLAKE2B 31840e5a518643495f319cac8e0c876bdca5dbdee6524d30cace3538d5fb5ba7847dd653f61f775f5c3c384ac0533afdbf6172b3e523db515eceecc29fadd2da SHA512 9503ef75f08d2574e0800b2e3b6f030461cbd97c74863a20e5688ced7558b0b6f87cbe33cbd003e69c825d0321393fe9b00b0be190ab408138414b99d5102994 DIST mbedtls-2.28.0.tar.gz 3712239 BLAKE2B 1141465bc5b73e7fd94bbd02c79290093fd075626be93aea839a54ebff81fb00917f0a4fe7911fee983a36147fa4922d258714a330b40b0da4764a3b2419df8b SHA512 2ddc161caeebe8bf1e8cf23c398f65ceff699eb6487a7bcaf6a665879aac5458e21e26b06370085cbdae6ce6b5394afece656aa6307bbb3f5b701bcb41f3dd64 diff --git a/net-libs/mbedtls/mbedtls-2.16.11.ebuild b/net-libs/mbedtls/mbedtls-2.16.11.ebuild deleted file mode 100644 index 8ddca1907c00..000000000000 --- a/net-libs/mbedtls/mbedtls-2.16.11.ebuild +++ /dev/null @@ -1,100 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake multilib-minimal - -DESCRIPTION="Cryptographic library for embedded systems" -HOMEPAGE="https://tls.mbed.org/" -SRC_URI="https://github.com/ARMmbed/mbedtls/archive/${P}.tar.gz" -S=${WORKDIR}/${PN}-${P} - -LICENSE="Apache-2.0" -SLOT="0/3.12.0" # ffmpeg subslot naming: SONAME tuple of {libmbedcrypto.so,libmbedtls.so,libmbedx509.so} -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86" -IUSE="cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib" -RESTRICT="!test? ( test )" - -RDEPEND=" - programs? ( - dev-libs/openssl:0= - ) - zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen media-gfx/graphviz ) - test? ( dev-lang/perl )" - -enable_mbedtls_option() { - local myopt="$@" - # check that config.h syntax is the same at version bump - sed -i \ - -e "s://#define ${myopt}:#define ${myopt}:" \ - include/mbedtls/config.h || die -} - -src_prepare() { - use cpu_flags_x86_sse2 && enable_mbedtls_option MBEDTLS_HAVE_SSE2 - use zlib && enable_mbedtls_option MBEDTLS_ZLIB_SUPPORT - use havege && enable_mbedtls_option MBEDTLS_HAVEGE_C - use threads && enable_mbedtls_option MBEDTLS_THREADING_C - use threads && enable_mbedtls_option MBEDTLS_THREADING_PTHREAD - - cmake_src_prepare -} - -multilib_src_configure() { - local mycmakeargs=( - -DENABLE_PROGRAMS=$(multilib_native_usex programs) - -DENABLE_ZLIB_SUPPORT=$(usex zlib) - -DUSE_STATIC_MBEDTLS_LIBRARY=$(usex static-libs) - -DENABLE_TESTING=$(usex test) - -DUSE_SHARED_MBEDTLS_LIBRARY=ON - -DINSTALL_MBEDTLS_HEADERS=ON - -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" - ) - - cmake_src_configure -} - -multilib_src_compile() { - cmake_src_compile - use doc && multilib_is_native_abi && cd "${S}" && emake apidoc -} - -multilib_src_test() { - # psa isn't ready yet, it might be in 3.x(?) but certainly not - # at the moment. - # bug #718390 - local myctestargs=( - -E "(psa_crypto|psa_its-suite)" - ) - - LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${BUILD_DIR}/library" \ - cmake_src_test -} - -multilib_src_install() { - cmake_src_install -} - -multilib_src_install_all() { - use doc && HTML_DOCS=( apidoc ) - - einstalldocs - - if use programs ; then - # avoid file collisions with sys-apps/coreutils - local p e - for p in "${ED}"/usr/bin/* ; do - if [[ -x "${p}" && ! -d "${p}" ]] ; then - mv "${p}" "${ED}"/usr/bin/mbedtls_${p##*/} || die - fi - done - for e in aes hash pkey ssl test ; do - docinto "${e}" - dodoc programs/"${e}"/*.c - dodoc programs/"${e}"/*.txt - done - fi -} diff --git a/net-libs/mbedtls/mbedtls-2.16.12.ebuild b/net-libs/mbedtls/mbedtls-2.16.12.ebuild index 8ddca1907c00..0ad3fec46cf1 100644 --- a/net-libs/mbedtls/mbedtls-2.16.12.ebuild +++ b/net-libs/mbedtls/mbedtls-2.16.12.ebuild @@ -13,7 +13,7 @@ S=${WORKDIR}/${PN}-${P} LICENSE="Apache-2.0" SLOT="0/3.12.0" # ffmpeg subslot naming: SONAME tuple of {libmbedcrypto.so,libmbedtls.so,libmbedx509.so} KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86" -IUSE="cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib" +IUSE="cmac cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib" RESTRICT="!test? ( test )" RDEPEND=" @@ -34,6 +34,7 @@ enable_mbedtls_option() { } src_prepare() { + use cmac && enable_mbedtls_option MBEDTLS_CMAC_C use cpu_flags_x86_sse2 && enable_mbedtls_option MBEDTLS_HAVE_SSE2 use zlib && enable_mbedtls_option MBEDTLS_ZLIB_SUPPORT use havege && enable_mbedtls_option MBEDTLS_HAVEGE_C diff --git a/net-libs/mbedtls/mbedtls-2.27.0-r1.ebuild b/net-libs/mbedtls/mbedtls-2.27.0-r1.ebuild index fc18e8b6b047..7436d6b627e9 100644 --- a/net-libs/mbedtls/mbedtls-2.27.0-r1.ebuild +++ b/net-libs/mbedtls/mbedtls-2.27.0-r1.ebuild @@ -13,7 +13,7 @@ S=${WORKDIR}/${PN}-${P} LICENSE="Apache-2.0" SLOT="0/7.13.1" # ffmpeg subslot naming: SONAME tuple of {libmbedcrypto.so,libmbedtls.so,libmbedx509.so} KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" -IUSE="cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib" +IUSE="cmac cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib" RESTRICT="!test? ( test )" RDEPEND=" @@ -34,6 +34,7 @@ enable_mbedtls_option() { } src_prepare() { + use cmac && enable_mbedtls_option MBEDTLS_CMAC_C use cpu_flags_x86_sse2 && enable_mbedtls_option MBEDTLS_HAVE_SSE2 use zlib && enable_mbedtls_option MBEDTLS_ZLIB_SUPPORT use havege && enable_mbedtls_option MBEDTLS_HAVEGE_C diff --git a/net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild b/net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild index ef9cb32d329a..545749431ca9 100644 --- a/net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild +++ b/net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild @@ -13,7 +13,7 @@ S=${WORKDIR}/${PN}-${P} LICENSE="Apache-2.0" SLOT="0/7.14.1" # ffmpeg subslot naming: SONAME tuple of {libmbedcrypto.so,libmbedtls.so,libmbedx509.so} KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" -IUSE="cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib" +IUSE="cmac cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib" RESTRICT="!test? ( test )" RDEPEND=" @@ -34,6 +34,7 @@ enable_mbedtls_option() { } src_prepare() { + use cmac && enable_mbedtls_option MBEDTLS_CMAC_C use cpu_flags_x86_sse2 && enable_mbedtls_option MBEDTLS_HAVE_SSE2 use zlib && enable_mbedtls_option MBEDTLS_ZLIB_SUPPORT use havege && enable_mbedtls_option MBEDTLS_HAVEGE_C diff --git a/net-libs/mbedtls/metadata.xml b/net-libs/mbedtls/metadata.xml index abf57a31dfbf..a39a95180bc6 100644 --- a/net-libs/mbedtls/metadata.xml +++ b/net-libs/mbedtls/metadata.xml @@ -10,6 +10,9 @@ cryptographic library written in C and targeted at embedded systems. + Enable block cipher-based message authentication + code algorithm + Enable the HAVEGE random generator. Warning: the HAVEGE random generator is not suitable for virtualized environments diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz index 8714b3b47dde..31486dc465a7 100644 Binary files a/net-misc/Manifest.gz and b/net-misc/Manifest.gz differ diff --git a/net-misc/pcapfix/Manifest b/net-misc/pcapfix/Manifest index 23a3cc3dde91..7364fd2bbe2c 100644 --- a/net-misc/pcapfix/Manifest +++ b/net-misc/pcapfix/Manifest @@ -1 +1,3 @@ DIST pcapfix-1.1.4.tar.gz 52184 BLAKE2B 4def04cebc9144af86d43c28892575627ed98bf14fa99e5e4fe5181a406871ceeac1f431c73d90daae151bb8b6e5315e8bc47c430d2ed55f9e0c3de1decbe0e9 SHA512 6203e9032d2f24fe5d4aaefd9cfd57ece97a318af3ecd8da7171307a59c2a10b2e92206d5cf96e2dd9bfafc239dd9bc95a224bf5fef9e0c0432a6e76ff10d1da +DIST pcapfix-1.1.7-musl-stdint.patch.bz2 2084 BLAKE2B 2dafe8597f247c1b403e89552403850f10e9a0149a74d092a9187510a997b6339af831ea6f3b01d7ab04367a966828aedc665b517e7108fea9b6d3607815d531 SHA512 5e6d197d6bda6bd10525066a46dc301ae7b92a2a0d9062e3dcef22730b27b12d1b8cd1e58e344f6b4a7bd5b0dfe1351bf868489285bf1651f8aa96f0014b3adf +DIST pcapfix-1.1.7.tar.gz 54784 BLAKE2B c688b3eabf04ff4baf88170c5868edd2b504779a9550ce6a2ca8b4839310b75a26c7e6ae6afc82cf763f19f8ffebe357c730b0ea1bd4b05ed071e78ad6c9f6e5 SHA512 d8d1106349116303f35254f680916f1ea26b163f9afceb5d237eed89880810d4b7b40ebca9de58ec95af2336dd78f4e11af1a08b89f6765055843a9791c156bd diff --git a/net-misc/pcapfix/pcapfix-1.1.7.ebuild b/net-misc/pcapfix/pcapfix-1.1.7.ebuild new file mode 100644 index 000000000000..dd1060063ecc --- /dev/null +++ b/net-misc/pcapfix/pcapfix-1.1.7.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Repair and fix broken pcap files" +HOMEPAGE="https://f00l.de/pcapfix/" +SRC_URI="https://f00l.de/pcapfix/${P}.tar.gz" +SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-1.1.7-musl-stdint.patch.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DOCS=( Changelog README ) + +PATCHES=( + "${WORKDIR}"/${PN}-1.1.7-musl-stdint.patch +) + +src_prepare() { + default + sed -e 's/gcc/$(CC) $(CFLAGS)/g' -i Makefile || die + use debug || sed -e 's/DEBUGFLAGS = -g/DEBUGFLAGS =/g' -i Makefile || die +} + +src_configure() { + tc-export CC +} + +src_install() { + doman pcapfix.1 + dobin pcapfix + einstalldocs +} diff --git a/net-misc/yt-dlp/Manifest b/net-misc/yt-dlp/Manifest index 34ae9be163da..e6af35864f5c 100644 --- a/net-misc/yt-dlp/Manifest +++ b/net-misc/yt-dlp/Manifest @@ -1,3 +1,2 @@ DIST yt-dlp-2021.12.1.tar.gz 2064958 BLAKE2B d97bf6bc5d6a97aec05be73dcc00aac6b1aff011c307abcbf604a3bfab06dadfd28401eab8ad26d42b7ec3db778c66e9fa2de09d3e6c28304fd28791532509d9 SHA512 d04e9e5ae36e73923ac79bb98af6e402ba0b4403430cbcc0517e7f446d42b6c637846b11489c0159faf667ab798b937abb9597fb5fba76b6f7b6e2b379bae328 -DIST yt-dlp-2021.12.25.tar.gz 2096136 BLAKE2B b40e35f8e7f644051ca80d7d6eeb5d7963e5d0b0c5ffbbc10ed2e4d1f7133a43ec19a715e2ca131fb95ce31c322b952cb13b40adcfe1d8f655e1bd2162ec8329 SHA512 826abb5654527e37454424a949607d2c9934328228566ab0baa89df23ea081c3feb01584a25d0154d30d389d4c10cc7203ad530ddf8472ae70d6e782e3ded490 DIST yt-dlp-2021.12.27.tar.gz 2102852 BLAKE2B 69a3a9c916771ab2e1b8f86bbc43e03d0543801f587708b638348088d4454aff8ac93420fd8bd2ebb4f493c74acdf23f08a9495dbcdad77d840a95cfece4aa6b SHA512 2c687493736fabe131481d6bf8df13afc1959ac1458675bfe3c4273df7bb64218f84e07ea324b664b0a52c3e39b3e10999e81bc907bfc98a71a28c92dca90737 diff --git a/net-misc/yt-dlp/yt-dlp-2021.12.25.ebuild b/net-misc/yt-dlp/yt-dlp-2021.12.25.ebuild deleted file mode 100644 index 449b50847e09..000000000000 --- a/net-misc/yt-dlp/yt-dlp-2021.12.25.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit bash-completion-r1 distutils-r1 optfeature - -DESCRIPTION="youtube-dl fork with additional features and fixes" -HOMEPAGE="https://github.com/yt-dlp/yt-dlp" -SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz" - -LICENSE="Unlicense" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86" - -RDEPEND=" - dev-python/pycryptodome[${PYTHON_USEDEP}] - !net-misc/youtube-dl" - -distutils_enable_tests pytest - -python_prepare_all() { - distutils-r1_python_prepare_all - - # adjust requires for pycryptodome and optional dependencies (bug #828466) - sed -ri setup.py \ - -e "s/'(pycryptodome)x'/'\1'/" \ - -e "s/'(mutagen|websockets)',?//g" || die -} - -python_test() { - epytest -m 'not download' -p no:markdown -} - -python_install() { - distutils-r1_python_install - - local sitedir=$(python_get_sitedir) - dosym yt_dlp "${sitedir#${EPREFIX}}"/youtube_dl -} - -python_install_all() { - dodoc README.md Changelog.md supportedsites.md - doman yt-dlp.1 - - dobashcomp completions/bash/yt-dlp - - insinto /usr/share/fish/vendor_completions.d - doins completions/fish/yt-dlp.fish - - insinto /usr/share/zsh/site-functions - doins completions/zsh/_yt-dlp - - rm -r "${ED}"/usr/share/doc/yt_dlp || die - - newbin - youtube-dl <<-EOF - #!/usr/bin/env sh - exec yt-dlp --compat-options youtube-dl "\${@}" - EOF -} - -pkg_postinst() { - optfeature "various features (merging tracks, streamed content)" media-video/ffmpeg - has_version media-video/atomicparsley || # allow fallback but don't advertise - optfeature "embedding metadata thumbnails in MP4/M4A files" media-libs/mutagen - - if [[ ! ${REPLACING_VERSIONS} ]] || - ver_test ${REPLACING_VERSIONS} -lt 2021.10.22-r2; then - elog 'A wrapper using "yt-dlp --compat-options youtube-dl" was installed' - elog 'as "youtube-dl". This is strictly for compatibility and it is' - elog 'recommended to use "yt-dlp" directly, it may be removed in the future.' - fi -} diff --git a/net-p2p/Manifest.gz b/net-p2p/Manifest.gz index 630cb32adfb2..303ac85efd12 100644 Binary files a/net-p2p/Manifest.gz and b/net-p2p/Manifest.gz differ diff --git a/net-p2p/go-ipfs/Manifest b/net-p2p/go-ipfs/Manifest index 6ef09a8be004..b9b09f0b2275 100644 --- a/net-p2p/go-ipfs/Manifest +++ b/net-p2p/go-ipfs/Manifest @@ -34,10 +34,10 @@ DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.10.0.mod 622 BLAKE2B eda541042b6f DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.5.0.mod 953 BLAKE2B c520f4cc8fbb60561cfd33b1f70839691a3970669c34c0bc1ede45a31ea53624d9c4d2b16de25533d3121792739006faecc1086afd2539e2a1c7e9b37fc6bead SHA512 33dacd4dc65bf8a7ead2e660e6719beb7024b1603e47e705ee657cf3024e5ec06c44ba88dfd05192142ce880903e94f8dd628d059ddc357e6b42e395953a86ba DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.6.0.mod 736 BLAKE2B 2337ea8dca35e9407e0b4fbb200e5465cf3338fe2eb3420444b1fa4805312f52cf9ade3e2e70d9dcc4973edcfcb1fe597d132032829133808c4842ad76f4c69b SHA512 e1e51b6a44ac17f31a09b6fefea0840fd92febeeaf97ef8ce960825473b5acbab5ade353f89d5d48b5a85ebf2b928f727ec9a3f58c8e39afbec4fbb9c22e44c0 DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.8.0.mod 622 BLAKE2B 621e3faa3335ebec92c376298699510d800c2653c3680a438095c3dd9d6ba1f83f13a0302f316beea786b8f606ff3b4f62d21abe63d72f3f5c4e12fb81f61511 SHA512 409dad03104a4ac6b4a8c6da3540ab382345c86e48732f2b37d64ae2bc1c721d9f0a1ed0824a36085baa7102d2626e84f44706b16297623e8deb58fa9e24ba38 -DIST contrib.go.opencensus.io%2Fexporter%2Fprometheus%2F@v%2Fv0.2.0.mod 431 BLAKE2B 3237015d3228279dc71efc8690d8953db1d2b9264710245fac65844d9d7065b20b441f82130d239df29e7ce05ee98f97e0b58bb711bc8b40f9921fbc8fe16343 SHA512 4ff8fed5f6cdf704bc930859d1c1af27df959ea7f14769c075a49d6850905b4bca550596e66d01d8493d4e95247cc37196a87406d4044e3dc76f9deedf387615 -DIST contrib.go.opencensus.io%2Fexporter%2Fprometheus%2F@v%2Fv0.2.0.zip 24875 BLAKE2B e1aa2ccd55163a45da85f4d27e4df0a45a8240fdde5fa17be7e4b73bdb8ced947d5506b279beceea754c12f370e1cbe77296939effbe4cb88cd4f8053fcde7f6 SHA512 f7a387f0940725f4437615635ccc16d6732acb65730edf91ca1d2f62d998228aff029dcd8e502e1f9924076175cbb442508ef86def9f52d7a2d9cc2214055245 DIST contrib.go.opencensus.io%2Fexporter%2Fprometheus%2F@v%2Fv0.3.0.mod 224 BLAKE2B f755d056e503b2a6e9edb51a4f5ca986aefb4fc84e1d3b3f984d6e5b365aceb2323e6e104b64a60e651321a5b6f93c95aa727586e104fef8e8344637b3aa1791 SHA512 71f14fea20c14d4f12b03fc4ccbd69edefa5383fa6d2584042c00cef4c3970511421aa932f07a333ed96e8b05100874273024471e651b1cad0cbace5d4b97c77 DIST contrib.go.opencensus.io%2Fexporter%2Fprometheus%2F@v%2Fv0.3.0.zip 39053 BLAKE2B a9f21ff60e396dede335c3d23d553bd16b6d1144daff685b9f85361041e284f19ca4171499b0b51a7ac7220d525c4b03477f755b5087465997bd6d1d377c88be SHA512 d3f3ca075b1a9cd7c5b4d26c2784ab08543b7b372155489f42976851bf6b127e1cb2ce2d3c00e48fb2db044a99804f60ad3aceb8080581c9c08bc721e93a3f45 +DIST contrib.go.opencensus.io%2Fexporter%2Fprometheus%2F@v%2Fv0.4.0.mod 225 BLAKE2B c8c0de66f4ab4ec518d9395d24c24e540c179ba5c521e6b3c00d377a787be237ab242b9f4560bdb73f609384d142c6835a4eff0152ff9ab8223f42cc72bd5f1a SHA512 a90a7143af9c72490edd31707034054bbd0c307e3bc44326e5d6cf10eeafbf19a8df6e3ae7a623198d5659a0ad4c78744421530688b7148e89d0892ea5f454f1 +DIST contrib.go.opencensus.io%2Fexporter%2Fprometheus%2F@v%2Fv0.4.0.zip 36919 BLAKE2B 572bf48c783015542596f90ead5c203a229c5a972368f9f7659a93785e893e866f9f7ef425cf3fde8b484670fbbf2b17c19e93885964de11d188bdd6259eb34f SHA512 d59fda3368f927380c969324ecfe1216b0da2ed75ceb312606d508ef37eb4102769ccc3ddcdd61cad2d62b57b7335a05759f7336e770a746c002f32853e68fe7 DIST dmitri.shuralyov.com%2Fapp%2Fchanges%2F@v%2Fv0.0.0-20180602232624-0a106ad413e3.mod 40 BLAKE2B a701681a24f3354c06bffbbff75ce9ee56a1512189b5f3791cdfde30efedea11121f097b6d06f7dff40f9f651b0eab82e79bc33d0ac003bbeb123568d23124df SHA512 26c349638b8c031e65fde1387c9fad8fd99f09e2e165d943ee5ed2d1858db713936f07f640e9b2bb4e156c794cdf18f7076a559c4df7ecf39deb959232ca7940 DIST dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod 36 BLAKE2B b430ef9388b0dfe932b201495a00275a6036338c99160d7362556be1e25924584b0802061d193533f23b1f76719dfd6a9484572babd25f1af0e53fd9bf07ac00 SHA512 196affe091247f94ceda4b56629bd62d4ee2b397f2c0f56c9534c02e43531b46705ad33543b58c1a4fc7a48e25e5923db087fe0485a93966a4086581c0d1d3e1 DIST dmitri.shuralyov.com%2Fhtml%2Fbelt%2F@v%2Fv0.0.0-20180602232347-f7d459c86be0.mod 38 BLAKE2B fe16fc3a32dfa62245da350c0082791b531fee71fc796e478326ba118ef6b939b775fbed97ba504a8712eee54a46d35081e84fbc66d2ccb3a52874fa256671c5 SHA512 a1c78474d2b67323d7d06018d53646df667fb3a6ed8ece9f6b482b4492c84cc71287b28932dde1a2962a610019b1c6290370fa100076fc185147c4406125870c @@ -49,7 +49,6 @@ DIST github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190306092124-e2d15f34 DIST github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.mod 39 BLAKE2B 013c2db2238182e2b9b4b5aaf9dc8a744ba371ba0c6e8a6c45a0f78d6704a1514fea45f6b6c585975dcaf094f709be2e6c80964cc053d32bec015ad8342c1fe2 SHA512 f50e5abcaac0ba2453bb7e8f674ef126673e5235069d4755dc38922427952dd3cb56748db564ff1d18f733e183480ff139e4a7029416ddd362eb61b560cf4d9a DIST github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.zip 10890 BLAKE2B 714e266a17616031876392480d8b9ef543b80d4222be5f4e56e9dac58426d680d5f12013b2451b04e74a9db7882eb7919a01f83e8b19b92ecfaaf1e0cae30414 SHA512 6508ec4841085a1e4a6e3a651d5c3387d7659e56137c0520838e9d000a7450738308d5068ad7303d405dbde7152185178eadb6ba568554e42e0ed477674fd3de DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod 34 BLAKE2B ce54a247aef91043830bdf0603c8452ba38eceb1495af6e7a74c9119234a0dc5cd080cb25258c28f5e270acf91189a5ed33e361cbf17de2be5e37dadbda1d90d SHA512 320941bc3b7fb8bc595e6135cbc513a7583d129f0cd92508055291e141191066303cf75148e25198c21f6c6c539a790ea3210f3ecf5de6a2a03b70c753091146 -DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.zip 56132 BLAKE2B 5edcfe991d7fc40094d637bae8d8d6f1f897ab3d3786ade2bb80287738103264520681ced8d30d2037253206c32d3f867f4d024a571cb9aad030ebc451e198eb SHA512 43ed64ae515738487e9b75a2290d0b2bc25e83c021a9f29b21487c37adbf34e74e1e7d3d5ec0dfe678c8396356f95c3993a5f5610d1791ff62056cd182a4272f DIST github.com%2F!burnt!sushi%2Fxgb%2F@v%2Fv0.0.0-20160522181843-27f122750802.mod 33 BLAKE2B d234bf9be3dd919cb1f8d33750a24dca68c90fea110fd0ff62f0dba86d2ebbfc66d55fea62745b6383c5607bc91cfd78c9d2cf12df251397e85995c04707caa2 SHA512 dbfa64ac31b25fdbff12110c6f9815abfde65f281e40852e7165499a2cefb6656c74fe0b82f0f018304daa02b83b421e9c15654efabad39787c69c1b2996a79d DIST github.com%2F!knetic%2Fgovaluate%2F@v%2Fv3.0.1-0.20171022003610-9aa49832a739+incompatible.mod 35 BLAKE2B 68297267e33add40ca12e681b6b4461ef8a3dd23eb205a365b13b158d0e055e3650fa9539eae43bbbf4ddb559c872b95ed541a3f4330a0ad3395089c4cb9c9f8 SHA512 73bd53e14c96c10e3288cd859b5d7758e6d2897369060b1581b6a4290e233877e408c9dc6350b763c2ab678a2e8f3e8f7f3bf563928b43ad37a48187ccc0ee7b DIST github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.mod 38 BLAKE2B 75361b0366672474afbbdf7b74559e5ef3ff08fffb6ceb928aa58e6ab055ff06a7180437a4921868c4aca678c9657d750f101cbfd27e0292e7d315007ef35192 SHA512 0e374f95dd9c31f90c223e7bd34343970cd44d7d1988b468348517a545e99834c3b69e4b52d9de5ef81faead1684c820d1976d1631dad8cb8cac403fa20efbe9 @@ -65,12 +64,11 @@ DIST github.com%2Faead%2Fsiphash%2F@v%2Fv1.0.1.mod 31 BLAKE2B 0e07ae1110a18d70ea DIST github.com%2Fafex%2Fhystrix-go%2F@v%2Fv0.0.0-20180502004556-fa1af6a1f4f5.mod 34 BLAKE2B 325996884246cd840e22801dc089388410afc2bd8ab7c5c1f4bac6aa6ac035f387e1b896a91702386edde85ba82efde16aa8d7bb55a7644fc3f530a36eabe89d SHA512 dcf507ac7e50307fec43fdc5e5dd93f0c8509ac99033500d1ff3414ac0a2419ddb10a688b17cd9d0035c36814a25ac68b771285ae21415eba7a55586b91fed7c DIST github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.mod 38 BLAKE2B 2e1a897393e3527f0f82e6ab9baf62558d9cf54b56ada5d79aa1b206128de30395d9082bc600c4aa2a17e81095e429cc5874de95047854531cccc9ea0b867de7 SHA512 072ca7ba3d5ca815f58848db201002cc572d95334aeacfe44cb226505ad20d82ce06eb2ee059650912ae499db6291822c583296cb65a66e54adce62d6d850929 DIST github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20190718012654-fb15b899a751.mod 38 BLAKE2B 2e1a897393e3527f0f82e6ab9baf62558d9cf54b56ada5d79aa1b206128de30395d9082bc600c4aa2a17e81095e429cc5874de95047854531cccc9ea0b867de7 SHA512 072ca7ba3d5ca815f58848db201002cc572d95334aeacfe44cb226505ad20d82ce06eb2ee059650912ae499db6291822c583296cb65a66e54adce62d6d850929 -DIST github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20190718012654-fb15b899a751.zip 66303 BLAKE2B 4b02e631a3537d577b78b1372f8496113c582bfaafc48f5ce6981ed72da6a611d6c692a85c6e7cc8aeb47c89d0fec9f491d59607ead55d5e4be256525d3173bb SHA512 d29dc8a3c82c34af07b0c393349eda79b30c988d439771e02106bf2f386ef5fc3feaebf00da3953a40bff2c5ed93880ecbf45e1607303c11a417bfffb96e2e65 DIST github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.mod 35 BLAKE2B 873b4b9c8491117a0b99bcc183ae96fc7e392c68d7271b73b5d7876574a5c7d67580425b35445ff2fff326c5cc7f328326d5d11946699c213cb2b84e8a9a0aad SHA512 7f23b8c5622c02b295646c7baf6f2ea3dd01e11e18ac9c263b853c7f771f5d098d8bcb75971f0cdc33d1c4765b563f3382ec5dc4bf20010065c3f1bc94e93175 DIST github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190717042225-c3de453c63f4.mod 35 BLAKE2B 873b4b9c8491117a0b99bcc183ae96fc7e392c68d7271b73b5d7876574a5c7d67580425b35445ff2fff326c5cc7f328326d5d11946699c213cb2b84e8a9a0aad SHA512 7f23b8c5622c02b295646c7baf6f2ea3dd01e11e18ac9c263b853c7f771f5d098d8bcb75971f0cdc33d1c4765b563f3382ec5dc4bf20010065c3f1bc94e93175 -DIST github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190717042225-c3de453c63f4.zip 5447 BLAKE2B 9b79de84354305adc2019db61eaa5f84daaf0ba088b1582776b4973d85fda9055264b14218a00ddaa3c23696f5c57574eecbd48c2c7dc4df84348bf5c507d559 SHA512 eb9b80bd07a9586681ccb20b48644c404ad326e65251571531776ffb51eed20dfc79cb34dba332dea2fb4aa1a766da2cbad597b59db3c7f770b56febe1956ed4 DIST github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190924025748-f65c72e2690d.mod 79 BLAKE2B 51cb1c2c33300626f74f843ce56c333b194b9a46230d3befe94343fe9daa62314a59b74a6d78c97415f839997fb42700c762fe02ef76240924ba52d18f723ad6 SHA512 df2dd357e057bb1fc65ef4869f64149f6446257406886e89a39f7dbc7e6c9da25a8c17567b14c8d3adefaf21fba98e0f2663924c7d32a4f82d30377ab4032162 -DIST github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190924025748-f65c72e2690d.zip 7096 BLAKE2B dd3436eacdcf42567210b68830f6a9663ed91531d73aa6c2548f50e387d7081a0908478135816a599014a82e23fd6ca9c2685ce8518c6ca73bce24a9f0ff5f6d SHA512 6111f8ea08657e90dce1ae450736cbc3a6e10cd61ee5211ef4cbb1abe1862d0fa658ef2922b6778084d10af3f3c55744962162bf9fbdf48d2c42f6a15b297ea2 +DIST github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20210927113745-59d0afb8317a.mod 88 BLAKE2B e68b2a7a39626a64da57cc09c741191628925ed60bb5558f7250d670ee75533d3e9f8142232f0d8388399a6fc2c15687bc148db4005638780c5214738035f818 SHA512 16082151aea1835d72dfa9fef4af569b923c60122fe916b062934ab469884f736e93835b411750dd6bc27b28665af0a05c1918f37720496c8336736ecba3b6f2 +DIST github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20210927113745-59d0afb8317a.zip 7940 BLAKE2B 151fffe0d5fc9db2e9d970ded16e8dea811db74fddf3056deafce9f9b28ff42a224ca6e826b319eb844091741fad916f5b9120050804d87bcda9a936b755011f SHA512 cf78fd5f4cb8ecb01b2051e5e6ca89fc5a1e2637d5698cdf2b1d852e198647d9a40af2fb5bbcfd159281bc07dfb05079d5874dd5e1e07bb1e42695b54590135e DIST github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.mod 44 BLAKE2B 51cd299533d39c6f9e2cbe93b4e80f0bf3b261809e777114488d181b447caec2c06689aba7fa0bf39a3d6059fccb2132d0b5d22f1352f2526588218a36ab57f0 SHA512 a503f68b2ad686d9b813646a4af0405669d40f6209a32447a84fe4140df64f7c724f20e8b07aa1bd0ee29011db5764c677474f6ba2785dea65291a56e46a9100 DIST github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.zip 4991 BLAKE2B fc42942b4ef0f05f03de94dde89b3a62b29cafc0c677a1457de32a5a07f1e9fff6e4836623a7e7e08d6e3718bdbfe95bba23b0b96d099dafbb3fc3d090b4e65f SHA512 1cf0cabf4764c792e8c3ed464f02b07d603a63f9a5cb9bbc52d9c32c90ed61fd408cc7da68e7bb8335c0295f4dd017ebbfbfe12f03457872874d600866ab4678 DIST github.com%2Fanmitsu%2Fgo-shlex%2F@v%2Fv0.0.0-20161002113705-648efa622239.mod 35 BLAKE2B f41c90b71b4b9e1876a13df9703b57f52ec6d7fd4258a7c44bca15c12310b512e400b32715180bfbe4726887aa7284fa21832ca9f9eb1dd759ee7d0c627307ac SHA512 5a93ead508f4f5e229e5d0e59dc820840819d9b32158ddecf2d6dae7ee96ce92af6bd80d18a98e437cbdda5de6df6cac03f7b535017fa92ef868dcccbc6e1f27 @@ -87,7 +85,6 @@ DIST github.com%2Faws%2Faws-sdk-go%2F@v%2Fv1.27.0.mod 109 BLAKE2B 70ae989bab9ef2 DIST github.com%2Faws%2Faws-sdk-go-v2%2F@v%2Fv0.18.0.mod 444 BLAKE2B 330419975445f724ee7b9a3ef8395fc7a153f189012dbe70e982865f5f556c2ab0d41a3465ec5cfddad034f12f226f77fcee9e3c1024693a0f9b13ee26f18092 SHA512 bfdf66b04b9c41824815a5a2707acce5c3f74aecf15a510d45adc84b732367885a18920d3dc50d968d0bc5e8a4fe3d519f7212de80baad4656c6867357c8fca7 DIST github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.2.mod 45 BLAKE2B 57350526cf25f10ae2018fd72f9944dae239a72c2a44db02f0a7414d802cd03b48e58d3c63fea3cf02cffc26e6c7b334190b2f7a76b7e24ec50aaecdeba1a442 SHA512 d17d2e4a7184b75fde3ef47d7158c9913611ae55dc2e67ad2d0db87afaaf894d0eaf5f0f5b027e2d888c592735dec2d381c83c7992576eb164492e98b24b5f1d DIST github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.3.mod 45 BLAKE2B 57350526cf25f10ae2018fd72f9944dae239a72c2a44db02f0a7414d802cd03b48e58d3c63fea3cf02cffc26e6c7b334190b2f7a76b7e24ec50aaecdeba1a442 SHA512 d17d2e4a7184b75fde3ef47d7158c9913611ae55dc2e67ad2d0db87afaaf894d0eaf5f0f5b027e2d888c592735dec2d381c83c7992576eb164492e98b24b5f1d -DIST github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.3.zip 7220 BLAKE2B 0a7e9be6781be8c5c8726ac7acdce2d55c4b6690c151954442577b7a10005329261b1bac7d0ec9e0b15dd712762ad81c9614d90e03f7d32541eb99de904c8e2d SHA512 acb1039ee94aedeaab9cb25b218a2b7953ba22352198260630a168b1341f1d04dff827142a968b039cc03295055d2528fda134c696573ec1bee02648915ab22c DIST github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.1.0.mod 45 BLAKE2B 6fd14841131ba1ec9265f7da966bdf8fc844a9104eccba0f301ec18c8935a37872501a3c10d1f2a3f0ad65f65feca94754da38b666672571d31e87f271a2664c SHA512 9eb6c7a80deb235d06d0a614de89d4dbfae015315bd6fa52fc6be8a630c57626199629e81c960351cd67735f21aa5fc3fc69f5a93625eb3e3b6baa2b2bc3b7d1 DIST github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.1.0.zip 7287 BLAKE2B 71250b2e75be0072794cc7fa1b8a035921f143bed91884a36ac0edcc9837542786d2f7bdf0a1a6da03e9b88aa17077108404a8ae52a5e621ca3cb52545153262 SHA512 c9a661e3f3cdb532f919e0a484586c09691108ac4bd3ef1fb3df38a1bbca78364d1550fb75f85d28a2f3923600dc73151e1b49c3c502b4abeab09454ec29ff76 DIST github.com%2Fbeorn7%2Fperks%2F@v%2Fv0.0.0-20180321164747-3a771d992973.mod 31 BLAKE2B f69b0989e51b0b649f81b044169fe4309f130eba5bcc6ff33aa9666b1b754aa0e524b8c7a627a91000ccc4f93bf93cdee3e97bd3b2184b050878bc3f413f0c72 SHA512 f21fd002853e4435421f8396e6be016f65be1537815c60d23940caf26e3f14dd6f2caac802cb64cd586b1b1f1220b2727de347b3d1816b8e741f68d87ebcf03f @@ -95,21 +92,15 @@ DIST github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.0.mod 40 BLAKE2B ce42c81a7dcb03d21a DIST github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.mod 40 BLAKE2B 6cc86f2bceda8617678a251604b6c049cfdc80f9afcae0cead6b2cd04f90fe1b5d5d56d0c29f98fddd7f4ff6fb4a0f97c052193b153dbfc772cf6597d664c09d SHA512 d0c78b8f08d177e05148ce845f8d720fe79a193a420c12ce15504af8fa3dffc4d2fcebea8030f5cca90aff5775013e2252e0c289d4ed5094e07657ea97a79570 DIST github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.zip 14678 BLAKE2B 6647c66a45f2dc67b83a1e493bc73d4439de7962f7f1472dc267be9a9408b5ddda66b8ee2fdadf18b2973648035fb3907fe539a8b7ccb768b8c99c4cae573eab SHA512 f973efba5ce7c651d9c3e4e467a1423b00b102034a054874d09977957b7b55557e05da06fb4c158e693db7bac01bf601f950cae0d411dc92afd0686d7e1de4cf DIST github.com%2Fbgentry%2Fspeakeasy%2F@v%2Fv0.1.0.mod 36 BLAKE2B ad3bb22bde28277f26a819b093ab7392da57c027bfb91bbbab4686d225ddc4e239c0905f6eec64cda2fd47746bd625682f663a11007bdbbf64f9cbff7dd1de76 SHA512 f961ced2c3e902be60fb862fff6b1c4457c57bd7586375a18857863be63d9b3ea998b05fc0c9c3a7270387e9907861d6f9d6ce4024643ec84ea6a63e59e915c1 -DIST github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.mod 31 BLAKE2B 15785a01a9f07d2cfe324a1ece5c8188395300b11821621fe13427b702cb9f452ebe125566c3c2648d2d83139add9ad6224d00536aaea7b16306eb62f67f8184 SHA512 5f7f52012aa82bdc43bd89d1491fbe00091299554bd85dbfc07f0cc757fcf44f4499df97a4f19c234ce70fbb7af0f4c54c13ffd547ef0a733365ea9c68dd0297 -DIST github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.zip 19948 BLAKE2B 3f604e82647eb2a4a4c309622080fd07701d032a430999f13da727cc01d455cd3d0e31a7079e0bd833fd17d84a228f9e3f588719c4491ba83e50aa442080acf3 SHA512 e1c0c9251b0c7f05bcfad6f73cab4215cbd550d98065ccf8553dc04a56d7f6153ee70a477230a0e7cd8adc3707c8bfba279676902300537eb056fd912d75b51c DIST github.com%2Fblang%2Fsemver%2Fv4%2F@v%2Fv4.0.0.mod 43 BLAKE2B 0bb8e89eb31061bf2d38a3ffef58a48d3fa9a0dee26aeaaad7f38119d76ab9f34f0bb8ea4bddf277b9dea40acfaceff8925d32eb3386e898d6da9916b55bd647 SHA512 3fd19a3f311a3d0a6faa4488daa0932c661c27aad69568efbfa8aac052b175e2934055f7563c081718fb8a5ae560316a0e884a0f904694d9dd128f61dee2ecb9 DIST github.com%2Fblang%2Fsemver%2Fv4%2F@v%2Fv4.0.0.zip 17076 BLAKE2B 93c0e7eb4b46ebfdb442e42b18ad6ff9e531d17b8ea3f140dc5e7cf8a9a4f46263df409b449f157a66f3af34be33a9c35a935533e172a3d6d918cb8c5a127d40 SHA512 ec0402d9a33a5930b3c667e65620c48bc36446e1ccedc608aa1429f9c45d15e7dbed9d00a05f09c7b9b0f933a52525ea7c376c269017e237837887bf95700d70 DIST github.com%2Fbradfitz%2Fgo-smtpd%2F@v%2Fv0.0.0-20170404230938-deb6d6237625.mod 36 BLAKE2B e415584f1b251058c7ad9fda35a53a9c7f94434150330fdce3e1ef768c0b46aaec572e027040773f022b5e3657c4950442c1bc17c2c9b7f5106ba26c4aab733b SHA512 f271a93a69cd074418eec8b114375ca0a196d7cb4b69856658946fa7f2d8fc40381b575f0f624e9fb7d90d180da09477083905c70f01ae875c1f1d97084bc58c -DIST github.com%2Fbren2010%2Fproquint%2F@v%2Fv0.0.0-20160323162903-38337c27106d.mod 36 BLAKE2B 815a2fdcc9ce7f6f9098e239ffe398112298a28dfcfee51d83f65d31c4a69bd1d2ed672549796b4ae53bf2ad7e7c7f5ac4f7aef3473a23276d073e2b6e750572 SHA512 059688fde287f20422e8b1928af3465836bf1a6796b94ad6f3194565063b0419de43e337ac7ca652c65e14bc129a6782ed10be61446cfd32e20a037a025df8f0 -DIST github.com%2Fbren2010%2Fproquint%2F@v%2Fv0.0.0-20160323162903-38337c27106d.zip 3037 BLAKE2B ed6b7355857a362ababddc1a32f6d39cf9ff94f50913b353c5c96a3b469a03e58d46fe88aabdcb9fdd5b42462f2e4e2e2e11520a6e5377b7138c8385b211497c SHA512 ca741a7b877540350513cd370fbe7a5cfb86b30522ed672efa58078fd338c38f86d953e36e1bb9309b65c08a3ac105a085de51411df048aec47d7c3e294a9814 DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190213025234-306aecffea32.mod 904 BLAKE2B f181fe032f621022e2b81633d16f152a7f09bf367a4e126f8b71166cd8a4dddf46502f5e32adeba85bd76cbb5e253f26e0544421349f9f29853b05e482df389e SHA512 1fcbe5341583a4dfc35c7be1a733e0629a4aa7a2973e09b9defbca2f2148a61f8b917a36b8669524e63ec298a62dc6b8538c488a21a98fe7beedc43ef069e03c DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190523000118-16327141da8c.mod 904 BLAKE2B 2e99a4fa33d10c5aa9653c93135028f9e0ce5262187878ff268d221b08540ecf1d08602f938da3f118fa98ae8d9bfbe4b086d0597d3d9150153158bd934d6cfe SHA512 a2c916d1296bba37af204683192c94b4a4b58b3490fbe6a4414673b8add1829b9f82700269d0d3be3da543d8d37bff64dddaac30864445fc986c93355900e408 DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190605094302-a0d1e3e36d50.mod 904 BLAKE2B 2e99a4fa33d10c5aa9653c93135028f9e0ce5262187878ff268d221b08540ecf1d08602f938da3f118fa98ae8d9bfbe4b086d0597d3d9150153158bd934d6cfe SHA512 a2c916d1296bba37af204683192c94b4a4b58b3490fbe6a4414673b8add1829b9f82700269d0d3be3da543d8d37bff64dddaac30864445fc986c93355900e408 DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190824003749-130ea5bddde3.mod 904 BLAKE2B 2e99a4fa33d10c5aa9653c93135028f9e0ce5262187878ff268d221b08540ecf1d08602f938da3f118fa98ae8d9bfbe4b086d0597d3d9150153158bd934d6cfe SHA512 a2c916d1296bba37af204683192c94b4a4b58b3490fbe6a4414673b8add1829b9f82700269d0d3be3da543d8d37bff64dddaac30864445fc986c93355900e408 DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.20.1-beta.mod 913 BLAKE2B 34c74ca4a6b36d48d11cd24559e58f5f2d389db9c8946811bf60b4e36ca7ed0e1ec32da129b16b6d2e904200212761c0e0cc997886a96c195778c9f3305acad0 SHA512 eeca58cd15d73e4074d3139430632556301392118e1c1f468cd6c86331993ffeaed407503d0b687a455a4052dfd46a2049bd839437276133e009c4477b778b3c -DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.20.1-beta.zip 3090472 BLAKE2B fa8bdba203e01448825880f0a4fe00e0cf5271b4e831c9f1631d04b88813689d2d154dd773efcec0b1f76381b114855a55df57338b0ddb29d68e81ac98074292 SHA512 c669c1e28867c8039eec5c99ce0ae99f18f0951cab0f140b00ec39354313de3e8a5148111334eee6d5e58ed4a207fa9663841c13454b89abbb7546506076c223 DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.21.0-beta.mod 555 BLAKE2B 9add6b6ac26374c8456e8c7a3089ef3a0f2449197d8a5394a8dda96e9480c2615795e8f2115ff8f779bb3cbcb95fcc2b584c2ff48a8355cbdc65302a6f75c7af SHA512 2cf3aeaf016dc66734dc2311ccd41d47030a050ede746fe95b9abfdf7b2a042a502e58a1c4dd466307660a0c14e44a5ab24b7982d142decde8a018d9f7d3efc2 -DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.21.0-beta.zip 3094683 BLAKE2B 0d7c72e88ea051625e7d7bf6a6fde336ae366869fffb8459c16afb13d9771ae7fc1ae62879c059f63157365a81e06def5b08afc42bd4e1cf1083783abb2c2d9c SHA512 f1865d90623f8976e1d1a503b1e48626e0dbd12c89f269a67a819781599b3c35cb61dcc35a213a2fcb9bd919b8ab7fc438ee2429edc7beeb31e58d3487dfa18e DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.22.0-beta.mod 585 BLAKE2B f67fa751eaee90abd56dcb39d2c29167dfcf7d40c280d2a234b88057e3443cbc56277e949960a8e9b64c54de79c05db6bb195435642ff604e561e40b4d74c11f SHA512 8822d6abad3cb378ca2de527e200fc769d1cdf0a901b0b6728eead60432e4cc39c15c9ed24e86a5c9f3ee269cd85445a3e65fd54dab01272701d2ef12ff74017 DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.22.0-beta.zip 3134192 BLAKE2B 44239ee7f4cba065ab6809581b40900bbd4eded927feabc61dd379383d24df41f7bc4497d38833c22e0c75c13f328706a1114bbc423dca87405a89101ef6cfdd SHA512 d9fe067492193a5f53fbefe18a05c062e95be8a38912260cde879392d076c05967083b1624ab62be332c31994257f67b2223b0a4fa292a1121b8179d192085c5 DIST github.com%2Fbtcsuite%2Fbtclog%2F@v%2Fv0.0.0-20170628155309-84c8d2346e9f.mod 34 BLAKE2B c775b370ca97e395887e54ab02aefe9e14a50db63424bb16ef5879042a1cefe65147ce346999678bcebfe7148db5ed9f9eb136b4e13ce3420c475059118dbecc SHA512 9a9bfcfd623331e8b3e4b49de79bc3ab07d9c84aa5fb96a226a16acb479b9aaab06ef9f7a5a0b1af5da407d17dbe3c99760f76e22e113aa73f9fb4bcec3806e2 @@ -131,9 +122,10 @@ DIST github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.2.1+incompatible.zip 14190 BLAKE2 DIST github.com%2Fcenkalti%2Fbackoff%2Fv4%2F@v%2Fv4.1.1.mod 47 BLAKE2B 83d00b9c631dc87a144389517fa91135db894a8a7caf77e8b80c48119f0aab490faf1a8e6db3bb3e5c58cbc040c24eb1d11e9b6bd2cd66e4ba4efcdcc136edee SHA512 1570ca7daa00c900f8ec382acf840ba047fef8673edba2e1430294527e9aadb9309197de1a7d4219373fbd8c5854934f11b3e25036ef1e2e7990e105ac6d8430 DIST github.com%2Fcenkalti%2Fbackoff%2Fv4%2F@v%2Fv4.1.1.zip 15694 BLAKE2B 1550dc059e34bc673ffbab066925578f1342f18e265d847254f8da199f9f7990ad092ab7b553ae72d4f9feee36a0efe67edfbc723f41ceddb786d94974ed6595 SHA512 ec47372415f5380c7181ba0a59a8001f247ce59668d29ffe458e917f8c9616fbb03694603ec41a50c3fd5e867c888ea14f7b8a0bc23f4dd4273b9f6a78b51f2e DIST github.com%2Fcensus-instrumentation%2Fopencensus-proto%2F@v%2Fv0.2.1.mod 58 BLAKE2B d724c8e5ab039b227f3c437ba570398b789f53fe80db6f8e57fd2cb2199a5e7acef24d7451f9b27a4da464770660d31fc785c7165deafbc35009718851329fc6 SHA512 23d6171dbcf339c72fe25ab7a7e70cb385dffd654998824fac0f6b6464717873332d39fe1f96101414f5e2d240faaab0b960da2e31c08ef98443aa238bbf02d4 +DIST github.com%2Fceramicnetwork%2Fgo-dag-jose%2F@v%2Fv0.1.0.mod 460 BLAKE2B 8fd5f8e870c87404943f55436fac16aaf6dd25d6c145ea22266fb764d83d62aaba4f947491f21c47215ed6189319d850ab79ce2e81a549fab4b7a22651b60f22 SHA512 97d50aa94c5e5d65dd761bf2726d9326577f41371033eae62c5e7e616a80bb3baec7557814b1c0f661b9b1e38e1ce6031aa26cff200487b1174fe99d9b212610 +DIST github.com%2Fceramicnetwork%2Fgo-dag-jose%2F@v%2Fv0.1.0.zip 66127 BLAKE2B 76a71afe11a039ff823ece2123b151036c8e9e0a7790a0753ad07051178d54a481c703d08db8d9df85439325018284482c2ecc475f1acfb3875cc40d81bfff9d SHA512 4a78521efca8dcb334cca11b514dddfe75c65c50414779c754afeab8b6edc13f594e317855ddc45b3c6e2038410f0ffe6e5c012f821394996bbc50a569cf14b7 DIST github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.mod 146 BLAKE2B 5efa8dad622ae253ffa106eafea277fd947fc0f28e6962e461283ce2267d992b85b1f0eb9074a90009d8ed1d47f9e1f3e03cfc0eb7ad7df104282cfd144cc12a SHA512 32c34a590e6c113a16700ef2faa5124ebb6c8773cd76594312157bd2b70d54cd939ff2c32fac47421b5615e804142cb7b393394d4745d5894f9b68392bc37ad9 DIST github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.zip 12221 BLAKE2B ea2f826b4582ec60f51c65783408df0e065d2a752d1cba17aaf277e0c2b48779a3bf3579982dcc26e5566c899c3f933e4c711d2f1e01c98c13e73d46fa08baad SHA512 09432cff34f69e9b0cc6f0d5bb9af376efccb85ab4396c14a4e0c072272f3172a93c240c5ae0aa89eab91799d1bed1a0e7e00ba83682843f46344c9e2fc2d4b6 -DIST github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.0.mod 45 BLAKE2B 294b4032890409da39f83e21947cbe4e039ae894cac4e044f4c91830c531ab543b510f7cb30dfc1fe05ea58b90733480456824361bf26e8f6e5445ef66346485 SHA512 2710d436147bc9075072e5e51a0df952bd39743f704d8d125ac27ea864bfa47a3ac6f0f6cd1bdcef9639736c11846176fd6f04e4e6c7c306ebf2177446eee066 DIST github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.mod 45 BLAKE2B 350e937e3f7b254b5c590445a9a7f7cc908daa2a5f208e293ac414d50b46bd29671bb483e55daeedca41d70a42fdcc62ce17fffd9992a932e29153ab6ca1168e SHA512 c1b9f572957bc4ed1ad0c61d22b7b5d6a4c863df2aaeb4cf914e304af21d949c9cfc53dc8eb67aacdf3dd56f339ee6f4a1f5fa464121d9db79b7b3febfb3251b DIST github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.zip 12031 BLAKE2B 47bd92ee66282b671cdfea60969710e371540e79b3c1e2f510380e3dbbfe40ff76be23ab48f44855b1cbbbed7cdbfc4f1ea21bc4bd7a37716de7c27a7ef81329 SHA512 dc5efd476875fe3cfb3c5f5ce9314920bb2175be85fd1a4667faddee1b5360113b66bdc2f17e4fe889a7d104d684558744bdc6c56c8ac3afc585d7aad0114486 DIST github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.mod 35 BLAKE2B 2447b3f6b52bb0ab4eb8af5ac3ca818b65bff046e0743cc8d8dd3d7e336ad121a8d017e3f7d7b83b0203b86392a82cdf56641acddfcd377a168553dfc28f3ac9 SHA512 f7d31069b4207aabc1683b00d85decf9e883387d598ec9125128724cad3b7d1f3462ffe616486e35579c97b178d703999c243a3a3aaca9223d9f661c07fe9d03 @@ -160,10 +152,6 @@ DIST github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20180511133405-39ca1b05acc7. DIST github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.mod 36 BLAKE2B bec7662666b7a5313f4b7ed0789ca75f07dcebed3b4498cced2b75b3622bc4c8c7d624066338fc6d77adea4b778c89f0a1218fad524c6804ef350deae2f24d68 SHA512 00ccb440abed145db781cbc7bc12695057b7dfa034c8ebd7ab1aaf5ea509fafc0be7147328dd9654e3fc2623bbbf91fd3992a86ff29e78bfa3e868d994b47e7d DIST github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.zip 109300 BLAKE2B d76af4585d0240852a075ec55fc5a2d139cfde0530fb306893f2d981b0c9d5675eb162fe14bbf51b67f266049795f9e002f4929ee51a5686a59826e0ab4de3c4 SHA512 8e27958a53533d7412defe10e7be2c479c8d147001f4cb0e615a130ac362d604d334e35b43bed92a10f33fe72fbf7609aea46b910f53c2b7f7f15fa1dd088fb3 DIST github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.0.0.mod 91 BLAKE2B fad30507d91fca15291c8f13100206c9d9eae4f73ca4034e37de10d1494b42b03535540ce704582cd7a4be4ffa2685f778ac9cd3aa647d6c48d8e6fe33a345cb SHA512 54e3700ced7222d086eac5a73a5973147473e9d063a7a8dd719bff2dbe3d61d9e4cd7427f30c926a2289ef53948f158bc09e189d9714f0437d446f7c30d0cc6e -DIST github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.1.0.mod 91 BLAKE2B fad30507d91fca15291c8f13100206c9d9eae4f73ca4034e37de10d1494b42b03535540ce704582cd7a4be4ffa2685f778ac9cd3aa647d6c48d8e6fe33a345cb SHA512 54e3700ced7222d086eac5a73a5973147473e9d063a7a8dd719bff2dbe3d61d9e4cd7427f30c926a2289ef53948f158bc09e189d9714f0437d446f7c30d0cc6e -DIST github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.1.0.zip 116823 BLAKE2B b33381de26ca23c0d218ecd16b22bcf13362635348a4c9887ab2c4ec803e0dc2996833eeab85b327b838a234198dcd555dc148a02b8b1282a1dab61e44e56c80 SHA512 4aeae5f35d7de56c2e693fae7eaf6f418745b9d9b8a7652bda4acd6c2979cc2cd175c4809386b7e762d9c243e1504baf82aa4e4dadd7bc6050d2227a61510b7d -DIST github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.3.1.mod 91 BLAKE2B 75d03e4a6fc970743c11a4a9d52dedc93f72b3dd3052c72cdd660af9df42b014f48ecd65961248e3b20f3e258d1ea36e058879a7039ea58441902ec5f339e382 SHA512 722430decd4f1022e8b035bcc7c1ed295db21a3c64f9dbdf409bd0442356664d378d4af37b7de828c02453014a5a9ddefb3397cbbbc8481c14179ecba9499a5a -DIST github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.3.1.zip 120665 BLAKE2B a4a827aa46ddaa2f2c5edebfd1a3073d9e7a2df73350e3911d13d0b0e6fdbeb350b43b21247dd352bbde10e4a70cc055c2c787d279742580a79036b3e85206a5 SHA512 ec784c6edd689968aa88bb5eb3efc096e9575b6472ddcbb01f0a57954ceae4461c6255242adfa9fd6976ec60ceed721ab2464c6d4132dd9c98ef3a588b6bd553 DIST github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.3.2.mod 91 BLAKE2B 75d03e4a6fc970743c11a4a9d52dedc93f72b3dd3052c72cdd660af9df42b014f48ecd65961248e3b20f3e258d1ea36e058879a7039ea58441902ec5f339e382 SHA512 722430decd4f1022e8b035bcc7c1ed295db21a3c64f9dbdf409bd0442356664d378d4af37b7de828c02453014a5a9ddefb3397cbbbc8481c14179ecba9499a5a DIST github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.3.2.zip 120397 BLAKE2B b34e5bae7f632d263c866a599ed6eb9058636e8c69c972409497acb9e93ae0e5228899020c507d9041080ba8c57b8a8dd82cf74cc409edfb19ea5a3a2d6b6d4e SHA512 52b3913281e95bc58c31efab3112186e660ccd74b575f482ab6e830e7331aeec8b92778400259114816ba58648463f505de42c5aaf322a30184a8aec5a08b1e3 DIST github.com%2Fcoreos%2Fpkg%2F@v%2Fv0.0.0-20160727233714-3ac0863d7acf.mod 29 BLAKE2B db9b03b0adf02e3b379eb06d67988a60f2e2034d1217e56b40ebafc1262cb4803500b73a3e697a5a73418615c84310bd7f7aeca6db56f6ddbcf6c044cce0e9f3 SHA512 ea629c85891049bdff24f75a4dbce34f048a9627fc126b44f497b3ae65602045ca4fe0856e1b3d7ba050bb867226b90c25912565867c696bc370697341681c33 @@ -172,6 +160,7 @@ DIST github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0-20190314233015-f79a8a8 DIST github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.mod 41 BLAKE2B 0569fb10d29c08fafa75095bf945bb059d1a87bb775664f748630cab8222275c1849024bd7555f7cdf9641da4c568cda6cd2ac5b12eb0274ba9f7d6c3106d6bc SHA512 9cfc41a0e8999351961d559cb39a9bc7fddeebf12507eeffb4e25a3d4913bb669120655440e33153254b5e22f6126921fdae097a8cddfab90ad9a9a28f2267ac DIST github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.zip 9390 BLAKE2B 06e7bde44f0617d805668ad2bef610e12a6e7aedc46d726c6bce592ac009f1bf8cc4d82662cddb3cbff49449dc9a72ce008fc735d082690da194bf7e602edb78 SHA512 b6b7dafdf36ae744559777624aaa9f6a82c08718793e75d4d5a2596626fc8323244f1287bda2fefa08bf33e95677be3b0480d2addb766ff37efc95ab4279120c DIST github.com%2Fcreack%2Fpty%2F@v%2Fv1.1.7.mod 29 BLAKE2B 6d29d882c7c8c863cc1cfa01de2e2347b09e8cf4470c0bae2737f7436ce6d6ab34eb6714eba9f869974c1c8d7a332bfb90ac842b9fb7a07bd1a4c8b0e460eefe SHA512 a41a722efe7f634eebd689a9793f9ee3a89924e6c7917008c6661761c8829d6a897dc71c496f761068c36c590a800f06bbefa4ac59f7761cc0ee2cc68ac5c14c +DIST github.com%2Fcreack%2Fpty%2F@v%2Fv1.1.9.mod 39 BLAKE2B 71e70b038748ac19649698b1c0e59af99ce0b1c5d7c9177e8c55751eea9e82d4828b27dabb17cc04978142c9fb7a54d90c062a7cc3fdbb86116034026e40baf6 SHA512 9cf1687520933d3d6bbec9d7c51472998d3bdbe1b3d2a7478fca80f9e7944f9040a2b8ec7d49f1458bd46a5121bae4810d314725add41efd413319a5006b944a DIST github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.mod 39 BLAKE2B ad751b3cc7739079f549f61216a0ed6c3ff60726f9e45854baf44eaeed0fcbb85dd4407f81907e6c4d67c9f32c811b9fca22537e4a5da5cdd89cd256ccc2e21a SHA512 c1b70111b85332905b8f0171d585fdcd269f3ea3f21235a1cf489f8986e24f9ccf2578f9752648a3c56b4e7c28ed056bf5946a0acde9e4d64f7ccc2205a2437e DIST github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.zip 5270 BLAKE2B 69648bdf201bfe932646e7698101ae06537c9304bccfad9066149045e2842dde3b3c65a8fa2016df3eb0edda90455b3ada4354d45033e2f1ef49debae2238da3 SHA512 78034ae7b2c33884adcb317c59c765e4762ea1597873c73b54d68cb6e42930caddf03b42c971c986474d7f4c584aee1e48301a6331af983dafe1c55f2f80e592 DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv0.0.0-20171005155431-ecdeabc65495.mod 34 BLAKE2B 7e09c2779bf7a84a9271e31522ebbe600a1c11b107d651d91f58c8373e4336332a3a881f3e12b382543d75f20398af66085fcb3e780eed341e870e9c30f29267 SHA512 5e079462f7e0dff0efda71f580aa185700cfa936b718a19d0e2a8c63212e47a07022dca0c282832d48e5165aae8e82aeeeb2ac3664268f1148fc772010fb860e @@ -179,7 +168,6 @@ DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod 34 BLAKE2B 7e09c2779bf7a84 DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod 34 BLAKE2B 7e09c2779bf7a84a9271e31522ebbe600a1c11b107d651d91f58c8373e4336332a3a881f3e12b382543d75f20398af66085fcb3e780eed341e870e9c30f29267 SHA512 5e079462f7e0dff0efda71f580aa185700cfa936b718a19d0e2a8c63212e47a07022dca0c282832d48e5165aae8e82aeeeb2ac3664268f1148fc772010fb860e DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip 60320 BLAKE2B 86bdbc333e5c23ccf4f805945ca9f2aecc5c242d2ae824d20127eceaa2bf7bbab239ff2799572a2c8fa206166a36e97d5eccc8fc5021743d8ad32f39cd53b9eb SHA512 7b4e4df2fea731e23e05437f26f24e32b2e99028d685b72e3a726c1cb616ada4a77ca4fb9db4a6fae48178cc5172e724b74499bc776d63a9110cb97377d5edeb DIST github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.mod 39 BLAKE2B a5a917c97c8f04bcad823128c4c8d346a5c3b0c8d097b5adc051fc070a1e0e57e2f12937d044f5edadf95214a51624e82d5e08582afcef9d84b9277e97613422 SHA512 81d43869697d892072def7425ae71caf36d62746a1360974324bc1fc54a04cc5cc999f04047c4b734d618d469fc1c025976db9777f7d527c5cf107d7cd25d72c -DIST github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.zip 120931 BLAKE2B f99f79ad8718f7038f286f690bc539e9f90fc5fb133a928916e5ef680ef4e8e6a6e751dbeec3d8aac6bcbb6261b523ba9e27c48d0df480ba999065526ae81684 SHA512 369c5ae94a2065de77b833e1865e814d70393704189ed59ab02401a3b9d51a952c73d73f35025e2d60b0b7a2bef64e38189a90183d48b899549bff70e67f95e8 DIST github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20200604182044-b73af7476f6c.mod 182 BLAKE2B 028440584bbb0eb4b690d16a86af9f16bb3d639bd8e2415de6d26a81964c5fb838f702b752c191e4fdc8b9fca57a0cf71e2cbb1b1faf41ea49275302c5272ac3 SHA512 f1e372847132b2ccbb472057ef4b3f4996a420506b3e1ff30804694b4f234eb63b4931a5c310c7819f70a15e3e1f48b20aa26683f7ccff3adde07fd9803c91ef DIST github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20200604182044-b73af7476f6c.zip 122029 BLAKE2B daf9718153372d41a98775825eb7953a3cffb16dce45ef21ae858f8de0cd5770808835e71a65ab8f67dd8b2cbaf677eed1ae5d6aa49e9fb3fb61abde9f878013 SHA512 2100f9a60c0919d12fc4b776bc33b3b6f2c9d99da22556b4ebacfddf49021ab96f9160f7cda532f81467c44a8991f76d54094ee0fb836fcbc5b9d6a28484caac DIST github.com%2Fdecred%2Fdcrd%2Flru%2F@v%2Fv1.0.0.mod 43 BLAKE2B 543bf18d5f844206bc7ac5296c2e3c16e02c0e0d0b0345d409e77c033de45ad184bd81781c22e1a1c6061ed46176893f0429bcb52498b55b361630a12f856116 SHA512 319156e912dff191063a87d2b75647eb012f0bd1d2e1d1b46825178e8b28c34eb9c739fa6cecfd458d17c846599d095c82b8be38ae1cd6cab9beffd0a211d0ed @@ -218,7 +206,6 @@ DIST github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.mod 126 BLAKE2B 629ef676ff997553b9 DIST github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.zip 12428 BLAKE2B caf7a05e79d8b7dca069966765705619ee15800d8276d968bdf4385bc1141cc06b24755ac49c65caafdde5d8b34869df1f7e42ca302ee6a80b9ac7edd8a803d2 SHA512 c757f8455ce261c06749eda03ba807ba8b2427f0a14b0b62a6ee4e9d1ba220986e6f122b061fed6f44d68e4802864a988c722604b52989a4e31761e0e7ea8163 DIST github.com%2Fflynn%2Fgo-shlex%2F@v%2Fv0.0.0-20150515145356-3f9db97f8568.mod 33 BLAKE2B 2c279a40bce4e61e5aad9d25a1c374b6c154586c296cfdfd56f52435c7739c8d9a8958e19d6da8026c2a03b728e0cb9bb512d5c094aa6111f9b10af24ab894ee SHA512 2bb0f125a91c8f92dc1cb5ec16441b27027585606a3862c216434b76324f3069941055c4bdc98372547543b095a4014155446de1be98264842504450121c941c DIST github.com%2Fflynn%2Fnoise%2F@v%2Fv0.0.0-20180327030543-2492fe189ae6.mod 30 BLAKE2B 2bb0a02cdeb2dba2efaec54c74b56d539f522416489c4e8d3348ac741e9c095965e1b265adcd2f50b890392611d48954ca4350d594dcc9678d7de50c4dc14169 SHA512 caa6f356856e2bba799701a0ff8642a1eb9755d672a03f9dc300281b69ccb4bb64f465892d20ca98e9264c29c84166c233ffffad5d681939bf44254c20af40ae -DIST github.com%2Fflynn%2Fnoise%2F@v%2Fv0.0.0-20180327030543-2492fe189ae6.zip 200520 BLAKE2B 2537341833b898c0319f10cf0576be41e23333764652914b51dece4ce5f5116034c83dfa61586f95ea130b0a1980c2a564e11934e1cb9ffa1a298270a5dca474 SHA512 8ab0a3089a72d42705d4ab61340b60a6a1a9b547ba4b63085eb85adb7d5b18ea600309044d306a4a541a04baf378cf0d759778d72614c96a4d0079643de55b50 DIST github.com%2Fflynn%2Fnoise%2F@v%2Fv1.0.0.mod 162 BLAKE2B 824644cba181be8a50cb72bf4654addc1ed4b2799142413d575dc40aa3fc3a51aab6800a0b25b522d0726b5ce974b9a4fcc0e8da09d80f258d75c40b06685db3 SHA512 38a670cd6a95b2f777a8fdcf2d1f5b786dc872c825a1e02b03f5592c4c351d9e70c437ebca1c2bd35055ca64485aed38148cb7632f70a0575d2625f0eb27e3c4 DIST github.com%2Fflynn%2Fnoise%2F@v%2Fv1.0.0.zip 201815 BLAKE2B 34c8c9cca23f9c4bff9494f2168bc9d32afc8e73ff2b3efdec0ad10da3866469ef06b8d0cba8c4fb269dc8cb349a80386603f4d66c6eb5271643e9533e279ac7 SHA512 177239687d45e20f738ada3291595b2233ef00c4eb415261acf775976e24330088a68f78d513f80d5d8fbe23e89293ea5283e7ae2c1cc12a8645a60b31c3f3a6 DIST github.com%2Ffrancoispqt%2Fgojay%2F@v%2Fv1.2.13.mod 962 BLAKE2B 4e010a5ff246d4e834d72b522e958d6f8063778261deb3abb11a5781a5d79c90e9697d43388158b4d80f811111eee0e86767d51ec58570d02ad4d7c8c9a31ba7 SHA512 c2b2b6ef8de68569c73aa8ce8c778dedd764f8204c8bc8a78b335d0138c49851af585da65e0ab9b2e561500f1eb0521a6f77d92794e38fcc22e6dec12113c959 @@ -227,11 +214,17 @@ DIST github.com%2Ffranela%2Fgoblin%2F@v%2Fv0.0.0-20200105215937-c9ffbefa60db.mod DIST github.com%2Ffranela%2Fgoreq%2F@v%2Fv0.0.0-20171204163338-bcd34c9993f8.mod 32 BLAKE2B a4dc1d6fd70150916e3bab8b310fe7ba5c26aacb90241b18ddb51f2608ebcf4e82f29495e663181f5a7b1f0f09e0659607eae17850dd0bd3ea8dbdc0f4fa6ad1 SHA512 1e3cd7f2ca465a9930734e27984262e81d563551917c8af55c521f15cfbf56a423ef918fbd282b4947c81a65ffa1c17294d4cc83aae639d9432dd3a52fbe8e83 DIST github.com%2Ffrankban%2Fquicktest%2F@v%2Fv1.11.3.mod 121 BLAKE2B d9ab9021ab813b7b6985b19ffec32d7154e43a1a6def62015215f80f0be7f981786f112974b796bd69afd571015ee46bb8b7790bb52dd28da6b830563f1a6034 SHA512 50beb03164eb70760fe996a22127ba01c922fe6c817cbc6089c711cc19f6dc7e25ece6d1c9cd767a3b8b42b1cba84443690b01513a6740df6f8827e94bd1fc79 DIST github.com%2Ffrankban%2Fquicktest%2F@v%2Fv1.11.3.zip 49908 BLAKE2B 67bdf78212983dfc91c56ec978151d0d359e4c2f84ac7d68725ea1bf2404604011f63c73a293accd0d9e679996437a3678f5eb9dc0284b445a97c2cb70ca3638 SHA512 10f3c3075858f8c2096164ee49473611e9df69fe7df7ecc4b515c327f4f590a692b828553ada806054c896475257af706d903e5a964f8f2ce0f7706a6ba499b8 +DIST github.com%2Ffrankban%2Fquicktest%2F@v%2Fv1.14.0.mod 121 BLAKE2B 0ff6838302ad78810f6925c07d05444975b4a15f976664f26f5bff90a45c8de736f0760622455b64c9b2174e7cdbba63c20b4ca6152f155cbcd9006e46429700 SHA512 2d27a3d43e67647f0a254ab975ce8e0d6f2adb2a65b21ef46cdd737a0c3cb603c070a639797733584745e9ce4fb2a8c31921f05167cb0c57b1edf07396281cce +DIST github.com%2Ffrankban%2Fquicktest%2F@v%2Fv1.14.0.zip 55936 BLAKE2B 58d411f3027589e7d1bf6857e691fb365cd94c1c5b8dfa652fe38bd4a8eeb99855ad9916e3782a85fc49eb0b0730d24b70db2b8961ec6238f4ab54c2af51824d SHA512 3d2b610feb3987ec6f286e80847f69bfbde75518efe3ff77fc1941244761c45a9045fb13337cd7b875ae3f5cf2974fa16e2b58e21093920c9d38054c08800b95 DIST github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.mod 36 BLAKE2B 2b77fbdbb6c6c20767c120b390fbd2992bf79dcae0a35c27121a6e755233da3ecb7d74e74c38c0a2463976b546ed8bbfb8a8d8cb140526dd9a0c4f524cc131a4 SHA512 5749d33fb085d63b7c12f43df824c96f168323cf6d88cfea3e2536eeb7b56689dab9dddb8cde1ec8bc9c2848e7148b8a37abf8523a99c55ce10f896245c5f341 DIST github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.9.mod 106 BLAKE2B 4876f70d70d2d8703d7b6abea5457e093043912d6a672bf7794a892d1c17b159ed2b92dee05ba1625a1b7cd6c8d66d6dc715bfc1d7c0f1c47965ae8e30506bb2 SHA512 ea3a26ed1f6df26a7e2aa64ea9d5d4a4c3005163cd8adc05028cf25d56d01d115bcda38b7af992242013c2610f26a184ce43dd1826309c95fa008fa9c8c387d9 DIST github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.9.zip 42349 BLAKE2B f2c476034a47330b5424159be4a323bded799ca489163c8d485e95f17ce519d6c4d771a35eaed83e831acbe20c1d9ec5b782469ce20aa224ab03de459228fe59 SHA512 8df5f490e26760bcfbfee216b5479321d060d4e48911c98e4d3375a6f84bd161b5d80769fb0326b3122534ff726e8a987bdce365464cdd042ab4cb5366d674aa +DIST github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.5.1.mod 122 BLAKE2B 2781f3c4d85e47658984fbddc3d79541cac0214262df2f67d8af9a6e4cc6efae71d7e31370e9ac3b6d5664142bdb824eab6048e296d26fe06af46939201713b6 SHA512 d4cb8393c16d38aad722df74b8c2292a85bb3aac4bc061676b896b537a21a93889a447cecdbc0f989c04e3cc91a2fe5fb35207e77f7ffbb129669b8377e6c5af +DIST github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.5.1.zip 43496 BLAKE2B b84f818f78c1ff6c05c73ef5c12fe4735e736724556b2520a5970fb4996275e0d23d6f36e858b9d06ca20bc105af6ba82cf33f08bf4489f6e6aefaad755e9b49 SHA512 a7a1f26b534df90ba3e7251c92eaa33168fbb0bd81d97b483995eb0c09f08de488f62bf1ef824a998de1a18789775f7b99486c7ab16483bb02d2f71512373c4c DIST github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.1.2.mod 51 BLAKE2B ebde0d586e331eb1d432c0284491524133797836ae3a12cc9eab25b46ffe1fd5ec1d4d46c8474cabbef0edd041f684486c7183a2fe74cb2385564218173a17f0 SHA512 e25792acacf4e07e445247eeed246a24b34e1199b57ff6974ac5a0b76c254dde9b6917ce68d8bc067cbf705ac515fac6a67ea73df48d058d87f9fee50b6365dc DIST github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.1.2.zip 24442450 BLAKE2B ca01b8b0c7f7a07ffc8657b51b7b4353c3985f16a244c3b468d28611014e4e64d16f493da9fbd1af671c571e425fee9ecfefa07c27e71a33680bda3dc881a4d4 SHA512 c044cfe59e23399c87fb9c5c6a637cc9f8be706180364e8b88108bc452900611460d19fc8d2c53ccdf8a6c708e8c38ebd20e61aa99c20416fcecd197996171de +DIST github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.4.0.mod 112 BLAKE2B 7689b22d45c4abe01628ae0f52e58cfac6e21706443bc82c10562051a973bdd9177dbe91b714e91f6e4c85099d4a2bbf265fc245bddbd8a7b526f1f9a977a58d SHA512 7d15653e7e944a3b7abe4b28e24224b43503c94ee270f93f1eff721be0072169994c4ce725f7508d3a7192fe9e76bb6accbdccd36f4d5508dce18055aacc8bfd +DIST github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.4.0.zip 25004156 BLAKE2B a07ad260f83f680f9dfd19397ca12b2526fd790125cd6b279944ac56204cd98453ee24234c4828e7efe7ed8fa835150accac4f9fc15c797eecd251a21afc2d5a SHA512 97c03324ad08e2aec0163c80342c3775c6da4c041c4c9414fb3ceebf7865efa87896764fe8ea53f25a65b225f79cffcf8703e2a32904e37dacb7ee17d2c3e43a DIST github.com%2Fghodss%2Fyaml%2F@v%2Fv1.0.0.mod 30 BLAKE2B 6a680b6e14f0cbca536b1ca02d633e16b2010cee7f590088748339785b2989cb0f86a51fba709da938d4c10ec810d5fe022d7d1a5c269d5ece253a78a5b2069f SHA512 7ffc7a5c3e0b39831e590ce3402dbf5c95392e88a08576a16d9e1887b11400efa71a9d183d3f1e080081246f28a70262a679348f009f7da6bd41f253a60b0741 DIST github.com%2Fgliderlabs%2Fssh%2F@v%2Fv0.1.1.mod 33 BLAKE2B 18725478b6c6a565e4adc96f4edf09f8369553b8b6523f36f8e4733ae64eb9a859af67e14646e61d2faf5cfd651ada0a6bb2bae455ba6bb4570c92696b31f23c SHA512 e6592e0b4e0c9f344378efbc06365296f5978e173421824512ce6f8921212691aad2f35e73ff4562c72014897a4992b7b3e56e3c424a82159747f1fe328eaf50 DIST github.com%2Fgo-bindata%2Fgo-bindata%2Fv3%2F@v%2Fv3.1.3.mod 155 BLAKE2B 12f1f3881e9759533364a5140d065784b0c9e8fae5d61191f73c985bd08c5a7018556e7052c10713308b36398193bb13583c9fd3523a63517223e7cba39ab2e2 SHA512 a635cb6eb0b8d690c45dd8892f0474bbe5d255c801bd242a2282751ab6474135a1e6395161ce6faa057bd4eb168d0d85208908fc5a723cab1f10ab92f413887e @@ -271,7 +264,6 @@ DIST github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20190702054246-869f871628b6. DIST github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20191027212112-611e8accdfc9.mod 36 BLAKE2B 3eee85c76d1ccaca7488ee3039bae6a7a9b4c8253481cdf6d62d1126623312a07264ed0e061bf5d7bde3aafb23e078b2bc86c3718cb2fff6618976c420c7dcae SHA512 5a0f44d45d666885e31206077a515fa02246d56699aa02f7809868029fdf6a718a5df8edac0ec245880f982882c2f4ca1d13a1dc0c7c0f79d7e89c6c46fab523 DIST github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20191227052852-215e87163ea7.mod 36 BLAKE2B 3eee85c76d1ccaca7488ee3039bae6a7a9b4c8253481cdf6d62d1126623312a07264ed0e061bf5d7bde3aafb23e078b2bc86c3718cb2fff6618976c420c7dcae SHA512 5a0f44d45d666885e31206077a515fa02246d56699aa02f7809868029fdf6a718a5df8edac0ec245880f982882c2f4ca1d13a1dc0c7c0f79d7e89c6c46fab523 DIST github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20200121045136-8c9f03a8e57e.mod 36 BLAKE2B 3eee85c76d1ccaca7488ee3039bae6a7a9b4c8253481cdf6d62d1126623312a07264ed0e061bf5d7bde3aafb23e078b2bc86c3718cb2fff6618976c420c7dcae SHA512 5a0f44d45d666885e31206077a515fa02246d56699aa02f7809868029fdf6a718a5df8edac0ec245880f982882c2f4ca1d13a1dc0c7c0f79d7e89c6c46fab523 -DIST github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20200121045136-8c9f03a8e57e.zip 39701 BLAKE2B ecac1c4212267252571babe2c7332b517c22a7c535777a40b6e318299bc284ba3676ca75df60670dad69698450e97dc614b98c6c9fa793a4f3daa3bf88859167 SHA512 e4cc88b9e484d43a328c2ce80b812d4886fee13b915a41fb64b28cacb163960059de066b9be8aec33be081fdcd3db847ee491aeeb1a74b25aadca2c206c9587f DIST github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20210331224755-41bb18bfe9da.mod 36 BLAKE2B 3eee85c76d1ccaca7488ee3039bae6a7a9b4c8253481cdf6d62d1126623312a07264ed0e061bf5d7bde3aafb23e078b2bc86c3718cb2fff6618976c420c7dcae SHA512 5a0f44d45d666885e31206077a515fa02246d56699aa02f7809868029fdf6a718a5df8edac0ec245880f982882c2f4ca1d13a1dc0c7c0f79d7e89c6c46fab523 DIST github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20210331224755-41bb18bfe9da.zip 39744 BLAKE2B b1bd8b2983e8b27709639e447fdcb2fa10c1f6602d90b06f03445e294dd3f243d8f0ed1715c569acaa7e8b9455b4c8f9fef55ea64b1e625c927d89ff863e2070 SHA512 52a3eade285f16ca743f29de8676a7ce7dfcfd4728d1f2fe1ab64d372082a621fa160520a31ca9bf231e32f650f4b7faeb91ec172c769022bd55dcfb0d7856b5 DIST github.com%2Fgolang%2Flint%2F@v%2Fv0.0.0-20180702182130-06c8688daad7.mod 30 BLAKE2B 342057d82bd6cfc545f94289ce6dda498b35f949a3e5f9ad978910e5fcde556edd6e7a3847d136c5ef40115d99d9718e0c2bd2f420ed4ba72a4cbfda31db4c6e SHA512 fdf76199e91b2db4f75d0f8ce5844df0c4d0ea77319bec31ea1cc12f67121ebdee9f236eac8f6410313e84e3d4d625b92105802b8f1bf25de49c870aa6574d49 @@ -282,7 +274,6 @@ DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.0.mod 131 BLAKE2B cbc0f2260c45f1696c DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.1.mod 131 BLAKE2B cbc0f2260c45f1696c2dbe5b134328dc37ea8f95f75817da19f64b15d26cc4942aedec755155c21fe1ca2288190738702bea99511af61dd11e2071e9d423489a SHA512 fd32c642f3512807877fbaa2332c9b83a02d025d469226a527c19c144c8f6b20ca4bae3f6d1f17da74469d6396c1079014493b50ea8a1e7b4be3bb015a82aead DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.3.mod 131 BLAKE2B cbc0f2260c45f1696c2dbe5b134328dc37ea8f95f75817da19f64b15d26cc4942aedec755155c21fe1ca2288190738702bea99511af61dd11e2071e9d423489a SHA512 fd32c642f3512807877fbaa2332c9b83a02d025d469226a527c19c144c8f6b20ca4bae3f6d1f17da74469d6396c1079014493b50ea8a1e7b4be3bb015a82aead DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.mod 102 BLAKE2B fc65ca5527061bb3ae4b156ab646ab37acec93f14ef00beb21d4ea93100e13a7f25e7d7bd3860b603ba18923075ccb2e106376f6f55ff261cdaa37ae325c554c SHA512 4e386a43067044e410312e3d6015ae59d6e77506b0db35d08fe7e6cda7b3908a5bcf6fa7432fbc5391252dd4dcb346bf359727680250af1311d5c839a4cbf4d7 -DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.zip 95367 BLAKE2B a94e0a99550bbf412c113e9721d41b4ebd81f0ee0ee1cbad9240abfbdfc91205a32a4d26676ba2b77e3b74fc86a739b5f5910aa0663a820757e541e6c889c0a7 SHA512 0097c67ed2453ee0ecf7571f15f229ce49ff98a9f7a9df8f7bb374fc693c784b6a74453c57509bb3e006833d341da7cdb9887ef3ad7e55a4ae8681e73b783931 DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.6.0.mod 104 BLAKE2B dd86cc7833414ad225f1dd2a51af2e5a1dd9511bebc712dce749d1452c52d2806a7de626eaf0a2c8e2f8a1796d1d394ebddfedac37f40159d37343c5a2709b2a SHA512 c1cbaa009d32793f323862b87efcd1e32324616df8df19abc7103633a215962df0f9038d1b52f7a715cdecd2da3b48a98e30618dc58532a1654934158ed160b6 DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.6.0.zip 124156 BLAKE2B c1f55bccfb7f2cd10dc421b6d7246e2ceb0d6de6d5cffc8e5c13ef2368824839d449440b9b8729821b720170e17364b5e9080b8f81513a9045bacfbfb16655a7 SHA512 7fca057ab9ea3208388ab23d8102498fdb7eab796e8a20ef84a996e2074185c92f3b4c0d3558e4c63dccdcfbd3169d5a785025e848dfb50ffe76bdde21e459ad DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.2.0.mod 34 BLAKE2B a4239cba934b6e80714b93d47e88f22ad28ce41d1d984c4261cc3f5f3b857fb28785223fa911b258e2665be2a9d24ffbd925e9e0f374452a2aacd712ad9d5f75 SHA512 e059a34363bb826bbcb8981adbfc10da90e04b86dc5376ab20bdfe1fab135953cff41ef1daa116aff10e9f3e6503168f6baf902f09aa0e8cd9a0da96b932f4b6 @@ -299,7 +290,6 @@ DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.4.0.20200313231945-b860323f DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0.mod 124 BLAKE2B 4c032e7f2e1c8765cdd720690c1067c7c0ba1005bbfae01cd928bc60d96bd82321052fdb18a4ae12119144e34865cf910e306c5116e4f4f56cc5f70f5d52004e SHA512 acbd5afd399b3798d4b24529479b18523ae4009e21acde15a3893d2af75f9a6e65fcbd5a237423849003eb8903718eaa0b1aed9177c390972ab9490f3acc0d1f DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.1.mod 124 BLAKE2B 9e60030e0014cbc67c0bc7064eef3b127dec57dfe25bbf7f0d0e2b9c8c77e28477066daf073a6793428116419900e7c9f6dea6e8841a5f61812cf11ff77e7009 SHA512 14a0f1fed404939fad835398d5889ad57621edeb0e183785b3094957183bb29a2026e2af939b94c7155f8496e966116c4a6a2497fab113a175a9aef3f7ec3f32 DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.2.mod 124 BLAKE2B 3242575be48f0e1f74e2d0976d2a11f0edccc59c7b74cecde37233c19f97c51e576cd3032175cfad3c1ce9721cd41053f459341182fba836e0ff0456126e493e SHA512 9586be76b697c6a5c3216762ac13a7d297372ebe0c7ac5941d16c326d1580c8a73fb475236ed9a4214d158a7386e761877be16cdbd4ac2074e8a5e1dfdc95b54 -DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.2.zip 206762 BLAKE2B 13c74350dfc3bf39540c37f6b7771f18930d6bfd6a5c83c27c723065da6458e0de544a6fa4d57c027e6c67eb528493c620228a56249b889f00d67a064218dbb0 SHA512 3d92469995664037149e3e11363db685b3175fff01f4ef3b578ada273853a16131b3c97899b497ab75ffbeb6191fe59a28f073779828f719681b8e15182b6211 DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.3.mod 124 BLAKE2B 3242575be48f0e1f74e2d0976d2a11f0edccc59c7b74cecde37233c19f97c51e576cd3032175cfad3c1ce9721cd41053f459341182fba836e0ff0456126e493e SHA512 9586be76b697c6a5c3216762ac13a7d297372ebe0c7ac5941d16c326d1580c8a73fb475236ed9a4214d158a7386e761877be16cdbd4ac2074e8a5e1dfdc95b54 DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.5.0.mod 129 BLAKE2B 15d140a0b2b22d6c9886ee9e517f923fda26ee8179755702a8eebf1ae8cf75be48e8d28a1df1bf875a7bfd499075d83a541c9716601856abe0e7c850a3ec68fd SHA512 467a3f6fb4c941cd55d8d4b2d6a2015966c60a8614691539c88c4bf0da2f8022055be8561cddd0e60b118f74f010be5998dd128b7b136f14edd2674e5650db2a DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.5.2.mod 192 BLAKE2B 08ac45ddd213c260f4b9d33fec4ba9758ce949c699e2d8d6c7b31bc0fbd7498618cd5144a6ccc3e1b852e9f1a6b7d00191ada7d464dd5784d132506c9a8639ce SHA512 44c996ad31bf02aec42bef934d7cd65379ae5eca4d1069dab8c478be169f9479cbd55f8f72bd9567e51535d31c9f65cd1d56bbefb8b745f96cad0f5953f8c420 @@ -314,18 +304,18 @@ DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.1.mod 40 BLAKE2B c717b6aaf18662c20 DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.4.0.mod 105 BLAKE2B ffd22df03c1b351fb766a97818d46cc6aebeef365632d5263c90cf45a4acffdf5811da10ea2cd4747bc9691f74661c0b655961a065ed15a0194eeb4d1d12ca9b SHA512 cb203760fc6ca9c9d64811cf1342752faa5a95f27934c298407dc865f9561081210dd1b82b15ee2f5337b70d4c55d102d8884b5b9a5f70d9cbf85227a32b9713 DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.4.1.mod 105 BLAKE2B ffd22df03c1b351fb766a97818d46cc6aebeef365632d5263c90cf45a4acffdf5811da10ea2cd4747bc9691f74661c0b655961a065ed15a0194eeb4d1d12ca9b SHA512 cb203760fc6ca9c9d64811cf1342752faa5a95f27934c298407dc865f9561081210dd1b82b15ee2f5337b70d4c55d102d8884b5b9a5f70d9cbf85227a32b9713 DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.0.mod 105 BLAKE2B ffd22df03c1b351fb766a97818d46cc6aebeef365632d5263c90cf45a4acffdf5811da10ea2cd4747bc9691f74661c0b655961a065ed15a0194eeb4d1d12ca9b SHA512 cb203760fc6ca9c9d64811cf1342752faa5a95f27934c298407dc865f9561081210dd1b82b15ee2f5337b70d4c55d102d8884b5b9a5f70d9cbf85227a32b9713 -DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.0.zip 125740 BLAKE2B 53846b62364384c96a4a1038e7c04213e5623fc97365708174ba705781fa07760fe7726615901bc18a2fa099e90b7e4a5f9023daa5c5a3db8c421360a730e97e SHA512 6ad2ac900d1a8812eb6dd037a2ad5342ef74a339eeb490f23acc207819b8ba9e0c53185364908dfb65e57510146084c7e35e75de0a9fa4bf0898112f8ca8f551 DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.1.mod 105 BLAKE2B ffd22df03c1b351fb766a97818d46cc6aebeef365632d5263c90cf45a4acffdf5811da10ea2cd4747bc9691f74661c0b655961a065ed15a0194eeb4d1d12ca9b SHA512 cb203760fc6ca9c9d64811cf1342752faa5a95f27934c298407dc865f9561081210dd1b82b15ee2f5337b70d4c55d102d8884b5b9a5f70d9cbf85227a32b9713 DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.3.mod 105 BLAKE2B ffd22df03c1b351fb766a97818d46cc6aebeef365632d5263c90cf45a4acffdf5811da10ea2cd4747bc9691f74661c0b655961a065ed15a0194eeb4d1d12ca9b SHA512 cb203760fc6ca9c9d64811cf1342752faa5a95f27934c298407dc865f9561081210dd1b82b15ee2f5337b70d4c55d102d8884b5b9a5f70d9cbf85227a32b9713 DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.4.mod 105 BLAKE2B ffd22df03c1b351fb766a97818d46cc6aebeef365632d5263c90cf45a4acffdf5811da10ea2cd4747bc9691f74661c0b655961a065ed15a0194eeb4d1d12ca9b SHA512 cb203760fc6ca9c9d64811cf1342752faa5a95f27934c298407dc865f9561081210dd1b82b15ee2f5337b70d4c55d102d8884b5b9a5f70d9cbf85227a32b9713 DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.5.mod 105 BLAKE2B ffd22df03c1b351fb766a97818d46cc6aebeef365632d5263c90cf45a4acffdf5811da10ea2cd4747bc9691f74661c0b655961a065ed15a0194eeb4d1d12ca9b SHA512 cb203760fc6ca9c9d64811cf1342752faa5a95f27934c298407dc865f9561081210dd1b82b15ee2f5337b70d4c55d102d8884b5b9a5f70d9cbf85227a32b9713 DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.5.zip 130974 BLAKE2B 6e4efb8abb584c3839c7b1ab80c8060c125b695bddddd44c57f72c0fbf9de85d40595ecff57f57ddb533e34dbe72a95e0e8043d91d462d68818699f194766e90 SHA512 9cff1690cb177e70b1d67ddd305e4317e3d1ef2825f5f3ed4639210f7f2ee6e89ff03970495757b922f16fade5fafae5cc14c8da2b95694faa3fa48c63f3313d +DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.6.mod 105 BLAKE2B ffd22df03c1b351fb766a97818d46cc6aebeef365632d5263c90cf45a4acffdf5811da10ea2cd4747bc9691f74661c0b655961a065ed15a0194eeb4d1d12ca9b SHA512 cb203760fc6ca9c9d64811cf1342752faa5a95f27934c298407dc865f9561081210dd1b82b15ee2f5337b70d4c55d102d8884b5b9a5f70d9cbf85227a32b9713 +DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.6.zip 132988 BLAKE2B 48845d9df9bc0766f93a141ddc1989fcf850d76273824d62ee11297774703bed33b1dcbe77817b6eb417769ed11249d8089d248631a8c6669a75a6d34e048653 SHA512 22df4fc49c44a1e73eb72295195633bc04b67fda27df452893ae77932879b62b344455b880972e78022a61dafb30eba8b5b6a872f6c66e093323fd5d1c086466 DIST github.com%2Fgoogle%2Fgo-github%2F@v%2Fv17.0.0+incompatible.mod 35 BLAKE2B 87a5884f51a766419a5bfaca4d6b317f2e86680e7347d29dba287e4c2004db6b8a8afcb2b2b8145cc3f9a502b768105eab89ba0f3e99db44427fd3eab9d3ac8c SHA512 6d285a58dc91fb57f990b76b3c2634247bee990ec1bb3e0f11b19fe1edb3b9b1998030def12b20a6f05c574965ddcefda6883121f5aae70c695e031e72425178 DIST github.com%2Fgoogle%2Fgo-querystring%2F@v%2Fv1.0.0.mod 40 BLAKE2B 081291e204018d8256655052c8f518c8d489818e899a6932325f2efe7a33dd7228f1bab1fe31f190c2cd1a022b8f320c2a779910231122de430bdb6c196ca95e SHA512 b47c833f93e2d2f9746276fb7608dfe01295cead6b0c9cad36863e9c6da80e3abe8e7d79afb113fe382f73b641fcfd717090a8d6ca2d94bf2807fec07cd57574 DIST github.com%2Fgoogle%2Fgofuzz%2F@v%2Fv1.0.0.mod 41 BLAKE2B 32370943a480c13662a0847b33fadc7d7f909784d044619ae8b00f03c9f537115448140ef2ea1b47606dbc64d7593e07cc8f9b9000fc5382e4f1ae94ae4086e9 SHA512 3dcfdb76a938cf370310213720ca952c6aa99c8b1b96afe41eb05f1bff15df7d98d279509d921893c0c749337c83d4bf40613813e117c01205859a041716b2ee DIST github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.17.mod 162 BLAKE2B f0ea72b4c8365cef78144ea87199e276b4a17384af7d060b7e94df9506259d314532d5d522f163b63740971036828a400b4642d1d96b9379fd09b85a80704b4b SHA512 860ad8012e5103242b1a02208c224120454a4ddcb9930d9fcb9bae989df136080d32d397426e4c2556e6fafdd16f2fff6cf205e983107ef2f70b87e1b4e23da3 DIST github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.18.mod 162 BLAKE2B f0ea72b4c8365cef78144ea87199e276b4a17384af7d060b7e94df9506259d314532d5d522f163b63740971036828a400b4642d1d96b9379fd09b85a80704b4b SHA512 860ad8012e5103242b1a02208c224120454a4ddcb9930d9fcb9bae989df136080d32d397426e4c2556e6fafdd16f2fff6cf205e983107ef2f70b87e1b4e23da3 -DIST github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.18.zip 1088297 BLAKE2B 9fcc0fb4ed635cb8ee65544bfa3989f971cbd4b8d9082503249c232a300bbe5e9b4faa217300eadcab79ee92d6637795877425a3796630385ccac35e3737cea1 SHA512 51c41ec4abffbcb25eeb49ae691e9330e9b0585cfb3ea3b7c35ea1c764f6b332d90ed3a17055dc59639f99e9fa5f10bbdca4f6b5ffed7255e6b05c3094b7a450 DIST github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.19.mod 228 BLAKE2B b6e042df2dc84fdc5bdaab1c1c0cf8d0600975674cfb01f1e763b556cd393d1827f51385732d1cb3c9ac3ed8b46fbeca4f161e01d33f5c49f764031cf4718a2b SHA512 ea7b5bd6f46eb77033472c60126816ab16d76356277ae30c52464399477babd893b41f9bf994b59f9df87e2a8e35fdd4293dafca304a26c4bd02a3648a3d4886 DIST github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.19.zip 1104735 BLAKE2B 3c33cfd5cdc1668bd78b7616b864d739ae2d360304cd5147fe2f166b2155d7f607fe6e67acafd95910620d35f606363fa147f3fc8edd01947e9bcb3211052cc2 SHA512 f7a0ba744009bcbd024c9b5a7d41e6cee4cd42a9320f9fc2fce3c67666ef34f6826445eccd685fcaa31cdb8574290f31b95ec9342d56618276e8752ffe16b62f DIST github.com%2Fgoogle%2Fmartian%2F@v%2Fv2.1.0+incompatible.mod 33 BLAKE2B 694b57887cca857fe6950b0df444dc6e3d757dde540c1846ddcd4bb8f96a5eef3f469eaec30cf415541ff2f53acaafffbf4032189122875603d7e5e3dad2ef97 SHA512 cffb5dc1c6531ae9d5998b3a57ba14de5dd8631a36dd48975da07ce5ec052d97b6f632c5d30ab9ab695f178758837aae8a6344c67d57c7a39ca8e9243f8211df @@ -341,9 +331,7 @@ DIST github.com%2Fgoogle%2Frenameio%2F@v%2Fv0.1.0.mod 34 BLAKE2B 1eabef50b297788 DIST github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.0.0.mod 30 BLAKE2B 704029826c505198458e86463528ce2c1b209376f376b92d4f05a0f4094d161b45470d04ed3c1b5635397aca3126c25911299711139d794cca3e9b2bb373ee17 SHA512 695f3424e0cc247a069fbd6b94820554e003030eb0e208ba7be38f660c5fc29f74a057e60031ec77918b5b320913d6deabdf19a0f0666b0f5bc5e2724e1fddba DIST github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.mod 30 BLAKE2B 704029826c505198458e86463528ce2c1b209376f376b92d4f05a0f4094d161b45470d04ed3c1b5635397aca3126c25911299711139d794cca3e9b2bb373ee17 SHA512 695f3424e0cc247a069fbd6b94820554e003030eb0e208ba7be38f660c5fc29f74a057e60031ec77918b5b320913d6deabdf19a0f0666b0f5bc5e2724e1fddba DIST github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.2.mod 30 BLAKE2B 704029826c505198458e86463528ce2c1b209376f376b92d4f05a0f4094d161b45470d04ed3c1b5635397aca3126c25911299711139d794cca3e9b2bb373ee17 SHA512 695f3424e0cc247a069fbd6b94820554e003030eb0e208ba7be38f660c5fc29f74a057e60031ec77918b5b320913d6deabdf19a0f0666b0f5bc5e2724e1fddba -DIST github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.2.zip 21638 BLAKE2B 63e755faff06cc528386a19bdc3396a6deccf4872ca8d20484291c279b7c93bec50af19c31d6b41e37ff9144085af7e267ff63490bca1f2524c52a52e28c645f SHA512 b4c3f39d7ef5d42eb89e78e7924cc6edcb682062bb0a96295742359089fddf2806557877bb8ad609ee9c53ecf9d0fce15d0c8366d193ae89a979f834bec64ed1 DIST github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.2.0.mod 30 BLAKE2B 704029826c505198458e86463528ce2c1b209376f376b92d4f05a0f4094d161b45470d04ed3c1b5635397aca3126c25911299711139d794cca3e9b2bb373ee17 SHA512 695f3424e0cc247a069fbd6b94820554e003030eb0e208ba7be38f660c5fc29f74a057e60031ec77918b5b320913d6deabdf19a0f0666b0f5bc5e2724e1fddba -DIST github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.2.0.zip 21941 BLAKE2B 94e8f4d50c0651e1bb47daf76c642871e1e3c53b725910aa101991a7a9b83b8042f76f20be54323b66b5dda1900a7fa5c3708ba0ef02fa2a72c2012efcfa1644 SHA512 eef3b3444dce760fb6cbca5e22f3fcb33fd418e2b54509e80a2150cc644f41a05a59f0acfb7fee386c994dca06d96f4cd023fa192aab368be08ef20eac4a626b DIST github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.3.0.mod 30 BLAKE2B 704029826c505198458e86463528ce2c1b209376f376b92d4f05a0f4094d161b45470d04ed3c1b5635397aca3126c25911299711139d794cca3e9b2bb373ee17 SHA512 695f3424e0cc247a069fbd6b94820554e003030eb0e208ba7be38f660c5fc29f74a057e60031ec77918b5b320913d6deabdf19a0f0666b0f5bc5e2724e1fddba DIST github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.3.0.zip 25027 BLAKE2B c7bce22cd6fc49d4e5250a6dadae0bebb869d88fc0c7efaf22fa3345763488c9a7e5acc826b87c5001c5e53915e327c653e0a4e0bb945d601a79a40e125a775d SHA512 7160b10282b5e11df66caff015b151a1cb2f52794cd97fb0011440a6a374dcd1e88141b516ab1951de594bac0ca9401b2637c4fbcf3f9227d6fed87a21fc95aa DIST github.com%2Fgoogleapis%2Fgax-go%2F@v%2Fv2.0.0+incompatible.mod 36 BLAKE2B b84f97e1dc580fd7a509f321486bba195bfc339dad35ec7dcecae4b44cc20690b04077d51cb4f70466a19e7edce89a8a50043ddef355c37fb4e529b81b99efcf SHA512 3f00f698f5b9c8c859553086638f72b732a210572ab7319c1d641a29962b317e4b424ee213c2421c06ec76c70e1252d7a770f43d4c46b999c5b371017a3c54ea @@ -352,6 +340,7 @@ DIST github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.4.mod 88 BLAKE2B 840afaa2 DIST github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.5.mod 79 BLAKE2B 21f442637ef0be838858e192b563e158bf6ed1f7e06e09a3872fbcd613046b095c5209d9ccd9cc0853ef14947b6b70d4483675505d0905a1d2aab15e7bfdf80a SHA512 2af320b0514b032ee87a92d99d673579981571f325d0d46133e212a639eca274d5a6f8164a7256cfa6c063967b98ace36e637f53d90331903fd6e4a21f1a5a19 DIST github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20181017120253-0766667cb4d1.mod 36 BLAKE2B d7cd8f31950392cb5de7f4223ff9fe3257568dd0a1c1b81c8b97934ba92379753dc936c81c39e5b553e4101bc7c035ce81c8d669d85ed1d1eee41a74218f3d88 SHA512 35151946ce44fde9d3bde1d0626749ac4bc68cc448736c3b0f056f40a9ae30aef591db614b271df3eba3a96dbc94052ea5bf7ff68749ec980088d60361934771 DIST github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.mod 36 BLAKE2B d7cd8f31950392cb5de7f4223ff9fe3257568dd0a1c1b81c8b97934ba92379753dc936c81c39e5b553e4101bc7c035ce81c8d669d85ed1d1eee41a74218f3d88 SHA512 35151946ce44fde9d3bde1d0626749ac4bc68cc448736c3b0f056f40a9ae30aef591db614b271df3eba3a96dbc94052ea5bf7ff68749ec980088d60361934771 +DIST github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.zip 271834 BLAKE2B aeefe3121b7ecc2743f4f2c6d3c02f543798616aa10787ed6638fc18823a6bdf2489139cb7885cd244f5b47eb1d59e235da3765bee4f72adfe2a7507a37b4d16 SHA512 d4d15589ff870b69c6a81a478107cd594309679eb85034c24d77b530643896dfad09cc945426f298fb6a20016c1cde6f03ed30af73a724a9074d481efdad4df6 DIST github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190812055157-5d271430af9f.mod 36 BLAKE2B d7cd8f31950392cb5de7f4223ff9fe3257568dd0a1c1b81c8b97934ba92379753dc936c81c39e5b553e4101bc7c035ce81c8d669d85ed1d1eee41a74218f3d88 SHA512 35151946ce44fde9d3bde1d0626749ac4bc68cc448736c3b0f056f40a9ae30aef591db614b271df3eba3a96dbc94052ea5bf7ff68749ec980088d60361934771 DIST github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190812055157-5d271430af9f.zip 266859 BLAKE2B 50d9f8947a6aa6dec084088e20bb6fb15c3f55e741609be0e0bc13c53a069d302ddce02f767a8bebba89c18e17fb83ce208afe3fda89ccbffbb737b870da4383 SHA512 0c95b8842bc2ff2cede1b3614ee8e705a63bb1a77ea0eb73f34bda34293def3317d49d79a089a2da225fcb0eaabba1c20fdd766d4e4bb186059af9899ae66d2f DIST github.com%2Fgorilla%2Fcontext%2F@v%2Fv1.1.1.mod 34 BLAKE2B 378e68460634c64da8779bea61bcf813ce4c5797c3ea541362d1409bff606626917c1bc4cbd030d98077819c5a8abf2ded047c047c2fc6b58977093e67e7b6ab SHA512 1db09f5968fde5c7877937c2ba476afb8a07832943f66c24cda7669ccde744ecc5ebd6e9efee9427b24e10fafba5f7acba7416f9c4e438c2ae2ab22c4483127b @@ -382,7 +371,6 @@ DIST github.com%2Fhashicorp%2Fgo-immutable-radix%2F@v%2Fv1.0.0.mod 137 BLAKE2B c DIST github.com%2Fhashicorp%2Fgo-msgpack%2F@v%2Fv0.5.3.mod 39 BLAKE2B c5b445c060258545233b5453482e0c739f815c1ff605b539610f3b0bdbadb6da88954c6a408084f171354256bb8521b528573f56080d4125f4fac474ff9bde83 SHA512 45b4424a023ea15d95167322e022269e32f7a718dbeaf192d0cee9f6bd136f5b4a26827d6d041a8103a95f622a0dc92123b32e6463254199893f360ad8680de0 DIST github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.0.0.mod 87 BLAKE2B 34587a565b583aac6338d7d23b4e7c2ce12deb6700e00bec711d3d8d829ef1ae356eb1b28873d5bc2a0d6ed249dd6095539a1dfd8c177bec32e08d97f4003620 SHA512 d47dfa43806a386eb74b60f692b3bc580997edb9d7feff6633992a5adbf94d102a238e036d828952e204960152c62895288af6f09e2582e8b1408d259fb834c0 DIST github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.mod 96 BLAKE2B ada026bc3e6104973cb7900d638acb7976ee8301e98cea55548fc800d8954997b666d0c605dcf1de0f639932c8834bd13e8f8512e74529a818d3de978f0163d4 SHA512 7276c308f91ed52579965e7e83e839351f2170cef2b58ef67887d5eb926dd21fd502f98ddc84ca8e6f16c81171490c1e2d9a131569b5d6d56a1e2ba28f227451 -DIST github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.zip 17595 BLAKE2B 06dae93e8077ab6235d59b57646a162ff31e044624bab3b6ec86c7aaadf49c36b262b957704151db889c515c425630299d396d0b76919403eabf4a3e71098ef6 SHA512 aa4b145476a80d7be7959bf7d0a9a278765496dbf915d083fbc40c5b216a52126af9ba12cf09f9cc178ce53987822ed61c92e2a0295fa977f8a460262e857c30 DIST github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.1.mod 96 BLAKE2B e834b9619a59e85905dfd9a50233e959874706f35026892af8ab385b2fb78a8f876aa47695fd896fe241c72db5c306da0d7c24f49e3bfcad887ac9e2fe5deae8 SHA512 d44bb68b322c8512c135ca9689bbc603643a4a924dd59c168519761878fff14a394f365fe5d88114f5552a9ed1791f6f9e3f7cc44be08b412f0b3a5eb3efd67c DIST github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.1.zip 19419 BLAKE2B e8e9f8e23c550256e8f31341e2a575675c4dc0b720a701023898ba9bd09f1be375d21c9843ce26767fe5b7e7bf6dedbd4807f58807c3497efa1a1d19544e07ae SHA512 054679ee890bfb4f268a614870a100525b996f53bd48dc914200f2f18a4dec30cda59e26c16478259d1e80c35864df6090901595b59fb80a209f30d909e9e9d7 DIST github.com%2Fhashicorp%2Fgo-rootcerts%2F@v%2Fv1.0.0.mod 89 BLAKE2B 9e53a988f41eb9425cc2fe3051c0bbe67c65208e6988ae1b455450183c225739b540edb0e59cdd8d010c34e89c4e4acb70687c2bcb861d379443a5c36e261458 SHA512 3446ae69871561766d2b70963eccaf443edafd9328f0f58a97630fde61fa746e59d26ee5d833548a92711555656aa9c1f44bb9e241aa87e21f4424a1f10fbe1a @@ -404,7 +392,6 @@ DIST github.com%2Fhashicorp%2Fserf%2F@v%2Fv0.8.2.mod 774 BLAKE2B 3b47f3c78972eb5 DIST github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.mod 31 BLAKE2B 7202132cff9b47a4484c61586949dbf7e13622067675cdd09dace3ce2e5b3a37b6fc5275b3bd6dbb0ec6ca0335bb7c9a036cc043b2d8ff1f38bc90ce13041aec SHA512 54a5bbc02b82693a977a4f690314b16d94cf071decddee3a4af2a90398e626ff188bc34ab3517278e7aac4e657f3f3070a020c85274be3750371dfdeee139b23 DIST github.com%2Fhudl%2Ffargo%2F@v%2Fv1.3.0.mod 29 BLAKE2B 7cd37a0dd89dc331943531c8477a4773980f42e0c135a159bcee3ae6bd82aa8f15c4d67e7fa60878a35c7fcb69d647738095087775e18c540059fff6f4dc192a SHA512 28dafc16202503db863783e4701ab30b34c71b4435a4859329fa635c0915f0ca408dcd8c73217e0751f879400845d8136e171bde5d0cf6b7fa7ec4ae3ea97f69 DIST github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.mod 193 BLAKE2B f2487263b38f57fd7665951860e05a081f1456b3c3c2a8234b8056f972896551c254a90fe5a427f3f3582f5ffe1b607c82c879113b21201322ab23ca0eb36dab SHA512 fb2883f42f2e1213b77af90b96dd97cc7b8aa303c08c2326fd126cb5c5bc40d000cface357006440b152a1bc40c751d14c2f49208294e80ab870689ea02ae7a9 -DIST github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.zip 72318 BLAKE2B 74b3d91b06d4b220896199646f0bc9cc90990ae913ecf4f0a63e6cd3af53f76fb88c294ab84328f08e83c023cca672337aeb0bda5467ebfb40b4aabf93f1b232 SHA512 5833e9edcc647ee035f733230a388dcdfaa7e2d9d64be882ad2783fba3f1a4a08187675de5d2b4c097ad822054a412f0651fcb867dc126b1c41333e0c6877656 DIST github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.2.mod 165 BLAKE2B fb7104332c5a61a098f7e3571a642a41e5e6ec0c115a2ba1e63e8349fb7e107863bb535250457af372caad869ae6ebb35c1df9e942acff3d487dd25999ad80ed SHA512 ad10686819ce0f4b52399bbd2d380d95680713d552f30cbb78fe7dd7496bf66d0bac9fef4f73cc177b08e2a376a4d24cbabe14c34b3f76a3b7d186040bc2d8af DIST github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.2.zip 89248 BLAKE2B cf26563ded2f945c2e8b275a30c48f3e8b9ce2d035a6c0f7200e5299d964e5c9f11df8d93933060a8b2f7133b65d46a0213ceed893b9d94d73b0c91c050285b2 SHA512 cd40ea2a409ef4100456c928878d1676fd0f527dfe5b520b3e4264c99aa276dcfdc0e5c22cf2611cba8a8847985d3b811b46a447eef92fa7f6f6e00134ce5fbb DIST github.com%2Fhuin%2Fgoutil%2F@v%2Fv0.0.0-20170803182201-1ca381bf3150.mod 30 BLAKE2B a65905095d4e228a2e51c6626234e058d8dd1477fb99917c8eeac3b1eee371e8dba4231c30bc70463794afd5419ff5762361c8ddb59b3d69cb7a197d1424976e SHA512 2ca1e0cb3cbfb97598f12cca770d13fd161c4c78714c0cb5fe4fd329f3ae41788373420776608682fee1ce883c403769ff1dbb9478e9978a7a09c4483008684b @@ -414,31 +401,31 @@ DIST github.com%2Finfluxdata%2Finfluxdb1-client%2F@v%2Fv0.0.0-20191209144304-8bf DIST github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.1.mod 30 BLAKE2B 897b4bb38b2b17c707587cbe576d0624b6f98c244c7da90bf27df097df3d15ac148ebf961e6376193c80b027df6334832649841729c4dd05e830ea8fc689cf29 SHA512 0853c35fdf0d770d9f85b78d3eb3069d0ce993064c9b2889c97b14d3b4a07dfcece550cd833009e8525b36f62eb407f10fe91c923749606bfde5f7f64fdd5c30 DIST github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.mod 39 BLAKE2B 8a83281a278e4d22086a6256c032905ab2c93f46393d45d411df2b5b958fecc2744b12bc4adc73bf4d6f7d36e79733c6bb11ab61aee167d6acb4840c66074aff SHA512 aa42664c464e5f1bd00fa5038e6128817d3bfdf60d41b8c3f6d2e7c516f5680591d757bdbfbc1618166aec56136f1831437c94f4d2e61816ac1266672c3fe8af DIST github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.zip 10972 BLAKE2B a1425d0b6361ab463100befc84538020127cf8bb77fb593b21b8825687a7ccb49eb4e3548aa9a9c17dade9f3fddbfe165f53ee3cf5a5d3ccb6ef1856a3aeb1c3 SHA512 41f60088c4d51ef6ec71cb3c2f1a13cf58e1709005a67e97a6ce84b468b9b23a27d013e45a412d02625b36b51794aee4510be8dfc65bd7b9230f7e70620e5edf +DIST github.com%2Fipfs%2Fgo-bitfield%2F@v%2Fv1.0.0.mod 44 BLAKE2B 4fbb9c53f2c26171dfbb9dfe8099df82b73bf1efe6c251ac8e16e250159cbef366aac516d01091a2b2e2d0b9402555b5ba848c8067dce7926fe931514ab3fa50 SHA512 a2fdef191ad8f1a065c0687cca7e69e6f3523d88bd0066839d28a28e441edb1a9ec414b2e9f17d22eb4e223928540ca741553810e527f45bec454c79374293f1 +DIST github.com%2Fipfs%2Fgo-bitfield%2F@v%2Fv1.0.0.zip 4001 BLAKE2B cfd8bab651849da1ec3dd9648acd137cbc594b7fb5a716374dac5e248884d799bb2e276ae6ab3daf13380ac6a2528a728400473f82921b079fd34fd4ccb70292 SHA512 aefa73b1f62ac2b8b231d9e89d7d631acd6e04836ec4afe2fcd4eb3ce1f3d27ff743b5d8d61ad0df53423086efcd757a1b71c1e376c6c1ceeddf99b9a865869a DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.9.mod 2199 BLAKE2B fe20b6b3344137f1a1f852fa494f17a213754aac450ce03d801a4f410ffee929eef593db52138a666f645d90add930001310f16c2d8359383004524a67befe6a SHA512 c20db38ac2fd0f4c3b55be87f2886066e2490d519bf174c37183950c9a8a162c22caac294592ab93fb654362cc148a70ee8c8dddd157affeb490193be27f0d79 DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.0.mod 1435 BLAKE2B a216e99998042b443055d1e3de0ff85ce4692878d4930d4f67b3acb903c1ff4edb2a53b13a22137af179fcb316cd080dee91ff1a26a84d5ab5ae2669195781b3 SHA512 edbe93e6a81ddbd0ab3ccc81daa9fb78edd563346fdd14fd867d15750bf3ff8da9601490aef3e7ca2c4d73aaa9b56613d110404581b7e4056f764f8ed587bd73 DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.2.mod 1585 BLAKE2B fe55ddcf7d388596d1d24c0e98941b4741944bd7f284a4cff7b7579d72843543381bec018aab6ea0ec2b92bdc647799c465dfc0651245ad5be3b976965956ec0 SHA512 a55775b242a59f359906638eee4faaaaf5e9377908cdabea52ea2723300eca1fa04e62cf92cef1d4af59551596c47217b747000ee2f3fc45a621731d63abc291 DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.3.mod 1585 BLAKE2B e6719a09214b6d908e1e6bc133fa79c8084f6f727c2cd4ae65629bb19ea37a35516cbf0ebe7bf47a94078012033ea6ff724b57e7bc6006df36bb8682ddbda765 SHA512 bca6921d95f082f5cd043db39ed74d557bb20a2e1fa20ca7d4b8652537a6c6e497be0fabbdea1f35bf691a2fdbd2c2aacff4900d2ecf38696a87aa51ca6afe63 DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.8.mod 1614 BLAKE2B d9db3bf4a67d0be13bfa612658baa0b17e857e97cfc235d5aac79e6aa69459f02d8a75e416b6733df762596c3dcd4c3949482207ad628edfe5e4e0ccbc2245cd SHA512 a1cdf9f18b8b85fa42fbc66361efc3e91a43465f217a8492a19b227a825a8e5f1969707cd16ba60ae6025794e0feeafe477b3e3d5ce0610ef7d61e60083bd8bf -DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.3.3.mod 1108 BLAKE2B 8df89e63aa6353f30613e2b9dffbb561f9685c9aeba5fb63ca0f724100eef2730a37161c5bba9757162016c98709c468e8782673ab568f82ca132b4904a5076e SHA512 4a6c9010376f1d7c795a74f315347fd60b1fa873b23c8b13b4d22292b5666225108e3f9bd0ccb6bef52d50211ff99cbd055cff4839e3f09c300025232d53819b -DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.3.3.zip 281523 BLAKE2B 99e97a1a1835fe701d3cfd89150f0397ee8a53fe6661d43cabf870d85baaa90e2669266bc61b2d689bd37b03ba23b3c16eb2ddc9db1b411ea68114bb0db64021 SHA512 118e2e878e6b209e09c5d1b20b3fa9a714fd2e001e741231b5dabacedeccb904d31931f15e1a2920ba0b9d03dbcd87bece0a1729ea31f35b5aae1de777d7d9a7 DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.3.4.mod 1108 BLAKE2B 2a77f9c0fd8518162515ccd2d88affd8ac9631848ffdb7927d685c28859ce066e04847e08a04cdb3e2038d0c325ad57fab27b8daf3981d150d3ec2b2db19e589 SHA512 a76ec757600cb44ce8b7f81b6efa0f02a5f81e9899b5c89408883985d9b7d3e782bd2d3b697559b4786c62a5f263e13bb0f64f99430e1d593bc537e958be66b0 -DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.3.4.zip 277320 BLAKE2B a22608cdb3e3defbdf0035d42c7893c8392f2935023d887026527a383d40f58d0b9513736006407d2036416667c8b554c242154a2cb5f6a8e9ad5a094193576b SHA512 70b4244ad7062a4b6ff4cf81fc1bfaf60be235b5a6ab7aa0ff167de1955773db3a9018965c95a5531b731ab1fe12dd0f3e9382639ef668f1040a4c5022ffbf65 DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.4.0.mod 1181 BLAKE2B 522037a6bbcc3fdf6aa2238756f95ab1fd4a49ceb0cbb117653e7d81ad99c70ec6766bc5f14068ceaaf929e1a4a7e2347c7b34eb54b6664f906e234e451b84f2 SHA512 82d1912f004d5964acaf1dfaf8ea52e321f4a3bb803e5f4b97c9c2be3ad4d9730e0f83f8e04d9985787dee121a8759cb025cc36b4e8894d181b1318d0b645fcd DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.4.0.zip 303511 BLAKE2B a6d96cc276852b258723e3977245524c59c2d1ef7b1cb8db9b5635f034be3e6fccfb7eba7da1dbc9766d6535d5d4e98346b7e0a2f7a3632d5c85968ae62b43a8 SHA512 fd0337eaa4785ff343d982f1fe69fc26600936e25b2ae00227307494419bba83d01c07daf08530685112c013399f3d157814c63c36463bc1af178fc4501f7a19 +DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.5.1.mod 1181 BLAKE2B 575e9c2dd7b76e0c3a4cd87c73f1299495f24740f94ec45d00a5f62d235cf78baa4b2638e1070b044e062695557703c771a1bf6a9ec6c402932fd83b475840d7 SHA512 be8ec7b5243e02f4a14af3f2f9db217875d72bc1983bc0855f7ab0fa91adae9112c1eb8b121923501f9f4ea7097f07e4714a8a0e6fe2923d1bc0ef11dbd29173 +DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.5.1.zip 306633 BLAKE2B a4d19d98fd7f42ce2e33e0ecdbee837920e0b85248ddf012652f389b885b0d54be516eddafc24c2c76c718119eefe9cb2978ea38f859f747e604d3da0d39ded9 SHA512 b3ce61da7a5e198e46b2da146f6b46a7d469daca89946ed21cd57c2c1e8a09a0ade36d1c1cdb24cfe2ceac48449b3b2eb0b54de1065145445a6f241a7d36f9b5 DIST github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.1.mod 39 BLAKE2B 715142a153f0ea8823ae09f4417506d5cd13b461f6ea59adb42579028a338e874a131eb0eece8807a9b3c59ec98d74e8b8c214144178a19bea583581fdf0c8c8 SHA512 d8e46c1deaa00f1b7690aae63dd3710c0ae9fd407e4a24bc035eacbe677890bbd5bba8f64634d7ee9a47bae96392f2406ac99de8a1e19b8710907f5408f802f6 DIST github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.mod 165 BLAKE2B 6ee87d24f36bba4bfe57e76f3a934a8297797739bfc01c5f89f70acff3b508cc0b20962f1d56ad6f7ae9ccbb219968ce8da79b07f918018244b87b9c2e164d93 SHA512 685db8e6b5880dce0470fe327c2f296b153fc9294cc9a91f5d37b7dcde57d17f237e65156f4af0ff6bcbe8ba04452453cfafcfbd79a6d60c983f4ae628593b55 -DIST github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.zip 7084 BLAKE2B b3358f2867ce1d1292bbde743c9274a4ec11fd534b3e35a36a0c34b77c5c16360c12f8db014ac788df8659f1bd9be093a6f06582187558791bb62105eceabb98 SHA512 1f476440f490df00ce69247c5b545993cb81ab555007075544f0ec2766c5cde98488cc915999b7c964ecbf36c9cf5e5c768c871ea3131deb8750e4ea4253e7a2 DIST github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.3.mod 166 BLAKE2B b4cce4f8892cb0ef8c1daee62a79f321bfbbe8cfe1a478a6802e55e3140123d2d8b630a48ca7204be87dcde126cd5aea8e6e3ad6af2def4a3bbbddcd3215de7f SHA512 ad6ec57a7f986a2191a8edbff14405e5ca95d1df1439b44a750a16635cf8242eadc9e1d74048f3b14231d69f049976602997eada30add73086d30404bd11304c DIST github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.3.zip 10239 BLAKE2B 0a383dd72659e6319faba94e787d4cecabeb6d728751f4c076be159e48dfa073dfafc9e80c9854348b2e562b281eb280e5699ccd15f93e37d2965e963b79e6ce SHA512 56415d81077d0a299a7d3512cd9acc0e130cc6e647cb41d3a4b0e32d13eb6f21e17137072e4e70c9511981b991c1cb10c5d92c1954de16940d32e4a141683f1d DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.0.7.mod 684 BLAKE2B c3b19953c89435e4367a62ae041ffb763b5e5d0e91eac1dd3c71a6f45b4a8fe26d12a45b6b8c882c121a19298c802ef04ca250b0d31fcea946027b4d5e991bd9 SHA512 e6a3ac8f2283bbf44d0521e8f452557f3156a3100d77851d54468f9155252377f46a5322604f7728ea78768c795b222543286f65646db93937f91c2ddc2c2760 DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.0.mod 563 BLAKE2B 9104c7643c55f2c27d92d82a76b56cd262df04b4f7d9edc3876f297415fc5aa3398043bb48d1b1f244539aec097ba0eaac9bd677709733102f0e3aa3983078a9 SHA512 a4dad0c089d1bc79ebd2fb34b6d9d2c43ee8a3e40b21cbb4012c6fa859458230edae104890172d6b81fa9dec584f21c70640324f859f27619d0694363e8285cf DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.1.mod 563 BLAKE2B d75f3d326cde9ba74bf1a2c71a3584b5d3f31281677d58bee5158c3e44ecfb0b7c3d75ee723a2829d6325929d29c3002b2e65883dd8cca178a7d4f25315516ee SHA512 8c0d65adf05fd2cfc26f5a3c87e781e71c9c50c3789c303cf304598bcbc53fd1168b4bf29b147e0119a227f757d2e91c52daca40a8a4b78416f6fa1ab3a94bc5 -DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.2.mod 563 BLAKE2B d75f3d326cde9ba74bf1a2c71a3584b5d3f31281677d58bee5158c3e44ecfb0b7c3d75ee723a2829d6325929d29c3002b2e65883dd8cca178a7d4f25315516ee SHA512 8c0d65adf05fd2cfc26f5a3c87e781e71c9c50c3789c303cf304598bcbc53fd1168b4bf29b147e0119a227f757d2e91c52daca40a8a4b78416f6fa1ab3a94bc5 DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.3.mod 572 BLAKE2B 4bbc490443968d82a85206b7a8ec5f77976aa40c2f4103c5e57d69bab1f4a867640c0bb619d4faf672bb6d5fb2ace40a1fdda6f05534dfe0ca17fa04b3905a4e SHA512 e3582b92ad5c316e47ffe1fe1c269924ecfbdb039d043957acb90993d6db11b6145d2db9f01afcc2677458c2525fb3919d7b78ce806c1b11f552275b33d63cce DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.4.mod 572 BLAKE2B 4bbc490443968d82a85206b7a8ec5f77976aa40c2f4103c5e57d69bab1f4a867640c0bb619d4faf672bb6d5fb2ace40a1fdda6f05534dfe0ca17fa04b3905a4e SHA512 e3582b92ad5c316e47ffe1fe1c269924ecfbdb039d043957acb90993d6db11b6145d2db9f01afcc2677458c2525fb3919d7b78ce806c1b11f552275b33d63cce -DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.4.zip 26072 BLAKE2B 4d61b7a9e767cd146759a7e22f980bc27b09bbb414c8bf795ae237fa2d4963f864448252355e0c96e66d6e2bf4ed50d75fa54a7f5ddd5ad1f5096feeb0e2704e SHA512 6fbddc166d2ac6d48a1d47d9855a02f1580687cc0eed79cee224eee115382aa0de9336218bcaec726af4fe0fa30f0e6e04d52624b1cc4522d9e31e346723d4bc DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.7.mod 946 BLAKE2B 9a02668b5306da6d53c3d9bef7f051bd5ef647faa49d5794fbe30336b127947ada6dbca8af05baec512d5bc53d5bc040164e1874bd2fad492ba7b1b983f15624 SHA512 a7f247fb981606c3f1d34dacf9d288b2195820c9a018e6232d74412dcbfceb4542984e09904580a1013945b51fde4af9ac2fdd26e3ea78197d07b668e8e9caf4 DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.7.zip 48964 BLAKE2B 0334b49d354e0434954fc60d1c8367910319c41bcb19941ed1c4c0a1a98059c3399a4118fee61f07ec39f455f04ff0fce5a6a1a2a279e73d7d3f10ce847371e7 SHA512 d2508bb02003d9d4f2fa2361e351e3357046d1c75eb8fe5e27d1a3617ac83db013652df2746a15881446853c9f62f9ec5f1194ae22d11af85d18e125ba879bfd +DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.2.1.mod 575 BLAKE2B a02d456ba87abad27b8bc7c9d2be699a51ddbc5f1859afe8ec6af23022c6349cee6cf183b78b858ba5fe35a3a41c05a93235cb10e58027a16db601e1de2ed255 SHA512 8e33e4c291b1b7ee156a215041ac775af27331cbc811438b75aa9740fea25570c8e533ab603f7b9a94736fbc48dddd04f27338f29143fdf4569fbe33b83f1b6e +DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.2.1.zip 60065 BLAKE2B 782edc1ab19aa91fea7b47cb729d2dbaa68d7896fd4802f2ce05cb4271e2e570f68a7d89c54029fb50789ca0888b12f74969c44d114d936addd400d08065b5fd SHA512 c05a07656ba35d991de3c69ed2f27ff6c6c72e147e4330a8507731aecfb568ec703af28eea7db72fc490e9d7a38bba7240ff48bb2d0ac6e24606bb3157acdda5 DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.1.mod 133 BLAKE2B b8b27151ade02e67e7f196c28365347ef42f8aa5af4d0b51c1e079eabf3f5e79da0acc79af68de123d1adf55c4b10b048695a53b54f03b242b162baa607ae34b SHA512 7ae26370283c2e8aba4990adabb568fcb0e033b93f1d2e167894478d36746c7a5a7598ae941eb1e21571a35f15830d6fd6e06825615902c839c561609f3e7522 DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.2.mod 133 BLAKE2B b8b27151ade02e67e7f196c28365347ef42f8aa5af4d0b51c1e079eabf3f5e79da0acc79af68de123d1adf55c4b10b048695a53b54f03b242b162baa607ae34b SHA512 7ae26370283c2e8aba4990adabb568fcb0e033b93f1d2e167894478d36746c7a5a7598ae941eb1e21571a35f15830d6fd6e06825615902c839c561609f3e7522 DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.3.mod 133 BLAKE2B b8b27151ade02e67e7f196c28365347ef42f8aa5af4d0b51c1e079eabf3f5e79da0acc79af68de123d1adf55c4b10b048695a53b54f03b242b162baa607ae34b SHA512 7ae26370283c2e8aba4990adabb568fcb0e033b93f1d2e167894478d36746c7a5a7598ae941eb1e21571a35f15830d6fd6e06825615902c839c561609f3e7522 @@ -447,6 +434,8 @@ DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.5.mod 185 BLAKE2B 172b8309e3e7566852 DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.6.mod 185 BLAKE2B a21810603a1d1ae039b83bac6cef5a9f0ac437f5fae6ae1fd9fe562b64c7170513d2591f1c2cfd89a9fa93d00be0aed251b645e488506a41114a09a163b0c01a SHA512 debf6259e046be62daf1d947cb9b255ff3caa14f3bf47c0023f19a53a16a203f1937c5a541aaa7ddaff368e35649af2b61e043c20b0f416b0fc3f81ff167bbce DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.7.mod 185 BLAKE2B a21810603a1d1ae039b83bac6cef5a9f0ac437f5fae6ae1fd9fe562b64c7170513d2591f1c2cfd89a9fa93d00be0aed251b645e488506a41114a09a163b0c01a SHA512 debf6259e046be62daf1d947cb9b255ff3caa14f3bf47c0023f19a53a16a203f1937c5a541aaa7ddaff368e35649af2b61e043c20b0f416b0fc3f81ff167bbce DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.7.zip 34166 BLAKE2B b04f956631810964194d90b6de52cea357a87917b869cda9fef4cd5bf9cd05ab0e47712cbca0056d4572ccacb2b7b5ec9f869c03fa850cc1a732ab9d73d9a325 SHA512 81cb814bbff621da519cd8e64fd1af1214687f20bd5738464cf06e5747ebc5842224feba0ab0b2c424eea5fea1ba1ebf87f67f21c73c714b10ba78b99c953a93 +DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.1.0.mod 253 BLAKE2B b15c8ba5209f3364d8caa8a2deba368ab594a6fb7406c8e9a0ee2773caadae8c73ab58331ca4a57365be14ba76a9a9d0a8608a8a3a2009311ab3dd003807cead SHA512 1978b7ef9a5b4a8c887ae29d841f30e1cb837926806db8b6020edbe740a2a6c33317dd1a1ebbe9244c92d02299ea7d5d708b28798fe742d888064f4480d47e55 +DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.1.0.zip 39796 BLAKE2B fd0125e73c8e994b793707f7fd9786c1a94730b35ea7ba968bc2ff8601fa07d801f730322a1bcd1bceeaf4490196777bf08fcc67e430ce74060d7593c9112874 SHA512 c419b8ddab2e8ef3691264ae909a154009d39d1aabb403889e98e13a25d5cb1c10c68bfccde7e8bf8892d5e2ae149b7a8fa2ae7c4f5afd8d8a2ad78c5c2511ff DIST github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.mod 168 BLAKE2B f72342430cbb090a7bd4569724668d7b56ee9291c2732bb5ed7d1893404b19f65985318c6f53c06b8a26b8bae5c71692d2456fe99572aa1a83a473c3f38ce2d0 SHA512 ad683cfb6c9797f40b7f0e451ade6035c94c524794e82da5217a490f5c0034fc7e1fb3904c409f2b9e9c8d80eea3a795ff0b3bb2dfe1a56cb9763a6b6a427d5a DIST github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.zip 13245 BLAKE2B 39094105b22d996c065e6877fb524b30340e1763159cc90b9b212ba2e6d7ef64e9b96a50f9449d4b21c812626fc9e5c5cde166ae94c90120354921d7cc3fdf03 SHA512 3c88e3931916418c4496bc51a2dca24d022cfa02769a7d3c5df475342e6e00b4f564c607a04419b275fed5a5de1070fd6c294b024ed7ecd01d42b1604070157e DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.1.mod 379 BLAKE2B 68262e69237ffd3e3fc3403384f5af39bca79ce338bb06eb17e1c147e140d5b2dc05a1edd0873eca37b25d36d52f9af56d1c74dd1e5c0826109c64f4ef28ca98 SHA512 1b705f3964ebec3b88c0b12c91eb6d577af2c09c600116439cdf2d1933178738827e0e73dbaaec844c786817415a4c3707ffd5a59ed361c232e563ad58472d65 @@ -459,9 +448,11 @@ DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.0.mod 371 BLAKE2B 623b36e1a86f DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.1.mod 371 BLAKE2B 623b36e1a86f025a1a9492769f3848a7f0c929ade5543d8078d23aecaf781500f182dc35fa439fa297a6cb1732eda10977cb1236ac95651a54a8286ad9e76947 SHA512 adaca7f52bb8f22c7efe401f615ad43ba46a4058f799e2bdeb1a94f2c4989c8343f8e34f4ee4b2eb40bdf0e95e28a6e99113844f32f7c1453fd91c4dca8d42aa DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.4.mod 371 BLAKE2B 623b36e1a86f025a1a9492769f3848a7f0c929ade5543d8078d23aecaf781500f182dc35fa439fa297a6cb1732eda10977cb1236ac95651a54a8286ad9e76947 SHA512 adaca7f52bb8f22c7efe401f615ad43ba46a4058f799e2bdeb1a94f2c4989c8343f8e34f4ee4b2eb40bdf0e95e28a6e99113844f32f7c1453fd91c4dca8d42aa DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.5.mod 372 BLAKE2B 2bbdb5d2e35edfab6071bbb05e5d011a523fcc56d79c916365b2c15ff0e39ddebeb739d092e46aba9352d240ec3fc0c22fdf8b94067db60bd3505f469c95927d SHA512 f2396f952bbfab37680f7241e2e398313b219c7f08aff88abff2cda739d808a0b9bf7d392cc1e95ca1f20a6c3a9d1a1f66d7db08e7dabf2defe02d4b0b12c001 -DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.5.zip 63291 BLAKE2B e1bdd03f9b20df5e41a60ae7650514a892210e4fa87c2cb5c9d17fbcaf019aa4fe01e88ac08344b64e6a16d015d6d0b5f34dd6ff0f386e56d65db4858bfd9c7a SHA512 af2286ba9a5816746e888e129a293af4b60db7c1341b66e98a12b3b707a44ba9f24f1a47cefaeea80777a5ca692d4b364ef3df0f2ca088a7c47ec4177be9d885 DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.6.mod 411 BLAKE2B 3a8237250cc6a58f996c9bfc00be9b0643c9bffbaafcb12f602846f0dcdd879506cd968e3580ead46ada316cd5d189517727015cd66b1b8904568530f0a1f0ea SHA512 89d667ba4a4cb0124c9869e04ca7a0a340554228225985258ecccf334272ea0d5bfe19ea98b773e557dab3c808d8c590380273c25c49eb95e6d18ed64b0cb8d0 DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.6.zip 66213 BLAKE2B 152f981a537cb4c423940616cd21a5b9e9946377384627a859feb49088555b8448b010d6b922e7afdcc8d24e54410e4525469facabe9cb2e039e79c71bf08984 SHA512 ce6c1e1f12c9ecccce087f879376fd51bd71100ffc9a663a752afb87acf5b6cac8bf3d4100d3e8fd3550597b1141bb73c1478b86e9ec014896a715b68f25fe11 +DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.5.0.mod 411 BLAKE2B a806d3482e15357f4215eb3f3e0e28b2ab0a351c2a7f05f1b37beb6d4180c3b86d5d7805104c4b10cf5cdfdba91c82e7df88b7c745eefb25b9ab3a8ad0386b93 SHA512 d549fe54fb6fceaa8aa1a9e3983f81d478a85a423cfcb473dd7704c24a4a9cb2ca70975f11be4225bb79fa5dd2cfe08bce69102f83cf2eca5571b5a553bcd610 +DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.5.1.mod 411 BLAKE2B a806d3482e15357f4215eb3f3e0e28b2ab0a351c2a7f05f1b37beb6d4180c3b86d5d7805104c4b10cf5cdfdba91c82e7df88b7c745eefb25b9ab3a8ad0386b93 SHA512 d549fe54fb6fceaa8aa1a9e3983f81d478a85a423cfcb473dd7704c24a4a9cb2ca70975f11be4225bb79fa5dd2cfe08bce69102f83cf2eca5571b5a553bcd610 +DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.5.1.zip 69432 BLAKE2B 5851ec89a5046608867ae5e34da67b4808ddda4cfc27b08bd5637d11f95ac0fb337bc1bb980b5d32e008a9e7a8aad6d5df7bf77292d8870ce7753a41c389dcd6 SHA512 a01fed953bf86bfc811b0061e5000bc1c47374aa3776ba140a384ceee36116bc75c4a3837d87f0c9b0fefad6c2acf3f3ef22e95d05ca9180c6d0f24da851adbf DIST github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.mod 38 BLAKE2B a901e8e26aa87a8c6725cfd14922ce4db42df82498b6fb22a32ac115e376564caab0e7acf11796101ee2101292ece74be300590470c390ec9ddd0340d926aac9 SHA512 b91b0241071953445b7c4bda376d2b45ae73d82c590764a0220074bdcd4d0b53fd73a9596eb07ed1fde77b7d9303f4b61db984c1abd2697d49b72077d4e49fd7 DIST github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.zip 3910 BLAKE2B e357173dfa2fd7c403775ceab418a4ae4f266e9aeca1906062e4ad6d4840995a547811f34fbba1af0d96c8e4b2055f0ffbfc57ce540d3bc2919056ee97cadfdf SHA512 d4aa6117e8d0f504d2dc4226132d12608969924ea845acb79f62bb1635bd232eced5e8e1411f2e10c17dc3ebb64f816be1728dd703e1279852868752bb9a5bd5 DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.2.mod 580 BLAKE2B 8c38a160b20578a2eac31549d6b443615943381b8e4b015350677602c49b1df9ed3a6e41653b29f47b65ac7e557e38135e3332339d9e5ee169b22fa62c98b3a9 SHA512 e2b01a8c26bf7baa9c966172396ae19eae6ac0ed7bcea6b446da256c33935cdf3baa2aa86df16a5bd4aa54e0d6163e62eae6749872cd0bac1810c3231a348137 @@ -470,36 +461,46 @@ DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.7.mod 226 BLAKE2B 5a15718354c0 DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.1.mod 198 BLAKE2B 909b6ed1252280b914e0422f4811c43afd21601481254ac4ec4129b73859698aef8c0b1dc761b3d96ab4fc84008fecb8c06a3b4387505f658847921f209adbc2 SHA512 ad47fc139bbe78d852f1a380fd150770bd74502ef4e29a95f9a6b32c251cf3a1fbdc187de0a1a5fa1fa1d93403626d9cba1d3c10818b7936c4dd643ebb45515f DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.3.mod 198 BLAKE2B 39086c7747bb89ba2d419812c176b380d5d250718eef888b4248bbd3891d9360fc8d6a4ce97507e84c5d704fdfc36add04e38c4fb30d5c5d0dddaabee08525f5 SHA512 0bb1bf1406b13790b7188a371c4f9df6f7c083d5fa2077825b8f6e1a87e7a8a26fda5d29b039896af7df4b010b80de9fbe95323bea8e79851299bb938e10267c DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.6.mod 201 BLAKE2B 988e854a7dc638608760b2a8cb252fb324be18fedd35d1322866b744f91efe66ddae73b664a5e52381bc3680be01dc49ad1f558d990601640e3f7cd2f6243a26 SHA512 a00560d67f71fc8e4aa5e54cb5326a7a1e2a1299fbde52f69a72c628355a5a59db0f40b31b5e8d6b6df840136ca42470ea35898c63df6ed20a177ae5ab7e6086 -DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.6.zip 21599 BLAKE2B 03d35feab28fda969f61f2b7bbe4596caf58d62419ed0b9f5d96ae455eee341c1b5505cf49acef9963a3579025967ee1f557bce4b14b8f9c92cd4b33fb28af8f SHA512 2318682cdb637f53baab38ab158ce2d99d1cc6f237f62541523a226e50f24cf792d39d38a93df7172a60a4219487fca35770836c98b98e02154dc9332c6455f9 DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.7.mod 201 BLAKE2B 988e854a7dc638608760b2a8cb252fb324be18fedd35d1322866b744f91efe66ddae73b664a5e52381bc3680be01dc49ad1f558d990601640e3f7cd2f6243a26 SHA512 a00560d67f71fc8e4aa5e54cb5326a7a1e2a1299fbde52f69a72c628355a5a59db0f40b31b5e8d6b6df840136ca42470ea35898c63df6ed20a177ae5ab7e6086 DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.7.zip 21631 BLAKE2B ce45efea06972641273cf1d5ac834bd35e4d8692724814e673d3330ec80fea32428e969d85aecc921afbd721701b49f935b4b9a7ec6f12edcb4569551f381959 SHA512 468f12d4bd57b92321435df0e210bb63c424bacca765df41aa0cbec76788481ec6adeac8e62ac4cdb3efb12c6a292b7f89f7609a414963a119d505465750504c +DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.3.0.mod 201 BLAKE2B ff43e40efa96bede216a8501464ae843f29f608072a9e06c356f82a042d120cf21b965e75383ec26cf10a0c8c8fdbada29f350b0e2613c51d2a28b2afed03a23 SHA512 51277e70a867942927f53ef875aef34b3a8b20412fc7cd1bde404106558bb533e4fc993c354fb0d62ea34356069d71562590699da8ff15c628a66bdaafcbf1c5 +DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.3.0.zip 20660 BLAKE2B 967e38f76c5b7eda31908befc8340ff5096c52ecf12cbce10c5981342e6b04c0149248771bb07ae9596c435a0c0208b27a45ca79555e5ee63a99414ab7a33cc9 SHA512 fa14ccbc77f647322b1726f0bc18490905675649e50ce1aa4cb23784aa43f179c09a1bb975aab9401af24133bdcfa757123178ad63569bd5fab584c70f94f12b DIST github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.5.mod 235 BLAKE2B 6ed1ed2b206e1d3f1d7a10407eeff0acdb66f56b772ce4e225b185d897cd9abe8c5e5d7cadfaf89f72b9850239f2daa5a763789bd5f29b09f45ccb74d9eee3ce SHA512 155c3ec950f15f0e49380a3d06fa24d1ef5f684b5563eb2c4e9e8a35bdbbf0d8fd41750bd6d671ac6c06eeb3c470fe639e3d646523d2149d72513e29c8a07ed5 DIST github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.5.zip 35666 BLAKE2B e5cffe612424e2c4e53fb9a1b87a4ae82d6d2d202effaeb7bb55c98f3ff0815b4845bfe6debb666003dcba5ce89a8c1ecdc2c49164e1c8f8445f6d9f03634c5a SHA512 10e45b2583e02afcb26ac5e8f87956e4ad6fa5143b3e28a3068bd515fa90ce8e8874d62f610e4b3d34cfb63e8f373a6190e4a36a75b9e760f32a70e63e998791 +DIST github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.5.1.mod 235 BLAKE2B 99ef803c03978a11ce25056da6165fb50afe8047d9085519d504e85d3ae4bd879dbe7c31f17c16de5f3d4ae2b91f862bf59c6d61e14e7f54bf1b46a49754a5cf SHA512 2818938e1ad26589893dea63c1bdc93881a654bcf292ee7a3a5a5f37ee378c8f93c136f389799ede0ca7d11ecbbc11522f80a34c59da69bb924cd6bcf7894b0e +DIST github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.5.1.zip 41758 BLAKE2B 2ae262b5907baf0fff221e540031085022b395c11d8a8a61b6c2030751a2833819400e09ffc0b5cb8305fa14d47ee6f258a7b2a97e65f3ead3c38f8b2c91cb8d SHA512 18abb9f0a04fca4bf59ba65166e82d72cef0a2c83a4d0ab976bca3f5120b3183d70b72a2920b776367e97a6b06cbbe5076799d441c2acb5ca0569de6ad38e538 DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.1.mod 187 BLAKE2B 46a16d43de9b340db0e80690175b6014cbb348b4463ceb238951740089431a39c9370130361852a1a88279724307ed3e0e2b88bbae1df4c60344cac949f691c1 SHA512 0c17f027d3e00148d258d7b7df388dbe9914a7b1d592fff27f41fa28cbadecb81ece716743bec1e1ffe59f00cd8104fb9ef9b2d682f9e18a82c008c9a1b78195 DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.1.0.mod 123 BLAKE2B 2455c462d330379f3e1b404ccbd7d772a343d002c358903a20d7b4f52e2ede5d9f0e893f6d34a841354cdc6a77560fe9774635a4d2463da56f943b1c0c1b1c48 SHA512 32401cea39a0efc5578660ff1173137d6fdb7fc82d40baff20e469f9cd5354989d6a65d56bb3fa2a7e34129373346b6ff8ee1518e9c8e20081bf2f481b3e8716 DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.1.mod 132 BLAKE2B e0c3da80a578d8c7de5f39d20acf616c825823f62a1c9637ec3299c23c830103c6135e2c10fd0432b6974f5ca7b506a400d45814e5e214035fb3032192b6e41a SHA512 806a7040b1231d2a177e8d0fd78b3a176bf64e55781488536e7da91a69216509636989425ea679e5323d816b96208568218debfa4b62d4cedfaeb740095fd46b DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.2.mod 132 BLAKE2B e0c3da80a578d8c7de5f39d20acf616c825823f62a1c9637ec3299c23c830103c6135e2c10fd0432b6974f5ca7b506a400d45814e5e214035fb3032192b6e41a SHA512 806a7040b1231d2a177e8d0fd78b3a176bf64e55781488536e7da91a69216509636989425ea679e5323d816b96208568218debfa4b62d4cedfaeb740095fd46b DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.2.zip 9716 BLAKE2B 23db952f83ad1245a86a51820109ea542017e3ca07bb62db7cb377795ecc3d71ce2546bf2a49f321fdb3f67f002a7fdc0dd8aded121f7467062db4216f31cae8 SHA512 412a8aa9c1a95b59864ba93c232097c98e2714dbf691db44cb83f83a684dc96336b2ac956d9b5b451f8193a7ef5d316f2efbe403ea24c5d457531d47904cf95e +DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.5.0.mod 132 BLAKE2B 1c051908f8b0927840cd212dcd3b26c5f0b6a9bb52fe712b2eaa278651aefb42e7addb1a33645b05a467583b34fd3bbca4b861e27580634a93867acd09fb9592 SHA512 7fde824e645d8249e4c8ae5d36f19507f0b3e3c346f76525f7e2358fc9f0137d945de8fcdc99b1cb2a43a1820739acd00f3888e61dd84f794faaf7e508d9879e +DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.5.0.zip 18099 BLAKE2B b527506993f178b9c528a9a42843d43a8274d9743d710878e89d4f4df6fda9feb1ae8af8f7559fd92fd76cdfd0749d27aa4279f2a9f9f892d4e583655745a27d SHA512 ff3f583697cf2156df49d774c2c3e97f2f75228236abd925c7ad5a87e9249e7c71c5a023b35389fdbdabb5f4ccc787b7ffe473d543189b05c7a223a7aa372316 DIST github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.1.0.mod 141 BLAKE2B af90d04a9cbd0fca5282c46d91899474dbfafd7acf1447d7d3cbe135eb52a0afd8d138c6e411fb25de04946ac5c5457ee3122d29ffd0c12bc66f9322605e82bf SHA512 f4e1db496f757d20be999cdbe0d35ecd1dfce7d81d41f7abd6f621bd906270b632e7f6810f29bc972726f4bbf110fee8b38604400183e5d30ffc13b3570219a0 DIST github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.1.0.zip 5842 BLAKE2B 8ed7451e63600b0f89cfa041f9f3e2a3a2abe70a8e9f3d41e08c20a268017a846c35db69da05b1f1d3a318b8c2388f0415d0fc13efaf670ca4f56317457ea75f SHA512 6275e9fe1e6d288763ea312b374669c8b0339ef2d450fd59da2bf276544be2c82a4b762c6492dc5a3b75e18574256840b5401a76743223cc1a02de142957093b +DIST github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.2.0.mod 141 BLAKE2B d9eb4c066f5401876fd336dacead1a94532500fa26b378f606dfb4bfadab72f726effb82593dea22902a6af2b59a8fdac35cd2e9321b0cc309a2bccaa2007279 SHA512 33f37bd5ca05311d1d68d9ef33a1cb5280ebd0c4936a30fb62eaba78e54a975d0a1d9d21ee4630e2e2d1a0a6859ba1f59e368a7d5f7008f9c3cc577904b10ee1 +DIST github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.2.0.zip 14342 BLAKE2B 25201c989340722c9d4be309f5789df07bd5c7d5cfca4a96bbc258289155a87e95b81dc43dd4ff447a6ec716c32b40401ae4a39bdf923c08265994cddabd3dc4 SHA512 6dc5e2969e06bab272895d8d5d4a4df71d3c9939121563660b764348c9d7885f2a5f69275ae676c56d10a9c59dd50da9e3ce7604b20ed689155a46e8d4a1bd13 DIST github.com%2Fipfs%2Fgo-fetcher%2F@v%2Fv1.5.0.mod 355 BLAKE2B 8035f5de16f83908fb3c57a92663a628a9c9160f6899565e708ec60f6742409a186b1ff078ec46594b8d40b370b24d1cbda2e08f49ece06a36f4d7f076d59c9e SHA512 f202daa189f8bd323f200cd27563ec3c049e9b6f2e6107cf42733d5b1f2b08da170c5e59401767aa5731fc48f091156385b41c62f85a58369fb2dda974fbc378 DIST github.com%2Fipfs%2Fgo-fetcher%2F@v%2Fv1.5.0.zip 41467 BLAKE2B d4671b96f1560e2c635c742db040e1d4609c393ff5c84237b166c494e1a3bfe6a41d033cbab5ff0d58145a15a57e6e2e581dbde354f80fc444195f774fde73e8 SHA512 eaae035e2b798eb7420e80450dc827aee2782a834c77b9b854147d644a9679213cce1309fbdff0cbf098e52b9627e96f98b92e8ebf35d8efda3c228f7ab55467 +DIST github.com%2Fipfs%2Fgo-fetcher%2F@v%2Fv1.6.1.mod 355 BLAKE2B 7c730cc8c513d469cff225df0fc296256f1ec83df4fc5a1fa71976c9782409950b61dfbcebb69cf1146f9383b3d4fb6403809634aea6995133a7ead4f3a60ef3 SHA512 70649f7e12fadfbabf9e4d2cab40489ba535f35242837d6d7e20ebc1585eb5e736252e5bd43ae6eb3195fc2186fe2e192beab7f5803b62e5ab5d9f4bdd18125a +DIST github.com%2Fipfs%2Fgo-fetcher%2F@v%2Fv1.6.1.zip 60908 BLAKE2B 162d8d84958ad3d12cb09921d7d1306008a9fe7fbb28021fae9c29b81791ef2819a7e901101186878822a5aeda42fc10976d6dd66862a80d93715247599475e4 SHA512 012e0a655a76edb32c7ab3e71f72f0f1120aa110d1391f7fa2dd266f52b4cc160181bdd33018c84dd12e91dd51d8aa0deb8be7cb3a3899400c0f33bf8e99cf45 DIST github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.0.3.mod 390 BLAKE2B 6a5eea505ca2e1721a8d01ba02eba35904ccb2234bcbb04e541d6e20d2db057fcefcf36f038585fc43a159fb9471fbd12421828ce83c5328e50d6e1f90c7534f SHA512 e561e3690ccfbb07244311796a3fa158bbcd5cf9ef72924fbd3c9ff08ea8589e91da725c3b1fee9b397c15e615a3ba74dd58ef0f536a66cc55cfc2d2e231ab6b DIST github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.0.3.zip 30181 BLAKE2B 0567c9ca5e1173ce978f8cb7814fda1bdb34cc7a1f2426329c107cb052755ee5cc23ea127124e163b2ecb551b83378b694178517580610cbfbfd93a091fec944 SHA512 b5ddfd4ad3ba31da1e9dd15bba715cd106ab8e6e91bfbde47ddf02c237fcca9f709fda9cd5202b86e2e01fe60654e72ff275a295f008e4aab3d149b033e42cdc -DIST github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.6.mod 168 BLAKE2B 0eaaa8bc2ad28b5676a7819b6b780c91d2c8ea720ce84a6f3d411c68777f99bc96c1347d58c49ff2e30ed3a03a307c1db6033732ed47934712c3fdd1960bc858 SHA512 c219a379ccf187bec63abe7ba7e0daab3991370c8ee9d2309667bc4e759b314684aa90b47c744c1db9a29f950cd95c2a8e04cc81be64104642d44335652d39b6 -DIST github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.6.zip 20467 BLAKE2B ad3afc06a873d5a2cbd5d51bfd2df7e207455945637735efcee8415fbd453dfa1f99ac9f53a5f7c1474c3873a9584b4505064232c2681c22c4800f25b3867282 SHA512 cc136ced0efc35bacf043c9c4d10400736c98674d7875f4f626ace80f11222760e3bef5970d4c7822c1001144ba7dc6cb73861829a47b072b23d0ef1c96aa1cb +DIST github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.1.0.mod 390 BLAKE2B b82b58daf847343164fdb78c0d2090692c6d664da6f972ec31a8597666a1774a08f429edf3ca74cf187fa5b0f613bf1bf5c05a48d40c9b65ba9fbdc8277cb879 SHA512 694577f6369e8dfd8c77e1236c12f86d8b925dc60bcc7164bcfa2aa970e84e12da701eded89b524b6959545275a4366a9f8a320bae7a33a2455f5de9aa2304fc +DIST github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.1.0.zip 61192 BLAKE2B ffb3856daa3729e89b85d46f7207c9524fb517a40f5c8b5223ec2d2f589d066886d4a56623efbe4e491f154360f88f135e475b9934bca8d1017fbf0789b946e8 SHA512 52ad54f1be67b16a9be81c2189975222e98810a3643d4f43c6883047f6556f7bb9b44464b7771747ef4fa8ecc6fa588204d2ea756ef4e4bfa19af6b3f4eb748b DIST github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.7.mod 224 BLAKE2B f25a3627aaf90124b39d327555dbe8bf89a80fd9df2bb1046f4e2999c34a7dce37e9aa19611060232f3d9f97851f3c68b92bfcd41cf092a40b3eae3e19f503bb SHA512 1ac8bb07ae99c56927e34f1d900b5a0934745bb42e2c1da4a8a40a64bab23a97d5bdcebc719497a97e3cb6ea8d98852bf92e08f5daa49c09a337dd08698d970d DIST github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.7.zip 22559 BLAKE2B 1e421f3fd853f343b1c1d9eae1a212a4fb615a50c21252c61780ce053074371cb00cc61c0ad8a28ac683c00548860499ea94a8a9bbb8a2147d5067767e6df750 SHA512 235c922800ae382e49cf20967ba6d9dfb84a150e9243977a3cbb65a5d0dd8a8a2f4aa2543fcf7c6b748cbff887c522162dbe9a4403997658664207f7fa003baf -DIST github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.6.0.mod 2091 BLAKE2B 693207f6e388572563e0d89d9cb85f511eacb863863e32553dc2eda36a24c6f05b72c561928f461a5a7a81fb4cb0a45c3b353ff823a453ec8f251c64ce766f57 SHA512 f2e8bebd6dfceabe03ff6fcf608142cc5354aaede3ac5452fc0c2035e8d9328bb7ac20d08ff62ff4aca0a380c7bd7becf66f0770dca391a949c681d7bcd9c2d5 -DIST github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.6.0.zip 721225 BLAKE2B 946d3ed38fbedcb19606da13974d7bdc6cacc0d810da8df3dd82fb5221c6346778629de95526536493a58989b1d9b621e288700e5c7824b50c2e5a63ae192742 SHA512 ce200b1166e447897456d1fac7023665edfc6bd76b396d58cb20a3b9c14eaab30555219241b2405c4b66ee34dcdb1fb3bdb7935a3d57108a2fe3e6b6bf8260de +DIST github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.11.0.mod 1663 BLAKE2B a39d667e8368932500d61a3667b3bb415b40807b0081827e9332c43d60d53240c2a303184112db405083c66fc2ab597145cfa3be6ad61cfd28a4fb3fb4fbf1d3 SHA512 5823c6081d06aae869155eb73cab94c397bf14be8f59708f768fd1dd6ca51282ca65d3070bee40e545b240c5758a784134aa72904d6d7d802872c51fed26b3d9 +DIST github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.11.0.zip 736303 BLAKE2B e9e26d71ce0e22da8283b79fd59a651e1d70c9b7062874af3bfd3f5ff76e777ece8063d193238f6ffda5fa4b99f38e09407c2e767d75255ff89366e70a75afe6 SHA512 96acae6dbcaa43cc0dca87a82e48593672a89ca51820efadc2cec7769f90b92aa8256b170da63311e55b29de101c4bb8f15bd41187adfae781891c132e74662c DIST github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.8.0.mod 2062 BLAKE2B 7643a6ff2d2465f27474c494646f4f5337bd357d463bf4084d2048ec2e46a471ee7a78bf8d7c5659fef4d7af9ab1f260263ba87af512cfacbcbcb1addad6e612 SHA512 4e5c4fa656f75370a382335de7ef2408301e1579373f2551a3a6b942f179719c939004712bf3cb79b4cfeb753d3b9528580319b6c6ca75e55cd4419daaaf3d3d DIST github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.8.0.zip 685696 BLAKE2B 19d2a20c47cfffab54e0298e7a5d9e76f48b13a13ff727a8413c018146ee9f8ce8b21011495ea6028d0f5dd9604d6a91688239b82c09124a9cefb573362c6403 SHA512 80bf5a9a19ea15117fd9a2505e0911d70de6bf614e3bdc8c5e5482956a641a29839d8505fb5e98f20d7c675e04887ed9e75fd6f7c25e2bed927dc5aa6a6e3007 DIST github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.0.1.mod 432 BLAKE2B d4793309f3c0b98332cefde219d6845a6804a9a307e4fc9df6620f13e9033438097885c638aa4a1fde5f70e899bd58e558f6a4191ee5a898db69d0c73b28e0e7 SHA512 88bd6d1c1ff00d4c314398dfc7b29809572578679c227d09f96b7e402fb7e1c3d87e490997a7b3d6aae6453a158a9420cdad875b5f12559b73440b9953c0f339 DIST github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.0.mod 432 BLAKE2B 39574ead189f7cd4b401d62ea5c3e8ff35fe94d3edff32be4250ae0d20d9bab382f2b6695b39b31143d8dcebe8a2c54a4169b92cacb6289d4b7e50439f89bbee SHA512 e4b01a9528fadf8e69326874088d39ab4892a47a7b53de0ee450d6fd8167f7a2afb5b8cf11b17d5882500b662ac879b43260dce850ec7c7e14862b6fddb81bdb DIST github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.4.mod 442 BLAKE2B 3f28a0f19bc98e52abccf9c3daab5d93377aeec893fd420a0533ecfaa3bee44b4ec6acd425d462e223c084b2254d55f139fbee37a111e415203fb85e62d55d59 SHA512 2f3570b54f2490715506b8c01071413548f4ab9208c4c237b2e8175df6189396ddd5297b0884d663c60745c0ac30bc77163abf58a2b130b2f854b8c1af0d8870 -DIST github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.4.zip 22095 BLAKE2B 2c13bdeca09667dbd550c838fe773caca65ba9f6edd3ebbae2238687853ce90d57cc58b5cf23c48a25d47649468a3feaf1f678b6d11fba4b1df62a0b2ba95c90 SHA512 b64c0e8d6154e8ca92130b500358ab0fa03845e434ef44068095334208b0fd08455c698bd4409354a84a908698bcf301cc4f95ff9ee7d85f63678329977b6a21 DIST github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.6.mod 442 BLAKE2B 3f28a0f19bc98e52abccf9c3daab5d93377aeec893fd420a0533ecfaa3bee44b4ec6acd425d462e223c084b2254d55f139fbee37a111e415203fb85e62d55d59 SHA512 2f3570b54f2490715506b8c01071413548f4ab9208c4c237b2e8175df6189396ddd5297b0884d663c60745c0ac30bc77163abf58a2b130b2f854b8c1af0d8870 DIST github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.6.zip 22102 BLAKE2B 9094953451e2bbf6ebd48b16914d2199c8116a2ffe05377d44dc2dc36b93c44e849ae6a35a4c88d0813da628152e2e91dd5b76d7bbfa75c492ec39d54b4160e4 SHA512 1918965e9d90086cbf87410cc6ca3c62e4bd60a738778dc9617647b52302eeca48efb95d0a10007bd660518c90fce8213961d43b3cf9c7566904fde62f8e7cde +DIST github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.2.1.mod 442 BLAKE2B ba5ee09f4b2e9c84722612df951ee5200b7d996c723b9a109ce0674dc76e3c4b4d8fe71dfb4019535ec1702f49497954e3b0ac4768560d9f86fbd1268b69a14e SHA512 559a721088968ec93b1bd0c9f64054f7f0dd5fe8aafc53c2a4e985a3a68927942669f024c6e4a067cf4963cb96dc69ffeabba80193e2c31b8342af258a696248 +DIST github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.2.1.zip 23214 BLAKE2B 81a26ea48117bbaf91361053aece96b3e3593589ed14022c6a7aad27c348247e77d40d5169efbbb6fdeac944ab8edb4a0216ddc80331779df5fea16eb73bd53c SHA512 62c2cf4f2aa1c45d31b46b2ed3316358c964eadb1be3f2c9b41c0b25147f723480796569671cc59bbe0901559d5f526946319d1baebbd1ed7f5e49a9434f9d32 DIST github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.mod 90 BLAKE2B 5f055caed5fd1babdfef6839e17ac53ef29a39369f6ad7910889d62f7476d0465e0ffde9a8e24d1921622c5fd4e84120f6ff0cd7cf3ae4e61ea5a46fe474051e SHA512 e147cec13fdc70ae540336090c0dc95fa3cfc7c88ba2feb0007dd1e8e525e152f5f3e5109c9db3dbc27fe86ae72a9243ea7e7052ac26f52be5a6410e53cc982b DIST github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.zip 5917 BLAKE2B 73937eceb9957c17f064283f83df274a1f6ce7ba37580c48dde78583cceb9e873acf671be54f6a959c5faac35026b06abb3819d4ab7f7a17e34cb4c5b184a106 SHA512 b14c306cab0a71aea1dd87d7c47378ad6aeafd4e34f277bc596681c8bccd168f0d08d5920cbf3d579e00f85ec4d38360dac806e6aaf4dc9c11356c8a6e5f4a1c DIST github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.mod 270 BLAKE2B b2263f6189b6b56f91f0270badd26ad9ef8aea225bb5d0312cfdd3a5e9d07da898d6a1ae54dcb31d92cff61bbf8cd67aa3abc525ba8f94ac3b616a2abbb62379 SHA512 c497b564de8aa700f3b81dcc4c5682d4d1aca8cb95b631ede4f82699b6fe52566f7f4a243cfa16b38c7a33ffc5f6e8b0d92d241a5352bba16b0434b231ba2d35 @@ -507,12 +508,10 @@ DIST github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.mod 279 BLAKE2B 20cfe5b54 DIST github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.zip 16229 BLAKE2B 051b176e1c529f04f8ce0cc95c80975faeb1d0d9036e7a5d3202b1f7c962356f3cd4fd59d3910dd547c70275d3f1bc15ccbc6c5ef379d55597f201ecabbf1009 SHA512 684943b9eee65044548b11b2f6306fbf9a18b9dd1ce5c4b1e0a04b481a602b6949d69ad0afd280e4c94fa06a527133889d84adf514794bfd671aea431869045a DIST github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.6.0.mod 327 BLAKE2B 523b6212785ef7414f1555bd2c9483a0c3aa078d91e5719c49aa218d918d6b815e482fdd43bf3123969353ed4590fd830f58322d090d1f8d589cc73c5399aa50 SHA512 af0986d6981df212e7892f1b30ece2358c2d111bedfc9db3f6893509de935ebb0a34d6f491818d26428641e966fd63b7df48e6c63361010b06fce7574d2ec5e7 DIST github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.6.0.zip 97737 BLAKE2B c098accc82b463c8bbe7e945392a2eb3490104b771acdaca44579a285a4c205e951bcae6a235f489d3baeb04d7f1d8d1d55be0082fdc698e251b6994e92fffea SHA512 d59f94b531aeaf15179c362cfddfe797a0f9d6053253843b38f58734d77c1c0d857ba97d860d9ec3821a91a3b144e19e658413a6e53e141a2b01db3067e8cfaf -DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.12.0.mod 302 BLAKE2B 3552c21f879a0ca367f16de6b6182471beffafef28835afe586a05eb25085e0d90d6959ddd7536668e732bbcaaf5251fc52dbcbd21bf0775f6e95c93154e8636 SHA512 d0c8b090f621c8326b53b6d008226544e512e12a782ad8a6ec274d77728e173a5f427d19eee3673f2c33d0db54f925df2c173943d67063e1761f9f165fd5b986 -DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.12.0.zip 48447 BLAKE2B 1fdd1b46a63e0cf57c0417529294f2c34eaba46e83fcf009f4b25858c26aa65725885baba189a9da31f78c862ce391a1c0a333b514bb3b1d11ae4f765fea1f6d SHA512 e7dbfcf0dac7a8aa244735908174f73ee7449bc19f2ad8b29b176aa75ad979bc4e5aa6b95a14003fef26a61a0b961c7807463a4aebaae9cd801e6b8568d042a4 -DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.14.0.mod 302 BLAKE2B 3552c21f879a0ca367f16de6b6182471beffafef28835afe586a05eb25085e0d90d6959ddd7536668e732bbcaaf5251fc52dbcbd21bf0775f6e95c93154e8636 SHA512 d0c8b090f621c8326b53b6d008226544e512e12a782ad8a6ec274d77728e173a5f427d19eee3673f2c33d0db54f925df2c173943d67063e1761f9f165fd5b986 -DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.14.0.zip 49222 BLAKE2B 8cc2eeebee3ae9ec57a271f0aaeebfdbb8fb9c9e95cbc4a88dd17571c22035640a243390252c65c299bc3eb30844262c25d33d7609fbe84c206445aaf23daab8 SHA512 c42aa83ad915069129c9c8a8c76c49e7abd8f0ab29cf0d24116be0dca088f230d5c002f940e9a971ae719fd2d7696a4dc5074f639df600da613546fc53873d47 DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.16.0.mod 302 BLAKE2B 84db65e4beec34dda416aadca5da69fdf97ea5ce4d43faec91ca491a5249488212e648c6cd93f5f727dee5fc3b9df7fb63faf0adf550fd0e60d92c116bea4c26 SHA512 3bad3e70eb7b3f40d4fbd6fd1d2e811f088ca0da7e179dec500a513aef9ddca1e49fa637a358234e4334eb46c9d8055be21f4d5bf6c70e2117973b59fa5f96fa DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.16.0.zip 52024 BLAKE2B f8dd50cecf4b7a602cadd68f9a3b1a16b78539fdb3834bed54ae73143e40077be0aa89bf58b1099b37512d5fdae3fd42c3b51980453790f75e2d3162a6ad0323 SHA512 7ec739cd7a039aabfbb2e99e3ff1e5c121ff8ae01fcbb59712de037b2931c0430236588a650abb5b9ae6a82ef62e99647eebc8f5c664ca233719a487456a7d32 +DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.18.0.mod 302 BLAKE2B 84db65e4beec34dda416aadca5da69fdf97ea5ce4d43faec91ca491a5249488212e648c6cd93f5f727dee5fc3b9df7fb63faf0adf550fd0e60d92c116bea4c26 SHA512 3bad3e70eb7b3f40d4fbd6fd1d2e811f088ca0da7e179dec500a513aef9ddca1e49fa637a358234e4334eb46c9d8055be21f4d5bf6c70e2117973b59fa5f96fa +DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.18.0.zip 55712 BLAKE2B 63f376e53f7049f460b9ffc6108d2d906fbcc091c860f8f9971ca19a58d2f0404118a05e80e82239b5b4b7977a024234008a55963f6ce0c78d88823aef634782 SHA512 487f82722099a71829ec285733a9e23466b89baa5c55b61478cdc984128b97ca954148124ea0b20e4a6f30b4155fdc94c230cc6dc2113124ea61579e23fbca41 DIST github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.0-20181109222059-70721b86a9a8.mod 37 BLAKE2B 5e6f830a59cb1b8b107c22fa33973fbca971cbc4b4847a00a893008ee64da10eb7c854af9e3b51d28fac8e5cb231906f415564326611018d931c6eeb00d9efe6 SHA512 0b0f78bfc8db354d3465f743a69c542d91bf202389e3698430afed9bda7d8e2f179dff3cf69044b93e7358b22579883dd56e31aef3458d5a69eb30c62283405c DIST github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.mod 37 BLAKE2B 5e6f830a59cb1b8b107c22fa33973fbca971cbc4b4847a00a893008ee64da10eb7c854af9e3b51d28fac8e5cb231906f415564326611018d931c6eeb00d9efe6 SHA512 0b0f78bfc8db354d3465f743a69c542d91bf202389e3698430afed9bda7d8e2f179dff3cf69044b93e7358b22579883dd56e31aef3458d5a69eb30c62283405c DIST github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.zip 5966 BLAKE2B 416c61a135d2a086380091776d952e13a5519d65cec048905ae9257eb3ce5a4dadd15b72380f013e42cbe45c7440564436218a5a9a83b17cf4f5fa2c403c07bc SHA512 a87773dec15998836ed762db218bd39fe1fa0647da470e6eeca0be7b6454e8659844e37ae32efd33ba24cc2e5a5101fa633d42c5f3f5ab9dc68a544c215e4449 @@ -521,31 +520,37 @@ DIST github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.1.1.mod 162 BLAKE2B 89ea2e362 DIST github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.1.1.zip 7136 BLAKE2B a9a7dd3cc3b8aefb61709ca8c9e44bc94cf70ca314146a30e4cc021f0754e94ce65670508fce60af34bcdeb6bfe237f1b9436edb61bf2b36a3253fc2290f06d6 SHA512 4d265ae931401e0b285d9a54b093a202ba9386c78de3f0d71731d23d527d625e38a4bbe47b18fe77fb9e423f05f5767d5450959833dcc4010f683451c9480963 DIST github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.mod 134 BLAKE2B ed35da45f5a552d26fd9a78119d538994f0e563f56d83aae6eeec2076aa503bd003e677b33971e64d7dc5e2f190470e33760c068870b7ee6d4952f4a261cb6e7 SHA512 c742dd6a6f077f39f44057b708133c12819acc6968cd8c555a4ade18417f4f525329cbee8bfac1dc6cb8f8fb5ddb6fa52ca2a208d47ddc9aee48ef309f1c4a72 DIST github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.zip 5712 BLAKE2B 27aed07bea15c49d5f7a0ecccfa92156d350a1d9776dcd819502f43dca54cf42a005488a37ebd13ba274b15fe9fb153a02536d8b83d17a2a4f88f946bb2baa0f SHA512 df6aebd00b29e6748d58ee8650ea98283fc34f774ec44d57d3e4125b8692b4b9a2104754fd9753c8034bdea52d9a7b7bb354a72432874de82b873e03981c2fea +DIST github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.1.0.mod 143 BLAKE2B dc0cb341890ab8bc921e528dc02aad6f949c6a9a544d942fa980330c703e4393110666053b0b04bb6b3035dc61066e6eae64c30d5f113fe590df25295e890b3c SHA512 aa92d984563f223d7525c7f38e018acd6625e409772baa7c24e521f346e4b6e88dde48a0225fe53ddad7f511968fb90c1224e0550f09b13bc527464cf4520e36 +DIST github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.1.0.zip 12916 BLAKE2B d7297269de0c6b8e10e4124042e4d2708c452ddef693680d790803b2773eede89bce5b3f81b006c5c89d1f222a7022e53b2c9866a4bc34f93dc72b78c03560aa SHA512 6986a7b0a79238ae00d24774909674d95f3a27dfbda75db9c02525c9979f55d8f18bbae7d38f86c886f8581de90f6b455b2d99365eb3fa744971da838cdb621c DIST github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.mod 343 BLAKE2B 5098bf5d71fc4d31b14754371498cbc8cfa50a8e7333199e01f30f9824462e12150ade8f856738e32f4d11f187b2a719d8f4f391fde7c9894720563fb407f4b1 SHA512 861ded55a2d9e834e1fa6c849ed2079780cdc4ac545cd7069f81bf2d5156ac3740a2cc66bcf6edcce1e6dd4fe40ba525897190406134e9434c64ff5d6c0e0902 DIST github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.zip 9631 BLAKE2B fe65e528b58b2b5655f414b3e83c6c872ff3976dc33f61ac0744abc46f77e4cbabf46026fba71e6cda9a2cec756d1f44e9553d8efe8bf019a42f33303eaca7e4 SHA512 2f78c0c3d5f515b0d7c4642f2672c8aca9b12237db05b212b6d6c871281dcf9dee5a7cf7ac84d0f05c90577f8a83606ad96401d6f034f0c510647bf457e8bd21 +DIST github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.1.1.mod 352 BLAKE2B 610136f1463638556f3dea002abd9d64072699a48ea1d9fa1f4a3f9153523fe6a009f3102d4f64988609dfd4c2d50945d74777e8f5e0ecb5690189091597fc32 SHA512 89996c6e32ad9c57b17c469b9815f1cafaeb138fbadf7f5f6f5329dd553b219a7caf6153bb51a5b4c0ef4deae3ae510a1719aa4b7ec46ebd8c1bf36e5e6e054c +DIST github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.1.1.zip 17988 BLAKE2B 169b8afe6046a245ef1dad5c1367e319d9fa3d326ab25dcbaeb0b43c74512e36c12c05953f9d57554c52d24694ff282b05a2329591577a5f314f5d0a93e2089a SHA512 80614e126f4e92ca66c07f914c31ee65506188839d7e7dfb393d0337f4f129ff23ba8fe7c6f8d42a8a8374590d6a442ec69d03112b3fbf0280a68ea57ce99684 DIST github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.3.mod 98 BLAKE2B c7ed8445dc0dbd0a10314437192631a667e2166c7a7a5edc4d23fa9773a0c20614f5ff0a0a6cca0cacd6afa57a34e22a04ffcb1cf54fcca59d7a35f405b80c1e SHA512 755648ba658690c6d81072d3dc9618d74b209b25c8e40a2ba7bf61e04dbc12c15028500a69ec399fc74ff605708a2b813197447ed13e3e6cf6eb34298bd57312 DIST github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.8.mod 182 BLAKE2B f71239caed5d433dba9765f1f446651648702dcfa03007737aed6ba01e62829ef1b42f4760f3270b7502a73a751b2c987d38af94a7ca179b06728db335ae9452 SHA512 f9991a1817f31167c9b19a82551918c7124232e520e4c4c9c692d7c4c3ea9e3a7122afca0681d15eeeb6479d76275d226c795627cc8c0b08365c2e2c5804cce9 DIST github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.8.zip 24395 BLAKE2B bdfa4b8e3832721564e8b674759fe129ebf381a709b370501f6570c14d962a406c8ee4ed315ac09e5aec8ac2830e5906b513f40940df7bd91384706e78938b8b SHA512 43c182e3e5e1391b49480402aeb59da141a1f06dfee158b0c520762a4e4650bcdc3703e8eaff8868ac86d3a0ecd9563e9a67d13bd149d85efa3d142301def978 +DIST github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.9.mod 230 BLAKE2B dd88d6319f4216bbfd6c938f3947f3a68f4347faf4ca458f3d6e7c835db515018d1d0c5ce85d6f71f47bd3072418156df1bc16f9dad081427ca50ebfe9cfb69c SHA512 0ecdf86f5dd6b0292e1a6c69148725fac509f89c23b047f40fea1f94815244a8178fdd7285b3caca90f075535d9f34d422a154a362bb40331668a7704cf8fbf0 +DIST github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.9.zip 30633 BLAKE2B c7d53740ece7cdf200b7b9ef61f9108aa2f86f741f78649438edf978cc73fe13cc10d7d399d83b2b99792e0cdca23d0be3c42739b2f8c5906fe25623b81e75a6 SHA512 82cdf738cddd1b6f9aadb4c5b64a3f379cdd7fc43a8c3138214aa96b6f36f40346c54531248165a51c6d2dd694b6f2bd6dab28b5def409fc82ceba9960f1eeb5 DIST github.com%2Fipfs%2Fgo-ipfs-keystore%2F@v%2Fv0.0.2.mod 134 BLAKE2B 42f94d32226b6203a77b237b6256139788b1bc5e30dd1955c1b98b4a93d8ec13ecebc7f5641234fcbf9068393fb9ad07fbb619e5fbe0a47948e22fa2f1bb60b7 SHA512 4d5d9d00f53dbbe5978e16847a82b3597351e2226e2c43dbaadfc4244016fc4de99461d2559990dcd6e3000c23c40f28613e5e1cd329f5d2f95d24b2cd68795b DIST github.com%2Fipfs%2Fgo-ipfs-keystore%2F@v%2Fv0.0.2.zip 15711 BLAKE2B b99a2e772fb25847f37bbc1b6f4c9e1ffab31f00b5cda17bf3b4f42ddd827423f5a2ad0cf49a15357825bedf07acf4f8401d809b95c0002df931a4d75d0ba258 SHA512 7dd4492cfd3b4cd52a1859fefa9843c6b81762be0c1639eddfe754f2e3d1e947711913a74285085a50c7ffa6c709c3d724595bac5da95279d1a59e83f20d2581 -DIST github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.1.1.mod 582 BLAKE2B d1b8596c3487a2849822e3fba3a858ce00e28f8501144d898598361fe9bfb206a5cb56067f20f433e0e6db2625368fcc82623f232c001ab5c8ed8b46cbbdc209 SHA512 39e770ee171a70ca8d8b3c43b98ad31e03e5720202bd0471d648d4733e9ad94fe441c28e1844e2caa9781a38ab0a4d74cae2e180b89f8be4cc82eff5c20dff24 -DIST github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.1.1.zip 57526 BLAKE2B 4cf32bafd8196e8c1bbff8e5b062691f114652a93b5403ffebd8b8f3c5728f6a3543b33f6efcd3c9a567919c285f1d684e571bb9dab5f41118e468cd4023aaff SHA512 922d96fff8cd5820668aaa6213513719436aff26962fc68c332528215790e0f63e2890845344ac0f9e14f7d3cd0a479de3c300dd7a6d9c6284b074e182a85214 DIST github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.1.2.mod 586 BLAKE2B afc60d422072243e96154b058ef2788a27c1a432b4127b9c8440fab4dde2effbc5916ade2ab3c03c791d712c524c0d70b7487ea20b470c936615717d282eb799 SHA512 651c38fd1fa7f33a74c83debf23b9a25793a259541940a48618045c2adc00e1d6b4c51c91116eb7a6998cda5c6f006aa80194e09511c828ac0ae98d7eb689a39 DIST github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.1.2.zip 45407 BLAKE2B 115b3558f1feab12dce25d56173ac2f60bf35639384ea669e4aaf538a79b544cdf0a4a7c0393ff267e0fbc53a65f70cbe2354224be954032420ed3d638417ffa SHA512 6035c0ad513fd180e6405d1b975af44ec474a1362f85058717b07a43f49c20b3addf3897e44e1c00ff72cee4751a067e98083a9d6ea9c74ef97031d777094452 +DIST github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.2.1.mod 586 BLAKE2B 17aad530d91b03a81bf4b4e2c93f3e0647ce3d44982689167e6544a6987d0636f96ff18f0707aa425b192800f2d9698597b0532b97bc3933f83765269bbef81e SHA512 ec234e61d24d1733f02bac4cb57a46903d20207949d57865057b3ec84d0b5f81c9fdc615f9bc96db078d5753d7c6c26e5c83946a6c14a940544aba3106114711 +DIST github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.2.1.zip 74164 BLAKE2B 7f0ad43434bd0380eacc10e50141f551aac0122c67298dabe2e34424248cfcfce92013a94b3f2d1b54b7370b193bd0da58a0eb7482f14fa56478128c44ecdeab SHA512 1cce7ce120187e724e144643affaf3eb389468441d02111f94732680e563788f96f4cf7dbad5c59006241e035a947637879e465a73f1629033be24514094a592 DIST github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.mod 86 BLAKE2B 9806289d763999310b956c32fc0de0230af6d8262954cdd73a95b968c14ff7f8a92d3ab85843e76c01067332f397b6e51aa74334da3b556130dc785557ad6293 SHA512 fb0c0728ad8b85fb792ec273cf755e51fb15a627dcc5b72b39a269f4eb38db15a9628eb657232521b938d7b5f828864c9648f37ae72097bb6a5dbb59e854905c DIST github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.zip 5781 BLAKE2B 8eb3b54bddf7fc46e17f98ffebc872ab975fccf957fa22067bad84216fbb85fe57c31671beb798cd4961d660025615855ad1db526072f7526441a64ef87c5f2b SHA512 4e78824929129dfaee5f932c78fe98d72a2a277a086208f29d0f89fee95aa26eb3c354768a13554c8a881883b1dd033caae4f1a24b7a4dd5b98344cc89b2df43 DIST github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.1.mod 34 BLAKE2B a3b343eb6f5d1499c5055ec7204f02ba554d1586b376c555139ab874dff5ad247e1a7fc10e072f2f7a1a380a805dfa290c29bfffa6990442d713684085772b33 SHA512 ad89df311efbae22070ac05114f307a3dffc2d1570bfbdf27548e2de84acc30fea4e5a0568fcbe2ca099642959abc09be15af4514b1cb3752b631069d4330ea8 DIST github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.mod 34 BLAKE2B a3b343eb6f5d1499c5055ec7204f02ba554d1586b376c555139ab874dff5ad247e1a7fc10e072f2f7a1a380a805dfa290c29bfffa6990442d713684085772b33 SHA512 ad89df311efbae22070ac05114f307a3dffc2d1570bfbdf27548e2de84acc30fea4e5a0568fcbe2ca099642959abc09be15af4514b1cb3752b631069d4330ea8 DIST github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.zip 5628 BLAKE2B 733004ff4341c8ad5390ec00d314c293b7c67f7ece6b7a75e6df15e860b184dfd4e1305e3884a5c17cd4f017442d53682070f1f0881700f82070ec594b866ebc SHA512 f79347e910c7c7305b7a758b6da2eda270a3c9111b0807e9617bbba13527f084659e1ff344cd2d43db4770d86f08f936cb5b12042437759af17be9c28c26dcc6 -DIST github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.4.3.mod 739 BLAKE2B be2c0202452ef662d84d3577aaa109e07f37e184e157e04edcb91b04faf10fdf6ffea069b3ecb490c915a78aa9d918279204158765513dc905d4a4ee5c6d82fb SHA512 1c648b9bd3bf1d9acd9b30d7fa235f050580454622140340dd038db38bad5ae82cf2d9b615658b1ae5d11bedfb64ce6a62b40c5ad199a2792b8a06c032c16db0 -DIST github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.4.3.zip 33387 BLAKE2B 7a872c4816ec491796f17faafb69c501d32efcb3f85b5f1f9e063af76c392e4bcafd373ddf9053692d977aae96603ab27aca01395e28aca3c1ef203c31c2994d SHA512 646b2c0b2e86cf56e58ddd70c61007381e2a82a365475cd140c531e7be06558437f4644fe45dda700c6cdc530b8a4baeb7986ccaf1b8ff494d1f9aec3abac429 -DIST github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.5.1.mod 766 BLAKE2B 9e9a82a824098925de65729041615f535d44930e86e1e4ad80c6305a4be1fd1e34d2048b413f969c7c5dc84912578b06e9141fdda7ddddfc351675407dcf0775 SHA512 96f9dbc62d12531ad9e843de01dd03fe5b1d5031b6d03e113f96f6ef7800a23bacb41efaab85bf47498bbee98e54e89edcbeea34dfb5ae4616922de858e80313 -DIST github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.5.1.zip 38078 BLAKE2B d2bf3c3213d7e844da4779b330d067b9697a96d8fa8e64fd8ef3e782a0f8716f9c045b55ccb84603e7a6b79dfaa113be157d54bbca75f819ef3da277bd5d1958 SHA512 1f279773397c453902b4a79a06cbe4d9f7c13501a0ffc3d8acb7303c1fcc6e84d697210005795984b38589176017c0d06a5054b375b16fbab3f49b0551fc84a7 DIST github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.6.1.mod 767 BLAKE2B fb0987f784c224f1dc0d4d373307e81f9e4c788d231634490f309d8d426533040dcef8e2729f43221fb524b4828a272564bc672489fa05b576461e484744aad3 SHA512 25ecab68824ac74688f12827a43cb747b5af72c2c72e9bd0370ee7090089afc9f184f2234cb84ef65c32982d5eb43918624085399bcd7c3eadc4713c692d27b1 DIST github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.6.1.zip 48631 BLAKE2B c83366a5bff19e539972c6f66575184ac4acf7eb463c24b1d916946f5ec89121d120f17f3301bf8b0c5b47a7c213a5c8396fc5a3507a9c9dd86a851490424825 SHA512 7c8462513ca2e56636eaf70dc7f4ceca9a89d391dfdfb6a257c2ee1b0337c92b76b041fedd59bea855ae1c7f0ceace58c7934f0ba655a85ab9a4e840ebfafeb8 +DIST github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.7.1.mod 767 BLAKE2B ffc93438d184aa278ae5c443abc62934129f6f6c5b6fc70f119025ad5fbe84b2f95492607b03fe64693c82558fb4aceb538574726a68fabb1bda70305d0300a6 SHA512 3eeea20dcf06de2fe1d1bae1c1f94ebc71b2983703da29bf342e4feb238efadb47edfaa897bea57b7fe2a923401c552c69ae8c9ac2f8347e6a0a81b63e02eaee +DIST github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.7.1.zip 67094 BLAKE2B 0566b572db04af67570c0db6032c766f2cd8d5e5400cb4020d59011cccbf7f3d8a80469ee94fef79bced90c5401afe55fa44d88c5415a732bf25a94212c354b4 SHA512 a9ba3dfa12ebea5e4dd5dd287be649aff67fd29dba4735c526f5079138eb894202367a5b470edd7eda2c73b2015701cfb462d15f518cdd597be0959c575f3a6d DIST github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.0.1.mod 642 BLAKE2B 3a1b4fcc17a0f2a4424c1f993a3f0b83f1ea35cc75cf3c3b094be0b7dd84540458096bd4f475abd0c1eae79fca88f90d80869f10cf858bc0ab8e93dc031fc13b SHA512 a7544d8684e12cd30f30b379693904d0a52e517ff6e0719de859b993d6c55a9ffbb3122c1bfc1b81dc8f9d29a8672c447cadb095b7d1db91381de1b4904df4ba DIST github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.1.0.mod 517 BLAKE2B 5beb7e711008fc1c026ee95b18b191716c04ed7fb5e0e2fa46926e98bad5474fefd59111b8b5e18f04b3036d857a16e45b517ad18636561fb5fc37c690f74650 SHA512 94bc87529b47d9d0045d7d9f35397357b65050d986ecbe482324b4dfe84c451bed1923f8e827b1deaa8eb62d4940cd56bbd5545084f950a274a60c91d3dcb48d DIST github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.1.0.zip 17039 BLAKE2B c6b57da51d866d2792d92e06fa5e42db66ddc358973b069978c952bd84b470f3270a7d575b5b8c7be84057f244099bd38f418a135f80684eb544db61ce62e709 SHA512 7e1deaa5f86a9bc4ae612be38c84d3179a322edc0cad0111fece6a862cc15fdcd5f543403449c82ffc342dc81d84917b8fa388745fa4d38e0383131ce95acd70 +DIST github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.2.1.mod 527 BLAKE2B 4cf4e0d3903a591d7a668927c916b439e6c8a05660b48d1b58d4f3d5cf99eb7b1f1a8ea640270456d2d765b2d8cae26589461b5bc6603e47b2016c170ca75090 SHA512 7eae79e69757748ead635b26221b5bcffa3a9ae3e59ef14a8962302619940bf477a9fac70a5e63800b1d07fbac338baad469cc70cdf3d449a06a63138354eb5a +DIST github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.2.1.zip 25406 BLAKE2B 3d5296d9c22535a124929214220a3599e950d54870aa7182ddbe9b779c74971c019079d86070d8a36af7bcb16e9e5b226bf0aa3d62a7219e03249f4a59f0ffac SHA512 4462914669dc809fc3481fe9d017123ac46ab3412613e7295f9a7567960c5fb6711f2adefabfa1151e1c11ac5b6a94db1dc89e7dd076922efda2773ce2211f6a DIST github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.1.mod 128 BLAKE2B dc1417a0498bda006324c05edc8da5650010b255aafefbd062f14ebb712b02433454c4372c7ffbd5d7aa4e5cdf79907b1f2d0e5622d3a9bb1940858edb7fd80e SHA512 45f56f0c666348316ef9d80cadf2e85065224e67ceef9c2ac0bfecf88e256ebfd2a0e7bed6d155802e0db268c55c818bc3ce57dba5c17fa52811fc365186113b DIST github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.2.mod 138 BLAKE2B 4e32fe4aebb29d1a42e44ee55dde29798c0e90020a31ef6bcf81a173cd30461e68118d1e2e576cb9de2ea0934bb1b1796cc066c977ec9f9b6a3aa683a92419b9 SHA512 e4b99f1740db2caaff415ba11c8bf991bfaf32aa22e85ea53c3d96dcf606ec420b1a7e1713d2b2cb0ea7e7da17cabbd8291b1619c960e9567d66b33f369fc0ff DIST github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.2.zip 11252 BLAKE2B 7d8faaf604c42a3e5a74ac641d45eed68597695bb32ae1d9a6f00d817b1a4c291af102dcb03865501b68df5597dca45e75bfe0927a22f95fbafddeddf239f2b3 SHA512 5db8e6f8cb7558e75bf123fbb83deaae3065d7a1d649cba028dbcea646dde39e1f3cf878ab0c59627694d6da92298aee39c28344219b500742b8ca1531ce74cc @@ -558,36 +563,25 @@ DIST github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.1.mod 167 BLAKE2B 1c6c2f5bfa DIST github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.2.mod 167 BLAKE2B 278160452736e8ebbbf073b2fed2c57ea901dc8c8e2aa396b7da484f55835939f2eb3a7ddbbd8e8a67c4b0dffeaf54e16ca7b4e0d03fed20a026b39d90562aa1 SHA512 9e0bafec31d2ba017e80757dec5b47d2276c4293d8338cb2d036eec74ea29b0a515901f64371578d75572491e8f8a130129c824dbcc1accdf87b23412b305713 DIST github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.mod 229 BLAKE2B 45aa5fcc8b2b6b91ea6a06803eb048fd6d5e482c784d336b508798b5c66b723c9acb6f28cf14179f05ee49910617c58907fe10d9d59e03a17f07d293530da88c SHA512 0352bbee0003337ce1ae7d4bb156a5a1c47b00a174f5fa1e407ca1c843b8f32f2b5a830fc2386e8181f60e2dea1ca9367a0188bac2cabc75b821dfabfc1fadac DIST github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.zip 23855 BLAKE2B 2c481dc1af7b46089215c5c208da169cc3495a37b91aba10ab14fd83acc3afbbff47763f680a2492a0cf9d72ef59dea6a7d070b33e799c3638148f3599a640c1 SHA512 4f90a052733dd322d223e89b2be8da97115a563743699c60913f8e00ae94612591603401bc7504e577d6a3afe4f38d314cfc92f21852a412c9af118a4458a09b -DIST github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.3.mod 203 BLAKE2B 3f4f9b59bf86aca3e751e9bdd1d123ebec3abd1dcf2bfc9ccace7a9e0ad30b7ade5b6872ea618d345427ee6f8737b4416a96afeac28e1d7bd9598ab56e2ffd8a SHA512 51f3d8ea1842667eab03e4ce7d5f7a9bf0bb293d5828c799f1a3a59a06141cddcd017373f5642401b148493163ac83d165f157aeb3cffbb4cb1347e5ba5fb59c -DIST github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.3.zip 29976 BLAKE2B 6c3104ce3e87e7f0cd9941bed53db154ed1af022e5f75b5978923dc7aa42014e3396c024a8b93cd74491cbfc02b97ee0e49463420b4bc11df1dca1018aaed2ef SHA512 84ffd8de70248e9dceeb4c760782432763b836e6ded750c71876e80db638cefd6a9e9ea9cae1e568af7b2aed32870608e799274a3ab221adf13b72af8673567a -DIST github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.4.mod 203 BLAKE2B 3f4f9b59bf86aca3e751e9bdd1d123ebec3abd1dcf2bfc9ccace7a9e0ad30b7ade5b6872ea618d345427ee6f8737b4416a96afeac28e1d7bd9598ab56e2ffd8a SHA512 51f3d8ea1842667eab03e4ce7d5f7a9bf0bb293d5828c799f1a3a59a06141cddcd017373f5642401b148493163ac83d165f157aeb3cffbb4cb1347e5ba5fb59c -DIST github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.4.zip 33260 BLAKE2B c0288df8c9324a5bb36bbeff70894821d594678946ff6505a9e54e11debef142084ded1c2bb9646bb8817ccd013ceff34493ef79037dcc2afcaba31e7e3eda20 SHA512 6cf74b11c6fa5386046f9fea806e3bfa1e1dc1f62096dc3bee3d30b8d716ccb50d4858ff49c59da83e09d50759e133f2dbcdca05ec13146766d5718a57c88ec3 DIST github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.1.1.mod 213 BLAKE2B 81ff65cfd52f283bb8db2f015e83c7543cec57eccad94b945b1c61f37e3df03eb058659bf6e6065b9b5d9a8adb81eb48af9cf31e5de80b2573c488478e10d107 SHA512 efc5b5e7252965a74d69f84378a309128eff588ff654022cc191b093aa5c2750b06f5f876a75bbe5474bab77b05cac1ee4a4fabb65fe4a52a828da5c77636cfd DIST github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.1.1.zip 65579 BLAKE2B 38d14b0a84e574f1df9d0a69dbf56490a90f10dd14513f1787c16b23607f04d8c51bd2783f205ac16ebf3dedbcdda1b231388174a8cac4e6f44c78c38313f727 SHA512 9b76bbae9f307f178f9984e3f3758f1e2ef75527a3c7e8b8af15cdcbd5529db180de438a856fd557d45b4927b0c81bb20af1813571036a53f68feb4b837ea22a DIST github.com%2Fipfs%2Fgo-ipld-legacy%2F@v%2Fv0.1.0.mod 274 BLAKE2B b8d87e53ad87e5a6437a3e1527a3a746adebb0a527a9b6320893bca6728d5ec8bbf27d3c7c053daa83604b8fc1bca336bb29e8246ea5c96b3291f20ba535cbf6 SHA512 3cf0b0d193336b42a96992cc49be7a3b8928a05ee7ed7f4ab477ba04fe4aae5844a921cb5797b548dd27c5506f115c3c75a208ee09d50d434017e95d969ae2b3 DIST github.com%2Fipfs%2Fgo-ipld-legacy%2F@v%2Fv0.1.0.zip 21056 BLAKE2B 8afde1b910e17b6082c4366d0ae4eb6340f74f574db28c22aa407f263988624596fa4c70d399f57e5c4c8c5a12036ce1f1eb8f7586a25a471cc2c1ee28f118ed SHA512 e40c5bab14f589a8c4b0b3d53f29046503d0bfff10d08f1c1ead9c053221c416397ed15f8ab8c2abe84ae7807ef5bf97d4a2fd1333bc33b2c71e716461add879 DIST github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.2.mod 284 BLAKE2B 18830339b089781caf2d8d145898fbc132d8831e89284438aced0f641fa7c5143f2ac98f02a046ad2d0145601cb60f9ba44279ebb3a878f8fededf0c5d5af2e8 SHA512 13f41b4e660ea39ee20736ba9eb9b377962c0ea394faf78c0e027683f40ddf4d065837403a7481ca5b6921617fa209c0506810bec013190ed170935c6ac9769f -DIST github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.2.zip 27803 BLAKE2B 36ab439045ab1db440eb9912633af496aa7b794668627e32b68b2382f787166644cf88c38d2d67a2f9d4c0be155fc36ecc9709475e3f865ffff720b56ee858a4 SHA512 f6d93e44b0991ff0f9c9df90c0070baf8adfb57cf091cd5d8c49b00a25878a640ff861f799826c66e298cf17a0ed94cbe5f906dc56f7e6b090c6d366c55d2235 DIST github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.1.0.mod 398 BLAKE2B 6a6f49af667c78726464876bc7e66a4a0d4155be70f8ab16bd91dfaf32d86d874099c0ab970ac96fe48f3e40069cdc13752ca973f265295db931efb886d15124 SHA512 0055bb26a7aada26fd1178e86d2866b20b7c22bab255383fc3916b6c8102743867b203ee2d7a052f2e2917389ed59637a1b884ebd52154645c69082958d3ee73 -DIST github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.1.0.zip 34851 BLAKE2B 3482d1b66bd1abe4b48b01c3ec5a1baeafbea5cd6a07c98df8a97f0652817f032bf751f35ce8ac24a4cd8de66fb731b4c75f82c41880955a79f048eb69e9aae3 SHA512 ee6dc9b11a5fd7a4b792eeaa6a6d52481fad9ab9f4e3c7cb234925de9a057b62ede8e0e2ff0172aa10fd25627fa86b134ce8dfb7601179ef87d91b4b642d1ba2 DIST github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.1.2.mod 398 BLAKE2B 6e1cf82f17d7efd23077b80f9e6d3feabceab9b2533c6ce4dbdaff39e61f689a44602cd9d487306e09a8ca18d182c51cbfb9d8aa0315583e71d14e8c15805363 SHA512 660aff938afc4050d8d54ab4d49270efac33404523e90790f83ec822648f1b7ed2cbceac6af17cde44b4f9c0ea9f2cd9233bad7a4c41805f96fb45f096085a32 DIST github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.1.2.zip 38918 BLAKE2B aa0ca316eb54c015f713508df239ee5cbecbff1342b6675c9e4786b23cd4c9df5e1194b582e64fef93a7bd65dca2385a384d3a113f937da20da8d9c276e8453c SHA512 c57354f01fe2676923af6f4d145ca8f036badb6fe902e8a5fe46bcacae9a9c68eeae93ba2d822d63d7442d2cc4cfe29aafcc5421bcc92bb102373789ffd30d95 DIST github.com%2Fipfs%2Fgo-log%2F@v%2Fv0.0.1.mod 345 BLAKE2B 5114c21b10163a82815a747a5e06ccb49e872ff66ec824fb3103a95997f9524cfdfed3355c7aea5f1233ca305ac455c09bc2323a074c1550b6fcb705cd779d02 SHA512 26ceee384c2a1edf4d4611a30d7e7fff22039dec08e33de28ccdacc89243746202eca4523c5350f87586c126c43e5fdf9a677d5f73a7e8fb6746f82d8ecb2bcc -DIST github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.1.mod 190 BLAKE2B e1a73319de7af940fb71748a54e687e8d27d54e8cf93ba3ab56a5322a291722454fe8b919ea88191361db1b466d3764ab4e15fea285ae6a3e3c0f80358a35d36 SHA512 e02e47e7bb1a3962b8a066238cfb745435020c500111f20167b862e4687af44c2649b4c731bddda58cebbf154cdedf5a0026bb5fe536bf5448d91261f7b9cbfa DIST github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.2.mod 190 BLAKE2B 0d92b9b211d493b47404f911ab4a1a5c7248b53580ddbbbbf1565b5809931e9fe930d9858d0856025c1f60df0408ccb5031ff8deead018089a4acda9b88cd615 SHA512 416e4b325971a2bde8b4a2328f4ee5fe4bdc63243c4158490ed3adadba466568250009de7f88ceab0ce0d5ddad6f0fbb52418059e6227479751af1d36495a2da DIST github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.3.mod 190 BLAKE2B 5fb76cc5594f046b41a15315fc2ae954023d449ee7dd523b76ff1e7f36f42748800f6a53fc472a29d2e3857d15a7ac017f6c00c62d1b710930722e9fbc343c71 SHA512 a43cc8c1a8ff54d1aa2aeea0ea04e198250d2df3b3a86397fd7a12f697848fe94f1913e5a2d1a0843ab548096033ffbdc1230234e04c5fa183233c8f07d0615c DIST github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.4.mod 190 BLAKE2B 2afd07b5d4777b6510c3f469aacc63b09abeb7f2d8c2a8c0f14139a4a655d21106991f9258f874a6612414c042631e411511cc5f0132e3aae14269acde34a352 SHA512 6f1b4bb9690b0d87421b77159b0afb299dc568cc9f39b2b1ef0b5dbb8f30fe92784738cb0d0157342f84da119fc4c7e5d13bff18b44af310298418b96e5325a0 -DIST github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.4.zip 43642 BLAKE2B 12dd8becf8a847066461fe682cb9d001892e310797e6a989de14c99d60f16a3879435359711739a32c1f2ae2e2d65c6b7297e33ba40b7d5ac27a95522af3e2a2 SHA512 6beb1617d2e732ace32892f45b4ff929f897cab5c16c26aa9a88c2d5a166467f516f88cf28dad6184b8dde3da2071ec546324ddf7d75a377ad81620b07cc90b1 DIST github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.5.mod 190 BLAKE2B 258299f732cc4d0477b52acf9982042bf1901097293674c31d86a4da2bcc68149bbf60befcef99a466f5b4ea3673b06e8c0fa24afd9ca11f3e1c459e2736a496 SHA512 1444868aa2a9891755653f8a79202d465e65f57a02b2b8116feb234355241b35054576df55f8c6fb4d4d7d81fd0411a1edef18e5ec1f244003607d7f436f87ed DIST github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.5.zip 44098 BLAKE2B 267a845d07c5264cca29ae03e82ada53528e032a17ec19ac6175dd482094c84ab6eb9e141fe5756a9403d9f9202609f74934d48e5c3aecbb194d6f644459ff2a SHA512 e9037265d116a0eff7381dbcf7dcbf9c34543944e9551654ba5174ebbe9ba78260fd10b64af92b4eedf9d75be9f1153e899d900e3fe9adb7c6a47f39b0a9ddcc -DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.1.mod 329 BLAKE2B a4dbd0b60c2871d963ee5578194789a0f67af5f29c4c473643f3524122817d18408f665a23c9d2e12f0a3eca9b54443c04be04be5dba9a7e3e5ed6f1b87e26eb SHA512 c611ea63e168dd663f7ef01085dfb7cd88b4c3457393190f44ae4cda4c23a5e7718ca4ccf36ba52e1001814312fbbca429d3c2dc0c28d45eb4a9de16d7cfc583 DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.2.mod 329 BLAKE2B a4dbd0b60c2871d963ee5578194789a0f67af5f29c4c473643f3524122817d18408f665a23c9d2e12f0a3eca9b54443c04be04be5dba9a7e3e5ed6f1b87e26eb SHA512 c611ea63e168dd663f7ef01085dfb7cd88b4c3457393190f44ae4cda4c23a5e7718ca4ccf36ba52e1001814312fbbca429d3c2dc0c28d45eb4a9de16d7cfc583 DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.3.mod 329 BLAKE2B a4dbd0b60c2871d963ee5578194789a0f67af5f29c4c473643f3524122817d18408f665a23c9d2e12f0a3eca9b54443c04be04be5dba9a7e3e5ed6f1b87e26eb SHA512 c611ea63e168dd663f7ef01085dfb7cd88b4c3457393190f44ae4cda4c23a5e7718ca4ccf36ba52e1001814312fbbca429d3c2dc0c28d45eb4a9de16d7cfc583 DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.5.mod 75 BLAKE2B cb011a5efd29f66b4843bb821f28edbbcc0ac594d99be8e32fc167b83427ebd74a114c0703b6847b60f20d3fc40ee6fd9db55fa9a9ffaa50b8616883047b506e SHA512 a0d626cb6b94e05f5792c18b7fac2bbdc9302fa01bcd55ccb58604d05ed82ba1e30c00808627f8f55143ba26a4ea985563e3e09166b1e0948ff868b7aac6aeed DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.1.mod 109 BLAKE2B 447967b394435e4da38c0d03e6073b51c89ea62e355f954b021af1265379e79efda7af1092a3dd46387fa2a4429e6c33e060eb2d450f32de269322237ab4df0b SHA512 c482a10f9c32ee014a299601319f02a6ed9156a48384430b5d15961f6783883a15f4bd9d37315b52d10cd745fcbf0486d4b3bedebc32ba99dfeb3c731ec60798 -DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.1.zip 19385 BLAKE2B 44c4c7259ec3dec47f141386b9280c74e65dd133cad0201e755bb5aa9e0ec1edfe800e04a8361206bf58de864acb6fda91b01f9eb63ea4e9e963d4a547f4b997 SHA512 0ee7ae10845af513f0e1345cf06ee9e0856bfa81ff8280af4b07396eba937fdf0a60b80036ebf0ff4eadf73b42814dda26a05eccc14486a5eb7b7914696b8cfe DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.3.mod 109 BLAKE2B 456c439d7fcc480f99ca301c39b20231766ff2f5d07790587b0781f29defb505fe85816d0e7e62b21793a6c987a8f4a2b6bbf2ddc50b78fbe8404a2be95c5b0a SHA512 727fec0896b81c3d9a38510bc48352ba4bfec2ed612ad0df81fe3c7f68e88faf622ba160862e96bd1eaa5133d6fccf401d646456e450befc7c37c6d3d3cc8a92 -DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.3.zip 20210 BLAKE2B f17a45dad07bddb7cc818227a40acebdf952060f8fb577cc43e7d373a9ee354578a88f95bc0e68c7597f73f981173b4c705f0af8e6a1fe7b190f12d91024e7b7 SHA512 1d3f8cfb029ece0ab80f24acfd0f9fb254d32e1726988c48cbaae5c391afea0a0fc8343f48af70fd6fa094470c71d59f65fd618a3002ed55ed9ca8c9be728770 DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.3.0.mod 145 BLAKE2B 188a85c1191d0b446d701300cbf552687619ea7ba09620a23756af5d40ea216b9f62a25143fc360cad677aa7b53f542d2ecbaabed470f777896e7303e90a10fd SHA512 d4a082447ce9f796eab0b9df7a5655364d6d5b17a6e6d5f0b2a41f6fa3af1f0a5f6161ea0dda5c00511c0ff0045c7324d4ba08609bd57ab494a12a2f0221368f DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.3.0.zip 23740 BLAKE2B f819580e40603cf388c8bc8c6c53db23ffa16633e08cd2db44a1c31a725791510d3086b1db354d2a064299467cc09adc84a57399adc20913d1022a2a25630469 SHA512 23772382c89c5c2127aa25f536a1b3678455b950724b9c06d8e54f6aa11458b4169f9e1ac8b197b03a10606b9c3c003ebaccbcd823423a5558435aea497200b5 DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.0.6.mod 480 BLAKE2B 24860c2016ee22800fe71014a95d81f64d99c6fa063d373e1e2f88c62d7b3e1f1af06b2c5094602e41cfbe662294c338e4e4272db9fbe2d0e29af7035e6bc503 SHA512 35b27a39923baec5b44eba0810e24d9c6f2f2dbbf7e5b33a698ea7ab9359f6af84258bce37a3da90e4cfbe51388ea0ef5a718efe9050d84967c82eef5cd5a3bb @@ -596,70 +590,75 @@ DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.2.3.mod 480 BLAKE2B b1ac58e4a56c DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.0.mod 489 BLAKE2B b6ea5233608f890420aeabe7b34bdeddd8c06508d2c71281942b31cccc941ebbdb8cd3d47dc0550378e998d855826cc0fd76a4889023d915033b48fd5e6c243e SHA512 97fd560586524a3ebb83d0fa9bc2d8c244e10aa7018ddee95af1c75b3d2ba8c1c5b2ab7f46bf3ea19bf7968b686163b033212eda91ac35269815b10773cf9cea DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.1.mod 490 BLAKE2B 2ea6eda24f817b2a71fa59e723ac85746cb1139fe82a68c72a86bbc7d51c4a385faf34e15828696625c8925084dd0d1e8b9d524347ee132e533ec1c87aba5939 SHA512 f82a95b705accc6f275b11d2a3709b904e308aea43660b503cb76847e5c06a766d52dc474885dc3c56c0a7404c3f1747fe660e889c8b6a66b78ff83d317123bb DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.2.mod 490 BLAKE2B 2ea6eda24f817b2a71fa59e723ac85746cb1139fe82a68c72a86bbc7d51c4a385faf34e15828696625c8925084dd0d1e8b9d524347ee132e533ec1c87aba5939 SHA512 f82a95b705accc6f275b11d2a3709b904e308aea43660b503cb76847e5c06a766d52dc474885dc3c56c0a7404c3f1747fe660e889c8b6a66b78ff83d317123bb -DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.2.zip 58939 BLAKE2B 53959fc70d7130c9402acae3d0feae974f6b754a241187bbe87a3f7918e3d4d333c331c2956a9f659a467ecc578e0bf08689250a632933fb24550f152ee8da13 SHA512 02f3574cfbb123b3e04bf3ded8a0ec39975b20ebb9ad82c3fab57df668b782da66ccf528df303ee83cfb1a48e5f0f5715e8c64ef1331eb9ae6a31144a77d700f DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.4.0.mod 607 BLAKE2B f016167e928210fbe210fff2fead86d5f023012b3ecfa183dc815bd2236fb8cfbecb466dbdfa027be81bda59d13d3a24638d23cad1e5d58d42db37c34929e810 SHA512 4019c9d24807efb5660c341a8e385ce2c09089244ce1039186646f85b9f0a8f3c6d4e355cbde48040455f3be6cc586153e5df2522846453fc3d2ebe29c797949 DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.4.0.zip 92597 BLAKE2B 1a0841a64e9190b104a1eb3573eef58300a431e5881cac72f011bcd5e94998a41ee7cfe4f4af87ae0c4743e90de5f98286c5aa46476e9ed6af40e7aff3eaf6a6 SHA512 4f91f8664bc01a66f8c5fcc35b096ceb8df673886441dbcc870e765cb6e27a0762e1d1d684caa7eaf5fc2620fb26dccdd2324025095a5ed559eca9248b94ba01 +DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.5.1.mod 607 BLAKE2B 8365c9411a79169fc6f17f41765da74b5852e14950305fb29df5310c9593559d7ed6d84615856ac6178e934b8bb28e7d53a05dfc07a3af87ffad3f691fce1d14 SHA512 f6073c7564510511d94aab2d3f69e29d495cd173a8e9443b2d7b80caba98d99ed0cc84cb19f8e2e90733f18b65384101f3c8a516349f0cc189151f4067b2922c +DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.5.1.zip 103783 BLAKE2B bf310a99447b4977e0141e05f0b54b98256d1c662d156425f66984da7565824a8f1281236a935b229851c5593dbb0f034577b51b8b7cad0e1ce32e13532d0922 SHA512 0a0db6a773cbcccedef2d24831cd2bbc75b351c7b1877c9f184b8c731c2567a38438fae0c9d98234e765486d1fd9b87fac3889b6e02671c7268cd4619fabd02f DIST github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.mod 44 BLAKE2B 80b79e8658486ddeb981cdddf9768b5ce9698d45d1c27c88f1beb3dd79a02ca978b5d0e0d30157363462d7cc4036998d49320bcbc8cea1dab57c71088bc1355c SHA512 5ad88c260792c7814e17b5f60d7a07ffdff7dd321e56d069f69d58c9844363f9a658a903e074f06ef0779522c76160e2bdb4698177d77ca5cbc98ac5cf3c5477 DIST github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.zip 5025 BLAKE2B b0fc8362c88283fe69c41b99d1a67affcea9407c0d1a9560ff28466fab32a079a91b0039926efd3334a69d1f4a008057cb471c192a743bf7744c32dacfeeac8b SHA512 b802663065b7efe9a3f92ef41f81c6402248ac3ac25ff7b422f0f53cfeb96891c4b0c274034b04d30521539e1fa6615b848bb89f6588ac3f6649a3c0952867c2 DIST github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.mod 178 BLAKE2B 3bc1ec5c13d859eb01b56602eabac8f2a9667d73de54ed6459dc6846c22a332fce83427cf85788bbe7a6fe6c373c46293288608266cb67d0d8886ffa014fda8d SHA512 3f465c07e1c62d58524ad0f4e7bc3b6fd59c61fcbde760991c036f115c68fbf689e3b91937f2cde05245695f3a6f3aa3259a5de552ea20f3c9d3752f31bc837c DIST github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.zip 6216 BLAKE2B 378341f45ffb2fdf48dd07c84712253d035076bd38281335281c888299cc753c1d7b4880b5de358782a0758b0565139ab61e6e36b3530a7a3e97e037899b2b86 SHA512 5bcda9125d9bb2f3b4e46552af1465d85ec14bd42bdbdbeed3834a2579ef3f3fc65a80d37066d33c895c73507787b6268da5c09d297e10c95a22bb5674ff2eb5 DIST github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.2.mod 546 BLAKE2B f4a809827d106c29bd8de5c403baf14ed9a537f5f5c33ee59e1975b7aca8db20e52bf719dfd05d1634cef07cdbfe17caaf41d4ec4701498d5874b99cfd1286f0 SHA512 63c41de32deba94a745ccce5c66a30428cca129b00c3dcdf54cb375db2f8d1e81d47e3e3953400b172c044627ae99098b5945b048c29d4882f238d0a511dfa2b DIST github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.2.zip 48692 BLAKE2B 2dde96325bbfff4884d2df181d067c30ee6d6cf773f6a78cf94ed266b03afe1cb2560769de8b026e1d5af1400c7c352d6a5f4182afa67407dd35401cb717b17b SHA512 e3b0cff0fd419ee09cd88b0ed223995a56bbf0fcef4e98c6e5871750f24bd8242096b3af163f8427e3ff101b3f863c407445e0ca3ae4f5fd557ad29a450cd2bb -DIST github.com%2Fipfs%2Fgo-namesys%2F@v%2Fv0.3.0.mod 990 BLAKE2B ae1ecdeb9541ef316e10ac9009b332d3cfb874d72b1ae986911f816e9a4f1b33225e024c986786aaf535d5c6495fb400abca593b8623c4a2426fd8a50ed0bbbe SHA512 2d6f545c285e49bbe0d7d67affd8dc9c483bbb178a38f71247689cc2568be1c00a0499fc663ebd24b8b175bc2ffd4190791f5255ceae135f5bc85989b2290b9b -DIST github.com%2Fipfs%2Fgo-namesys%2F@v%2Fv0.3.0.zip 64281 BLAKE2B 2dff0a7b42db174e6d1e54aacf415816673569bf26d825d4a40b36755197b31305a0ee115cce3c18a736cf24c257e8a1fdb93d64e60ff2c60980111753d95075 SHA512 be7d2d9acabea4e31e2b99a313120bfb10440e61b47d0f0971924a563bc7509f4acd355069f21cf92746e9264a67ff713a40d3d6f6d981476c14eb650ee6b500 +DIST github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.2.1.mod 546 BLAKE2B 95927338005395de64761cbebadbac1f5cc7c80f01a02f419bd4d5f3ea931bd7a8bcbe343f39a39ea02154ba4af8d5b54e42ab075d75eb046d6d34f58030b62e SHA512 2cb6b91f91edaec624f00e58301ec26c9e711d851daa92c74ac353ff81a7aa3d8970e805e118e5989a3b3ce91097495aa28c4c8768996cd11da2b7a38cd01afd +DIST github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.2.1.zip 79031 BLAKE2B d23f76042cd90142d7fc0146e07bfa1ffc5ba737d2f5dcdbf27c58e4a01fb567ca126156197090a20c87965a3a0db6e8b22d1c6c4b3c71cf92928453cdd40903 SHA512 dfce023ae4a6d23674aa02f36cd79d9a61fbd5dc1129d92b38a7a4f8982826fa6690455179f689eb5f61832b4f98b846f9bcc9b39921bb89be72814f4ac184c1 DIST github.com%2Fipfs%2Fgo-namesys%2F@v%2Fv0.3.1.mod 990 BLAKE2B ae1ecdeb9541ef316e10ac9009b332d3cfb874d72b1ae986911f816e9a4f1b33225e024c986786aaf535d5c6495fb400abca593b8623c4a2426fd8a50ed0bbbe SHA512 2d6f545c285e49bbe0d7d67affd8dc9c483bbb178a38f71247689cc2568be1c00a0499fc663ebd24b8b175bc2ffd4190791f5255ceae135f5bc85989b2290b9b DIST github.com%2Fipfs%2Fgo-namesys%2F@v%2Fv0.3.1.zip 64718 BLAKE2B b1defedbbef2627a35a3e95bc5baa13cab6298254d33d6e3739f3aab71c9c4c38b217f6f8442e98e1cd83cd9009b12df494db6e3b0eb2dfa0744b79d281a7082 SHA512 b56b75916befa4c75b23a50ff8608c270dc9a24e50765cfd224936f660b76ec4403f24d50f9a95d053e77d1e58ac521b2f1a795c9962a48de20b2d6a6da50df0 +DIST github.com%2Fipfs%2Fgo-namesys%2F@v%2Fv0.4.0.mod 991 BLAKE2B 6f00e57e2596af3f9539a4f97dea4f29c32c176a33d5c20f5ba8bbdffd6875e28e556ea6fbec052272580ba1a076a4f374dbd94c31a26c253d99826f04cf7696 SHA512 0a63383439de16a75081374ee4ec244a27cc5174b712a5cec453c5ad8ced1e45964dcb2d57622b96374ad1c3a18d7cefdd684d046794a660b85e4146703309be +DIST github.com%2Fipfs%2Fgo-namesys%2F@v%2Fv0.4.0.zip 93889 BLAKE2B 025d7931e9777b4107490460beed4ef66acf764955c07caf67b72c3209b188f89a814f8d96883f9f35441d775fe0c8034b9545a9b8256428ed9bc6d067b6dfea SHA512 6587023b1d4d2afed0d12b371259b128dd95a236f5352929da011326a40c83eb84a83de7903fb7c213c6ddd72282e3e8b1b487363bf7574d0762c2a08be07b7a DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.7.mod 182 BLAKE2B 35e66fd6023b845cef6f981a49e6dfa5eff86d3c2721f45e7dbbd1163ce30008eef89f8f4e6f5a081b27984816ca42de735bb4f3e804669531a1fa473825013d SHA512 bd78a805f1966f34ed65ad90f53eaa6be266d4e525f1e8cdcb15058111fddf5fb88baf7ae8adf896b973c7aef79a0527a6f1022766c2be82dc014b9cf2c171ad DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.9.mod 191 BLAKE2B ba1c0e5ff885ade011ccdb7ec81745698b48c819f45eb5908587c4c3b89b61149d08f0eadf237b0a12643dff175abad4e422022868d331a18a066d9611435791 SHA512 03d03fac0aebd2775749c62195a4ca7a62083bcc4fee7031054984d9e7e50cc576ca290df92d4d152284bd1b9ba02774324d97f21d3ca87447397f8ab6019511 -DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.9.zip 28616 BLAKE2B 64ee3a039e3053f714994e99008e8620188d538ef1d8a6d2bd4dba96f43d8ba65892ec90111fcddb0699e93ef381fdc3dabf990222584e94df78d634c155b0d4 SHA512 4d81f644257ebbb3a7e24e1d6bbec8b7d74cb289903aebad15bbac528ca8d814d6a0491efe3130f7b671d5a23f44bec61296c197501813279287c3408c88e03c DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.1.1.mod 464 BLAKE2B 2014c301988122905ab1a31786dfdc2e87078dbda2b81112921287cf9ba72b177d3bd87e699ec227972a569e52060c32c68fd0c49f4b9dadf187ee68c4f9c230 SHA512 a73f1eb177b889f00e972ca3300f117da8b829377453f63a2cc1a8b2db478573584d5f33ca1b158642c6ab397aecc3e0f4405551dc3e6de0db863b15650739d8 DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.1.2.mod 464 BLAKE2B 02d1641f9ecca4056935aec16167590d4361d1db8e54f5bd41dfb20d9ef42b3ea838074cdc48496a5d9f418a2e92e9af8c0b64ddd0a1334c378c3db3c360c482 SHA512 75421b3631b60a1a6dfd0daf3b21d7a7b148b6ccfd2dd5aef627037327e08bde1f588b1117a0f152eed64ee94cc1bf4ce631be8f4428d7a8b0e27325d470f54a DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.1.2.zip 44896 BLAKE2B 54ea340a619601e941eadd56b0491e0f800834a377a3d61902b6073ec12addf0ef5987228ef2e697f81284f6a5edfc10d5a8dfc1fa9a22a82edf8705e03cc9b8 SHA512 565303a116c99145461b2fc22d67a465e4cd929304b52df65bdccbba1d84b2320c52176e13294ac0236c0653b3c7f3c5e811c83da190d21174c26aedb232a67f +DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.2.1.mod 464 BLAKE2B 79be56dac25caf2fa810eed6c962842576efc3a0d5526844fbaf3dcf2571f1aed8e1953f1bc38c9bf7d6454cff0feee0335d06d20f9d64e544f451dc666701f1 SHA512 225a1cc58e62b8163ff44c37b862d9987995b174ab684911a72dc47b01d58cec9063a84309aefcaace0f94b0f1a24102dd943002c2250bcd7df8f82ad8bbb92b +DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.2.1.zip 64491 BLAKE2B 9f3bf1f6f9f0ff54ace272080a40478f2431d73f07dc1232522a26b96018c0d786ea239538d4f2797c180914bcf139f67385b4f19d909a8edf07a0b3ef69a3f9 SHA512 be96fdb2ca8c4bdd7d63a75d17988af39d94b1fc0cf43cb1a543cc219ce67c4c9acf55537fd0bffbfee2573fa0250fb446b7eff95bf3ae560ab4cd17a1edc219 DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.0.4.mod 138 BLAKE2B e74a348e85c548f0a86caefae3790d7c856fb325c020f3fa8a017308c734d684563611a1136666ed8a90443f8f150eeeb55949da9fad76b30178878deb47c144 SHA512 dfcb7f218bdbaa713caf14f1760176a1dfbbe4ca6c4626ba1158f1787859f2263870bdadcfa2a7f97227ba1802b7279f377ffcc6c0f586a24e8ec2453d02a631 DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.0.mod 195 BLAKE2B f09edeaa4c13426c28d6a1318d4e9bb9fe0ba72f20e032c46e895ba8bbe0644a3e9dc1cfa21c2e8f80137ff0d990794a0baab3414bfcb1be2b3a6acc990dcdea SHA512 ae5563432fdabbde6c035e14b9d95fb41429c533e17a80d74057fb8be2e46094735765c8ca8c80bb4dd2b52408eb3613fefe27503d63b9afb3c7823275e6a3ea DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.1.mod 195 BLAKE2B f09edeaa4c13426c28d6a1318d4e9bb9fe0ba72f20e032c46e895ba8bbe0644a3e9dc1cfa21c2e8f80137ff0d990794a0baab3414bfcb1be2b3a6acc990dcdea SHA512 ae5563432fdabbde6c035e14b9d95fb41429c533e17a80d74057fb8be2e46094735765c8ca8c80bb4dd2b52408eb3613fefe27503d63b9afb3c7823275e6a3ea DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.2.0.mod 195 BLAKE2B 1f0ef850fc25d3fbae50ebadafe933a987b8bbc87ff12925a07cfaf0700bf206c36a810c625808776e39b85beb9526fa794914d8904fa70d10d57d1608205966 SHA512 51bb3de3ca3f28a8e58feaa434e885e884443f865457d01053677b83bc394b0dc44405d95972249916fdeabc9ac5f3105b1fca064d55aad14afbf83c49b93a22 -DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.2.0.zip 18025 BLAKE2B 14694a0115ae50b7318eb85d4086c6cae74ac03a83f1e8cc3b6ce63e162176f7621f9ed21b7e58e1eadbd735c643ea068bab46fcd7d9c0d075cce7b60cd01f25 SHA512 473dda01d400225b10a3a90c7c6d7893a0a36002b0a61ca729d3403865a504e647b6ddb1ef5024cb16a3b8abe8fcb6493c97394dba73474d66da7570ba4f431a DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.4.0.mod 195 BLAKE2B d1c21a298abb30e33c985a1b383629bb58ff6b935ccddbef5e8756d1f43574aa1ef334bc58764cd8ec6d72e492b2f75b269fc5a131d3028c8266a39abcdbbfdc SHA512 1cc526ff4f77ce7331bc5b6864be3eaf7c78c623c6265b75630e3f9a1650524b07e34a62e971a315e1a0bbab36ab616f75843d7280af651fdf096a4d41d6c188 DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.4.0.zip 21538 BLAKE2B 9a1439df22b8088f722314a94fe185a469c2ab8cf53b4ac3248975baf6514077394b4215722595910bbc4617ce8fde7ed457a870ddb301ab17c32e82d2ea8fa0 SHA512 caedd87b14142059a99368b1621b1c68ad605c492dbc65f083e3a8b6734bb68c67e081cdeeec040d84f52a8b5fdfe6e24d5f6cc4ff60572e50f6e5a749b34e10 +DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.7.0.mod 232 BLAKE2B f53361df58a711a9a286021d492203df6b6067d1c4589bc990a2c7fd5ba7a0a5ee9a5485e03580a5ceb95ab7aa0c3a4418da94668e8ffa89ebe4685134dc91f4 SHA512 3a04e25f8a0fb83d833363292eb0d93cd21cfdef6f18374757719945426e6c61c3bf5fa4f797d7ff8c7e2ccb0fd81d98a786cd11ef1677adc7886f1b9774ccb5 +DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.7.0.zip 23158 BLAKE2B 218895f531cffd273e59b901300674d94e60a00d3896586b7a4172acbbe9dc718eebb6dd62285bff1dde61a343801e236623e02b5d5e7dc81484207427cdfde6 SHA512 18b0fde83068cce1a3fb34d3afb47d5051c36d3dbdb68ffa6f75cc48acd5ae3f5a35309fcbd27493695a04643c0f5b09bf1c3ff094db92bd02d040c26320d5d6 DIST github.com%2Fipfs%2Fgo-pinning-service-http-client%2F@v%2Fv0.1.0.mod 317 BLAKE2B 42dff5a356a11068f45820e094711bd64a601a50169f6c3c6c4908480b4b8d4248605f45686bd76b87c8ed1ef19d213c2a0a1c79cb1c2ebec00268358d338818 SHA512 a9b97cdecbf178e12a40ea6e05829d4253035b87cf3435a9b9c693b9f0ca95f85781e437488cad40d0dfd80b6bc675d9a023d87e2da2a79f83cb9590052c6275 DIST github.com%2Fipfs%2Fgo-pinning-service-http-client%2F@v%2Fv0.1.0.zip 83427 BLAKE2B 01bbeef92474f2af680d8420729c7b382cd602c4e8acd9f80e701c6a27445da1d24451c708622960e6e4fd797f1d838153501b4471238d3ad14c6d65808bddec SHA512 cb05d9eeb2143991e53b614ffda7c3aa3308bcce857364ca97327b506b34ecfe2e853fe88cbde80367caeae58aba9604ff21c9f4b48549b87036af6850d6e2ee DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.1.0.mod 876 BLAKE2B 4c9f51230a25d7b721bbc01dab332e607485d86b8b623a6b8b80fda136227b2ef58fe371724f8c067f7aa87aa41a91e80fdf593fd42a1594a7d07534c2499bf6 SHA512 40fc3308ce7fede3f16a88ad9a4999749e06d76a64bfca70683f0221d5405f8f1154aadbc2b68f8d75412f02bb0ca7236354111c1dc3d94bc3c842030e352853 DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.4.mod 885 BLAKE2B bd840c7c5a4b93570527984e2494afb234858eb9a52b0ad64604bbf6ce7a86d80b2d0517a87ff2320eaceb6263eba8c9ca263359a2219b1b371a91d04de5537f SHA512 1e02cc242c3a3824de497e170e0435db6efcc4ae1ca628496c92e9cc1f0ed1ee6fdab43b7d5d0e6245fe12e774b13a6c5de1568bae34d3dead556f62de9ee909 -DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.4.zip 79661 BLAKE2B d86e91a17ad0b83af7ef73fd763860cc32c8b8522a7335de58c919905ca2c1e7c0bddda3d59b520631de6feafde12194ac4aadbee38eb62a76f949045567b3f4 SHA512 da9ac4a4011f82fb5c995be38b3b4dd22a17106230bbc469ff88be827632dae1ca4d51b411c9cca4ca6063cec58f77d6282f056054d2678ecabef26dde6e17ec DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.5.mod 885 BLAKE2B bd840c7c5a4b93570527984e2494afb234858eb9a52b0ad64604bbf6ce7a86d80b2d0517a87ff2320eaceb6263eba8c9ca263359a2219b1b371a91d04de5537f SHA512 1e02cc242c3a3824de497e170e0435db6efcc4ae1ca628496c92e9cc1f0ed1ee6fdab43b7d5d0e6245fe12e774b13a6c5de1568bae34d3dead556f62de9ee909 DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.5.zip 82131 BLAKE2B 2a15c515c0ed122559341c13c86113d3517ab0beff3ff8ba9358eae3ee3ab5c62ee5c8bd0b33ee6548133d0623f07b67a26f0c153f3e3347695be04092af0423 SHA512 ffc6ce405530fe8c21b707dab0a37b7ba6f898ebc6a445e242045ab95c6a748f309a083c7ee0cbfacb5a15dac6e7c683af4c31d0ee0c8f39338538b4cf13abdc +DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.3.1.mod 863 BLAKE2B 74852f37045a820259fe8bd42425fa5b7e17e9ffb7e90035e7617ca5a78e620a6a53d06987e6b00e5be8b89f71f8b76a3f6901c4739c2ca5209cb70843bebf3b SHA512 d381062a8acb9983c2b28676b383f01fb4c6fd7713bf63c1082f74919f98fd284212a7a1be94534ae7051391ddd35737143c7b99cb3e829bb73ea69bd3b3420b +DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.3.1.zip 126855 BLAKE2B 86597b4ef086f3e6f73253298a5def18ffcab0ee694a8a49e01b382f991cafb1a50f1539ff46086e8245b9dd51d29c117c6221fb1ccdf0487e86bc8f2aef4147 SHA512 e0d354e0963fa61aad03ee5ddce2280f46f1cd6df942037123f2acfc3430e3fb44fe51a4acd7e6f603a4dcb41ffa79e1ffdf1049e43bfafbe399e8a09a9219a5 DIST github.com%2Fipfs%2Fgo-unixfsnode%2F@v%2Fv1.1.2.mod 397 BLAKE2B 38f1966b7e7ae04e622f52abf4588e5b20f2f7f6171292f85896c25535b4f2cbdda8f771acd95c6eaa7e3f1389b7053dcc7a162c38e49da79fc186e280d2e218 SHA512 decd5939908162692c8db634cb613bde2a9ad904505dbae6bb0d515a13aa9ec3e434d9fe6bbc5719bdb00b948e4552bb6885f5a06e66eac0952ba5038d8b2edf DIST github.com%2Fipfs%2Fgo-unixfsnode%2F@v%2Fv1.1.3.mod 397 BLAKE2B 92cfa72893581f1c35b3e2f196a1fb6fe3f13616e66a330641620f4dfe5ffe20f47ccbda84af67c9b066246bbb449c962ca7729ee5b0a0a73cd6e64ae13ce20f SHA512 601cb77d5068df601137e28d2b81d8863776940cd282ab3e17977cd27c92d710781c3c617932cb169a7f0048e30324dfbaa0c4258cb2921ac077ffbef0671cfd DIST github.com%2Fipfs%2Fgo-unixfsnode%2F@v%2Fv1.1.3.zip 57744 BLAKE2B de969164db3460fdee78e8350f444783bb95114c5f4fc04a71a82223d33b22da009e18e6b1395929fdaf627b5b06027bbb7bf612b5eadb2ca6c590712da81a77 SHA512 8ad8fbe3b19fcc913090cc6ddd371b10b59dee7090eeda7d3cd05f2fe9472b294ab27bf364401065fbcb2029296db498c09f82141c6bdd45aabd951c21fb7e9a DIST github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.mod 124 BLAKE2B 488e4b5c60e340768bf6297e23442c54c49dae0d812fc6d3d5c4f042c54c73f0850dec4941aa4c7a0ad4db3ce01844245385125d280dfaaec8d6f8957b08005f SHA512 1f7094e706316fae25a165dd967743829ae631bca8999d01a84be738bd250d0d90c1c7efc95350b0873a789813f8c31302b30459b8fa963f586420b1a99335c4 DIST github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.zip 4312 BLAKE2B fce223ada80ee68a184deae87dbf8c14917afa39fecfb5e56f9a584833c6f88695af44a96e4f8a24125000f2ae452ee8e2e1dd0e9bfc6136549de0aed6bdd948 SHA512 9a9206aa7e182c704a20e772ce7cf62707a1391bb6d14f8ad1a311fc1c19381df4b3134dc301cf58d4153aa982324cd3a74dfd08b0e7e103a51e05661a2be174 DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.4.0.mod 493 BLAKE2B 97e0de538821bee1debcc186701f3ec09c6a731cf539b749db89b698345d82e750b8bb9576adaf82692e3444a12c5872f4f9bbbfecfe6ceaca884a176909ebaa SHA512 2bd8246ee757df2474875153cb7d910c73efb63fe5d0f86f4e857f1ee4d8407f54189637922651a2abbe869fe9bc130428dd69faa76f8b09a0fdd5243a44bd37 -DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.4.0.zip 72653 BLAKE2B cdd97ecd9a313eb7b1cc63b614779fbc0ab78be25ea9e982e5f29339bbe001fd03dd7d001d4065817f4131e467ae51f5a5194f95753bf0da3f0d24295ccfaad7 SHA512 0ff2055806935a0d0a1b6cc7299671749d70d18c0c4d2b6ba98a358fefb488b97a0d9e469672dfe29ae6e41ab02f0d3ac661a44a316df525acb786100a8eac40 DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.5.1.mod 493 BLAKE2B f2177afc11df3f67b78c6e4ec8fc51bc0328e798a5ca5597fe724b603d08c7bc931f8b872872968370fa1cd4e60e1bfd02722e7dc2392579764bfb9245ac8b07 SHA512 4c3f4eae0e79caf8e1ce9a6d1dc05fd303f3c167339bc27a42841c8bf8c4980b932b0e98690204ad0b76cd26e5ff71fb41477d11908e0514b6ef069d291fa29a DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.5.1.zip 91653 BLAKE2B 8d51a7275245a463882d8cb8af26f3b7d8dc683744e33998d140725c54819fefa02bde11bdd6654d3398ea77b87c5f5b126396157d66560c84db4ac7c7fc7896 SHA512 dc80e6d7d81c107931d047d315d9c78d43146f55f65ee5f6c2550fa6613cb1f954998e39271579b98a1ecf53416a5310b660206547680ece939ff19bb90aed84 +DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.5.2.mod 493 BLAKE2B f2177afc11df3f67b78c6e4ec8fc51bc0328e798a5ca5597fe724b603d08c7bc931f8b872872968370fa1cd4e60e1bfd02722e7dc2392579764bfb9245ac8b07 SHA512 4c3f4eae0e79caf8e1ce9a6d1dc05fd303f3c167339bc27a42841c8bf8c4980b932b0e98690204ad0b76cd26e5ff71fb41477d11908e0514b6ef069d291fa29a +DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.5.2.zip 91486 BLAKE2B 36d400901b17e154400e1862da6edcad4447ae6659cc80a64e3f4b8eb3beef942dd1c429a20b7dd30e8364ab905b2d0f319043570c117ee4844f6477a96c8774 SHA512 a0b803bb3f27c2407b504a55af8d1d8b44168496bda9f99f1d05f8640309a703bb733f9a767c7b4da461d46f89920d89a50bbfadbb35e6708bd0c0a10bf4bdb6 DIST github.com%2Fipfs%2Ftar-utils%2F@v%2Fv0.0.1.mod 86 BLAKE2B 236fea111c479b317a56a675097c731dc93703ac6caef94db1682a96f7cd398077081bc75ed6affab71c1bf32a96a38afc517d83410e1cd633ac5ed4b5a5abf1 SHA512 7ddb0c2132a8567133064a36925ece7b422500ab777d985355f3ad7579eb23e7088c27790742301802fbbdb83bf9f8904fcc25d595ed0becfbba2df326735549 DIST github.com%2Fipfs%2Ftar-utils%2F@v%2Fv0.0.1.zip 12224 BLAKE2B 71846a22a0aa81bf111e4db309c5da1274a260cb45322c7e41664b981679b7345c290f77ab0e5719bce1264b7989eeba19cd2a3c97eb01439aa061918ac80708 SHA512 d6892d88a939449dae7669994ed46d3d91c2e8e613a62fe623cb1e65c35dae2fed45b0eb029538793c4cb819d0eaba381980383783930e25ab6bb63fd8340c6a -DIST github.com%2Fipld%2Fgo-car%2F@v%2Fv0.1.1-0.20201015032735-ff6ccdc46acc.mod 458 BLAKE2B 87e5f719defae231c90851037be562a511e586cd30d1cb4b2b11334b3226979a097d18be794980906b99fb9fe207054e00a4d3fd0caa525d8a8575a39e85afbe SHA512 06a013985c7acb8fcafcceb72e51feb2cdace469ec1018f2452c25f694725487b610497ee637c9d1a1d6be767d9948bce8e464ad22d7f7c2477c3c69881d5e36 -DIST github.com%2Fipld%2Fgo-car%2F@v%2Fv0.1.1-0.20201015032735-ff6ccdc46acc.zip 28461 BLAKE2B 70c59151d2f6e9d2bfa917e03bea71b87c9963cbe2249dd1dac71c06c580e5ebfc0525fddbf499b7e2d4dcb46668740b58d2ee61244e65841acef7fd06739da3 SHA512 ba8e0fc459ea8048e743f505e459342e90408aed4b8272dbaf63532f75bdb59a9bebbc6cd9e2da1634f4ed5bc1e8893d5d0c50ba937860faae107865adbcf165 +DIST github.com%2Fipfs%2Ftar-utils%2F@v%2Fv0.0.2.mod 86 BLAKE2B 55fb3cd544eaafbe06638ece1046bf4e314bb24c9963e78dbd56591a37d7163e0b810d2fc5c772beae7e849afbdd2be73ea457c62a9719512fd60e2ad95746c2 SHA512 b31ba77628f074ab9e6b0c7a8ea1a0608d2d9e1c17e346211f5fbf1a3be13dd9549759e18208abc949fb47cc2c8eac80fcc04479c861505708541d81fbe2a420 +DIST github.com%2Fipfs%2Ftar-utils%2F@v%2Fv0.0.2.zip 15516 BLAKE2B b2b8eae3129a1bec019fc849aa0db33cf660317432b3865e14d5afff945514c593e4ab594bc150d956211483b5fedf91fc0cdc3d18f033dd5fd7e6916c1bbe80 SHA512 c4df4ba03f1841c15c10982fdc2f3c9ec7588e74e75bd43477bd61ef2afc518d9d6e506743cfd574707cec2293787044a8a0d97a187cc9270226775dc068ba20 DIST github.com%2Fipld%2Fgo-car%2F@v%2Fv0.3.1.mod 395 BLAKE2B 81c9c75a8f356fd3a160c7a7624dd6a563b6fe3fae41c16c42c22ae5598a1b90f19fcc9903e011695a8b5cc72a2500f92a603d8ff841b6a706c7b86ac3583268 SHA512 3da3948f8da08fcc1998c083c82dee4465bd8ca93c89b9eed06dc1c4543ba24b1312531d8c16a9241069e7f4099efa5cb5ce5397968cc61b0f43d0997bf83c08 DIST github.com%2Fipld%2Fgo-car%2F@v%2Fv0.3.1.zip 32773 BLAKE2B ccba358b4e1a9eefe46b156aab9ea3c88ab1eb9f2c15cebef6b21e58bfd3399cbde129eedea935bd8ab360ea53527cd1f2960b41681718e8391a40e201077c3e SHA512 9bc1dee83e49f6cec8ef98870dda7c2ad3e6ef511c0bc4a2ddf110532e2a57b56babbe480e0df7bdb92e3fdb56ed431a73db19021f198d030d054e24368fd450 +DIST github.com%2Fipld%2Fgo-car%2F@v%2Fv0.3.2.mod 396 BLAKE2B 65cb9ca31425ac54d028fe17037cb4bf5a40768ad33443abaccde0844d90a2ae8b7995bbefcce4b33a714c3e0524dddcb8960ea25179d9e9a1e9cf10865aeb20 SHA512 07ce78e8f1ffe959c5b8efeb2d615ef6c3d8f6b02c92d91c7fbd9a23b8438ca0175903c87cd59b277cc7e1943e05d5288f691780d9f37d51977a5549bc0ed1e2 +DIST github.com%2Fipld%2Fgo-car%2F@v%2Fv0.3.2.zip 35710 BLAKE2B 37a24308183d95952a6d2c57598e6b36778c31a97122469d60f9d06cef106f719722049f3c6fe419162efbdb720b9d53f7cdf1737774b75aec89ac5c34871bf6 SHA512 3a1603d904b5d6dda10edc72f0934d1f63d500e9a6da0324a26c5ac776f9036d1d280e39591e9c9e1b8b64f89f8fe60618fd397dae50bf5fface0913755b594c DIST github.com%2Fipld%2Fgo-codec-dagpb%2F@v%2Fv1.2.0.mod 348 BLAKE2B 53fba9d9dfe567f2260ab18a9963b414492d13180d2d84fb1de87b498bd85c623c962eec0a0330204c13a4e43ff051dab726f2105b91777dc9914a97973aa9c9 SHA512 c1055093848794f73e17edc51a17daa2ca8f85a8e5e4eddaca37e2cc42644b0ef1741caadbe463dd5194fcbaac7168871950656c2040893a175be6f4d2ba0ce4 -DIST github.com%2Fipld%2Fgo-codec-dagpb%2F@v%2Fv1.2.0.zip 34190 BLAKE2B b87c33a7bf4d0fee4d245fbc493d849cedc40d8d6e6c176fdd50d400ced65456aaa341424bd3855c1439bd3dd6122e684744020a0449bc152483c64f595d8e0b SHA512 d28ec98f850d3e5c9b73e30f60f07c0d2ca7e9fd4b934a64bafe3848c336ad269f628b055b7669a7da83b0f8e493ba900cc9e79dc4bb900678bf6340e3eef57f DIST github.com%2Fipld%2Fgo-codec-dagpb%2F@v%2Fv1.3.0.mod 166 BLAKE2B 281a7e9f444c5ce9ae5970e457ec280182e77bbfea86d1d23c895bd1a4a6ee09a28d4f45396cac19f1a2c80bcf7cb35b3acf9bad9a4a4fbb14e633ed4910d2ff SHA512 a47e9d5b7c38c7527bd95c81ab61b6ba61d629985f1a861593648c6129ba46b84499838e1905cd87645afc6031015cf084e94140c2d4e853e0a06d7ad789d789 DIST github.com%2Fipld%2Fgo-codec-dagpb%2F@v%2Fv1.3.0.zip 34032 BLAKE2B a166d1275da9f0998deb1fd3443c2fdb3493398a856d3ed7b4679d22fd4ef7ff421875479d223aec9d898d7e6b7f40a8c7b86f07a91b08b6acaa099cfb5af2e4 SHA512 bc58792d2cc27b4dc5e587dfd608081b90692c15721b6383f4dd4e8a8705926f302f987f71116414e31946386749e0646e207ab321ad1dae2f65b13c3a430af5 DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.11.0.mod 355 BLAKE2B beffd6021bbb6a3a50e0d4f399441833900fab702e3a197166dcddc2fc9dc3bf9a8b3a5dc59add73ab2c486692938d771131c6f3227488e03ae4d958d3ca9e03 SHA512 abf5d9522b4ce8308643121ab4de329efb2d65f3c016ed35a7fafe3c9e0bf05b53dc538b95456460a8df008d5f3f3f89adc7c57769297f81a9e902015edbd4af DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.12.2.mod 441 BLAKE2B 998408da451951c36fb0630161437761f554f67abf70155030150dcf676aea29f322e6738f8bdfcd915aed841599831ae1dab4deee82490ed4148504b1ef8aaf SHA512 852d5e6ad743bfb91d9e1f393e79ed245308967b948090e0df5d56b83d086df3db89adbf115a3c3cb503d741b5a7a66553ae6e7527c3260728d9dc745f9b7c47 DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.12.2.zip 511411 BLAKE2B 66f63bac9acc17646d36b4d842f87343ec6a9b7863d8791d45325cbb1465533601ebd156a3b5dc2581aa0d152a548cd797583f18d484a1649f1fafb8552dc3e7 SHA512 48cbf8f2a3ac5c31290842cf145e6eacbd51b9c5bf5155fcde0fe4e1c2adc1c36f0ea91ee463f3987959bab366f171eca19f0fe5d0ba92a826195da800999fd7 -DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.5.1-0.20200828233916-988837377a7f.mod 498 BLAKE2B 1ed47d8d6a1637af85f7343a4a1cfbd201ee5de5d98e6bc6fd6a5a2faaf5be3321731cad628a63ce89b5581d83fd12290cc2468abf035c0086793c255194235b SHA512 da87f8c7dfa6005d5d610efbe74f4441334a3c32e5491a777bcb1bfedb8d665b9dbac06108763d036a771ee6f6ebc2fc8b2974e82cd5308be5bacc18629ba9b1 -DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.5.1-0.20201021195245-109253e8a018.mod 498 BLAKE2B 1ed47d8d6a1637af85f7343a4a1cfbd201ee5de5d98e6bc6fd6a5a2faaf5be3321731cad628a63ce89b5581d83fd12290cc2468abf035c0086793c255194235b SHA512 da87f8c7dfa6005d5d610efbe74f4441334a3c32e5491a777bcb1bfedb8d665b9dbac06108763d036a771ee6f6ebc2fc8b2974e82cd5308be5bacc18629ba9b1 -DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.5.1-0.20201021195245-109253e8a018.zip 415657 BLAKE2B e613d327611bd4854507139ff8fda064661b8759cf4e4e8135bd6329d100891cb0ac16acb38925b1aa53c4c9b1f29f49e2692c00f1aa76b6a6da4e2ad28d0ce6 SHA512 99766c8f02c4799d6dd8b5d5106142bf182210d65532f3fca49c7319f4fbd34294eda6515e567553541c34b1fa7a3aa04ac7eb94e74e99aa44c8da383c5c6ba3 +DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.12.3.mod 441 BLAKE2B 998408da451951c36fb0630161437761f554f67abf70155030150dcf676aea29f322e6738f8bdfcd915aed841599831ae1dab4deee82490ed4148504b1ef8aaf SHA512 852d5e6ad743bfb91d9e1f393e79ed245308967b948090e0df5d56b83d086df3db89adbf115a3c3cb503d741b5a7a66553ae6e7527c3260728d9dc745f9b7c47 +DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.14.1.mod 510 BLAKE2B 80c5bb062ab5cfbb2b55d255f76a72e03385f4056eed4f1e0621b1d8c907d028d4c40b2cfc1a6de240d9aa63d4010f9294aa783726a607b7cae9f44f88a9fe03 SHA512 97105946247ffa0642af7b1e9aae34a5a66da292cc08c7c0395e0b055f9dd11f1815e810a2adc0264413d1e721f55f605f5fb5f2c3667a790475b73ccc06c50c +DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.14.2.mod 510 BLAKE2B 80c5bb062ab5cfbb2b55d255f76a72e03385f4056eed4f1e0621b1d8c907d028d4c40b2cfc1a6de240d9aa63d4010f9294aa783726a607b7cae9f44f88a9fe03 SHA512 97105946247ffa0642af7b1e9aae34a5a66da292cc08c7c0395e0b055f9dd11f1815e810a2adc0264413d1e721f55f605f5fb5f2c3667a790475b73ccc06c50c +DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.14.2.zip 2270144 BLAKE2B 474f7c1dccf0a6727ce1b303c3a12880603847590d84a17c47f73d9a8ff548749dd0f98fe6b09c0bf4b39e2c6c9d353e91ce1574f3c06f43739313c2dd450d20 SHA512 fd686f1d8c27f72c8b7069eec78f0c0c10dac19ed14adc970d9831006738297ce54f64478770a65006df38bab7f59633b10819a0a9e8eac3016815bc40a5648e DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.9.0.mod 355 BLAKE2B 048945d113e6ec2c458fa06fa140d2584b7e78e792c9e73d2eeb06f614a49118c541630177e594150ea8673eedb244f363a4678485bd5d90ee9e0d565e4377cb SHA512 f0f8874410cd9dfa82197e722ea10cbafcc4d66cd79ca33d8ba1c5e38455f899b0e29fa09dc2e3446cdd7beeb1d679c3b40cd975125f1d81842977b408ecf8b0 DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.9.1-0.20210324083106-dc342a9917db.mod 355 BLAKE2B 048945d113e6ec2c458fa06fa140d2584b7e78e792c9e73d2eeb06f614a49118c541630177e594150ea8673eedb244f363a4678485bd5d90ee9e0d565e4377cb SHA512 f0f8874410cd9dfa82197e722ea10cbafcc4d66cd79ca33d8ba1c5e38455f899b0e29fa09dc2e3446cdd7beeb1d679c3b40cd975125f1d81842977b408ecf8b0 -DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.9.1-0.20210324083106-dc342a9917db.zip 620854 BLAKE2B ddaa0f3400c10aeb9143b24ac802e2f26739c798ea1d408fdab14a28aa05fa73cc25b705c9c6e4c17a54952489d381bf1424da48a5cfb0ab5fbbe9004efb962d SHA512 cd8b124f7ad55eecd13892798536d90f54f2bcc50c360047f369a7162f2b53eaa09dcc3aebd68aa7d2b08654b6786ca6c552f6bedf55a333eb010c78012fb9db -DIST github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.0.0-20200922192210-9a2bfd4440a6.mod 789 BLAKE2B a0839ac582b93d6fe328643f9a5e9c08cd09fd75a5f3658b8ea59ea9eb4bf069eced10b70b439db25d14b970f763cd494131a8dd490e446a65dd1c2390bd65ab SHA512 27a9619bce04da0200134cc23edc13ed18f3b16e672f7ca1e6b97064e089aea2b76bf42025ff07a07460654220941f1a717f79649306e7e4ba6869471417b6b7 -DIST github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.1.0.mod 735 BLAKE2B ee0e981b452661b23a3f5256e1260adbf467e3d21eea4aa3beb78915a5bd66255d94e2bb867733242ffa8139ec9903baf1e224af6098ae9d29a0fc00c6923620 SHA512 198e37b69a4f0e61e1bd023577f43600bacd4b88979f7e638dd436da5a5e7ae250a0f411364fd81710398a6577fc4919949be775a19e422d7745669e4018e2ab -DIST github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.1.0.zip 54131 BLAKE2B edc451731cddeb42e00c5cad8a45d8d602b60c34ea0acc03cef8494917dae89218be1c79ce5306d0fc9f4e14dbaae164c0d0f8e671925d914b394cf055ace329 SHA512 d9b3e580396f31c092a826566e1b99858e288c55d46be06416afbd9b316305a04c627cb9f6af8d37d3d80255699a60ab3939f93bfbf75270bbe3c31822ebba0c DIST github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.5.mod 34 BLAKE2B 696d74ba109247fd088f7ff14db1ae77a4a755dacf04e355aacd8c11e8e2646c2247f3f3ac947289a36f293615d40ae25bd1c3cab656e884183c97e46fb44056 SHA512 be55172330f6088410e969af6a419b9d30e8dcaf6f1c240b55e97df38e1a8d85c8e84ca1ddeca2075f171806371fa524187a24945fa6cce0e8612acf97ff60b5 DIST github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.1.mod 37 BLAKE2B 6679d72e6167e53e5fab71f0359b872603f59f3847be944ac7350fa68c9c6fbf600187d168b666cb491f45ee9b07bb670026e4e19a8ff80da85417240dc004ce SHA512 9b33a2f10bdf31fdda6799d21d19ab5b0d4b6f7945d06fc56b73c8a73eaf7b3bb786a8992b0b5a98b178ce5993dc3ec6fa87f4a02c65dea2222a1675cae518b2 DIST github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.mod 37 BLAKE2B 6679d72e6167e53e5fab71f0359b872603f59f3847be944ac7350fa68c9c6fbf600187d168b666cb491f45ee9b07bb670026e4e19a8ff80da85417240dc004ce SHA512 9b33a2f10bdf31fdda6799d21d19ab5b0d4b6f7945d06fc56b73c8a73eaf7b3bb786a8992b0b5a98b178ce5993dc3ec6fa87f4a02c65dea2222a1675cae518b2 @@ -667,8 +666,6 @@ DIST github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.zip 6553 BLAKE2B 71b7387607 DIST github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.0.0-20150120210510-1bb1476777ec.mod 34 BLAKE2B c2e16dadb99eec1ea0e45c4e1d08cd7e19b67797aedae41a8b4ab2a84cb8ba4c3468cbcda4978b12be555567e8fed4373215e0c3a51d7aeffffa2d2110f5adbd SHA512 dab936b3de2ed8fda8f8355ccfa5ca364774a76ca78d6936bfdc681d4ad12a9a0503f8bf9b4b6ab12823950de48ab461dd5878fc5f4e61d986f3cbf6e6ff165d DIST github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.mod 43 BLAKE2B 8dc289c9597e0303cfb6928efc2131bd198d151cda1bdd430b17f5ef28be27c54975bc3678772e7d7ca9c8c4978c3b714b1ab80b2869433a4102fe07f4069a91 SHA512 c38867e02b811c1fae7b8ee41d115a3406b05a8866e4c84254be52828cc67651e29955fc34dc6ebf1912ec99cc43aa5fe8c5a219f148df07b4df43993f24559d DIST github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.zip 5147 BLAKE2B 40ed96ec164fea71d79cffb2e3bafc8247a16a0ea098e40ee15e6d46015ce136e467319e08fdd8e165fa664d09571f60fa25ebe82be2b5967b963f98517fc4ea SHA512 c65e48c4ac6e1d6035a5b6d83742f39f71df7d21320f7ad5699b52c0c143c30877cbf4951d0a0e67a45a0a22b3e56ea04c114a09db475234c52d3b41dc760d14 -DIST github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.5.mod 47 BLAKE2B d2251e1b572e075999fa2507c8ff93170dedde449b9b3bcf8c23c22d986753daaf0413058edc7bf8c0b7afa14a2bdefbff1822087b16691a1e4a5e40b6928fec SHA512 4e8155cba23b0bed4292067c51601d3e60da7ad8b3671e817ab8d264fe9458180c7bc98682c0abafb5d67fd36c6c839d50fa2270a6905be96e126aee1b05b2f7 -DIST github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.5.zip 13418 BLAKE2B 909b312b86d6cf9e9e28cedec1c1d660f9abd240977b36f205d1eae39ad71ea06fe70677bb397a1ddaf3bdcbfc12c365393381398e0e7544e85c726d5a2c3954 SHA512 c7e74692470775a1f480006a8f9964020b08182ee88408bf0f5bdfbbac7605567aedfa67d270d00841b3606a51cf8a692abfe3faf1cd2761e6a5e54df062b49a DIST github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.mod 35 BLAKE2B 8464955b40d739b7042c889772a3f339ace8349ac8714472cee3d9a6bbba974485e32f39f7ad90ecbf8594982ebd47dbf41f80127309620773d0a3a0f5e5e237 SHA512 6d4d220075f976723b7bf6988bfe0a24fd9659f291f4880dc82917e1609de11f65af1a19f596b0b3e564df8af2334a2f1105748ce9b00093e85be3b4cdb7eed4 DIST github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.zip 5144 BLAKE2B ad04ea68e7fc4141abaf66645280bd837dd143072329f678223b10f61a5482ce437466f1953511cec249d8a32117b53d3cb626f9dca24eb4af01f94ac1d734dd SHA512 a17226f3066d1d26dc9f33aed3ef3788caec37d00714484da2237fb9fe6952d7b01774530e2ebac976a869438b32e500045e60921bff8378bf475096ca492463 DIST github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.0.0-20150120210811-aac704a3f4f2.mod 45 BLAKE2B ecfef6e38aed40dc632d320effebd8e52e42d1325f81691d03bb11979c7c07566e1bdebfa8f7751561026a0ca8c4213414c8c5341ae058d4ac2baedad668bc56 SHA512 39fe2d35ff3d163620e01b24eb4c39b30f8bb109b8ac89f0a61bee604652c85cd026399a35e37910b57a445041d4a1a222455086e44e66d1938ceba0af155eb3 @@ -708,32 +705,30 @@ DIST github.com%2Fkkdai%2Fbstream%2F@v%2Fv0.0.0-20161212061736-f391b8402d23.mod DIST github.com%2Fklauspost%2Fcompress%2F@v%2Fv1.11.7.mod 46 BLAKE2B b5879e59b7061f16bd04702694188fc8b148c5089aa7a3a195c9fce7c349bd191dda7dc3172f88f0d546cb8c3eaaa82eac73720992509baad59757c740d277f2 SHA512 55b1b23e692eed7e5cd2789b542c27eb85c019460a1ea75bfb31802263328b53da1a466e4b09085e4e002dc699047bf3ef5ab003022a6182c9b762e0b812febd DIST github.com%2Fklauspost%2Fcompress%2F@v%2Fv1.11.7.zip 17534766 BLAKE2B 9449a00a40cad1a8926576d04ab3da6fb68aef403d207f22878ed8ef42c3e35e5b66fa1bce5ca674eed715a218e637d9b3b2721f1234d076f11fce719f8874df SHA512 4fb82bf9208a83e0a1ac5d9fefc76a4f4c93b46acf6a3eb92b8280c2401a590747542d7af29828919bb3fbb1bab9679d94978aa3d900af7899fdf1bec81c9e8f DIST github.com%2Fklauspost%2Fcpuid%2Fv2%2F@v%2Fv2.0.4.mod 46 BLAKE2B 1b395032bc9be34d676b49f478c04109fe1dd010544690d6c1bdacc28a17489dce66c8edf61ea9de139feae36bf393c0180dc2f6b73d54e5e0884a7fdbb25b37 SHA512 16bc59642bcbc705e57b1862066193a922b9c98b271cb1b2c3b98886b06d7d5f6e73b272e61432c809b569fd9715ec00725266f5a4954e0812855e093cd87093 -DIST github.com%2Fklauspost%2Fcpuid%2Fv2%2F@v%2Fv2.0.4.zip 347138 BLAKE2B 3447f59486cf0aff3aa1c0a436e0a44382bbe1ca7cbaeb85b14f10cc22e2b4d982aa16efb50467a03bbe7c425f60cfb5a49bd691d60563bd7f4246d7ca1caf30 SHA512 2f1b25216a4da6dcd67521efafbd422208a92b99ae1f01c7068289c3ba69cea7e6b0888c77a8d6c783e0faf7f73d64e91a28c8d9eaf8dff29e55a0fb701f7a7a DIST github.com%2Fklauspost%2Fcpuid%2Fv2%2F@v%2Fv2.0.6.mod 46 BLAKE2B 1b395032bc9be34d676b49f478c04109fe1dd010544690d6c1bdacc28a17489dce66c8edf61ea9de139feae36bf393c0180dc2f6b73d54e5e0884a7fdbb25b37 SHA512 16bc59642bcbc705e57b1862066193a922b9c98b271cb1b2c3b98886b06d7d5f6e73b272e61432c809b569fd9715ec00725266f5a4954e0812855e093cd87093 DIST github.com%2Fklauspost%2Fcpuid%2Fv2%2F@v%2Fv2.0.9.mod 46 BLAKE2B 1b395032bc9be34d676b49f478c04109fe1dd010544690d6c1bdacc28a17489dce66c8edf61ea9de139feae36bf393c0180dc2f6b73d54e5e0884a7fdbb25b37 SHA512 16bc59642bcbc705e57b1862066193a922b9c98b271cb1b2c3b98886b06d7d5f6e73b272e61432c809b569fd9715ec00725266f5a4954e0812855e093cd87093 DIST github.com%2Fklauspost%2Fcpuid%2Fv2%2F@v%2Fv2.0.9.zip 351398 BLAKE2B ec230bd757417694d5613341a3cce44452f474072c4c256e104cae8e4af678d0a842d8a165ff0f659f160d64a1c728a0f8ee7bc3b60c5ae0abb2632e853a1cbb SHA512 c1c7c4e02e26fc371a7a058ecc50536221979fc63d2be80929457a90a18ed6621fdab89d8cb70505bd87f87484da5721e8c8148e572f33d9c57ac8fcc1970e7f DIST github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.mod 58 BLAKE2B 4cf48282c28d2b8237fe9ff852ad25d102cce038fbd1852a1938bcf69c895df05dfdef6e533b3c0b4da28103eb5e3a9561f802414ccdd99b2d3ec2e2db0807ee SHA512 fe33ca4de6588b95f0155458b8b6daab218553b58de5dac220efe54019dfab085838cc6a22012a106fa36a6094447f744825cad04aaf0b158fce5aa676048fe5 -DIST github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.zip 3567 BLAKE2B 80b7bf217df9367160180d44c1fab6a9f10154bb9a6455538860158a08c5bf8c794fff973b899b1376e4e65764a9aa0d6b8b162a6d9ebe1adb1368b9a2a42786 SHA512 27910ae03fc9fbf573ac31454635c43bfd771d2a91325eca544f7be0e24b43c2798ed8e74b4c31e8c20c1a9cd266b835017aea3a3e24c2ecb43a14a6143af8e1 DIST github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.3.mod 58 BLAKE2B 4cf48282c28d2b8237fe9ff852ad25d102cce038fbd1852a1938bcf69c895df05dfdef6e533b3c0b4da28103eb5e3a9561f802414ccdd99b2d3ec2e2db0807ee SHA512 fe33ca4de6588b95f0155458b8b6daab218553b58de5dac220efe54019dfab085838cc6a22012a106fa36a6094447f744825cad04aaf0b158fce5aa676048fe5 -DIST github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.3.zip 3966 BLAKE2B b638ca22c4f9df8cce5b84837e4f72b009c1ead300c08807b8268d26f04d6cc5476d9af56f676d8f4ac046c78c333614670e0853bee13de3439b5d89b96bfbb0 SHA512 ff98f8c05d8e23fca69ee5ed780e728f9d1779ab55cecd16bff890a91d14af81ae7a0304f34b3e04fbcbbb61e3c97c044dd9c190bd8359f3b19bdd31f8a37329 DIST github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20180514024734-4a0ed625a78b.mod 32 BLAKE2B 08703857fc49c129e7dab411d216e6127d8918cfebfbe4f1ce2095eaca41d1acc2c7471571ff79c77b7494846f44c7ac3ff6402e4e4b9b8dae1ee4268f44d6ec SHA512 5d586ffb024fe93b485e355ab197ddd7e3743e87355b94296ce42c6761f6a8b3a31d23787429b4a9e52a6f657025ec573942a7756a0ca5387007fccdd2470ac3 DIST github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20191105050749-2e1c40ed0b5d.mod 32 BLAKE2B 08703857fc49c129e7dab411d216e6127d8918cfebfbe4f1ce2095eaca41d1acc2c7471571ff79c77b7494846f44c7ac3ff6402e4e4b9b8dae1ee4268f44d6ec SHA512 5d586ffb024fe93b485e355ab197ddd7e3743e87355b94296ce42c6761f6a8b3a31d23787429b4a9e52a6f657025ec573942a7756a0ca5387007fccdd2470ac3 -DIST github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20191105050749-2e1c40ed0b5d.zip 16532 BLAKE2B 5281687d4195cc7ddd62fae6c46909fbf4eb09c8e878e456f84c3b2c3d97966a06917543ef76de776ca341d89284d19d8fa5ba162107e231d429d25dae0b6c74 SHA512 de2a23b80bf7b8cafdf7e9a9cabc51b4440e496dfe5c59456ec224a64c97341811ca0a9fb07e9d70c0004b9c52792510549702cb832b435935f1accef4924375 DIST github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.2.mod 102 BLAKE2B f2f67fd2720c216fd4e755cb40e667223e63dd899a471b7779e51862ab32ab5864313af03775bd019af674f69087e003db0ef3a431205cd8664ebd81a4d4bcba SHA512 aad6f05e2150b279a74fd92affdd44909ed77e0f8fff24b0c09d697b76194cb2f0ced14119046e5d6fd08b6b211ee3ed2311c760be54ea7ffa95ff61c6fcca1d DIST github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.2.zip 21655 BLAKE2B 2febde61f9c17e1e14903ad405ed5cc22844fc912220b0db6aa4737244574258405ac6d7b57718d293ab2a63db71f8f90e4c0b323112b801e872ce14dc72bdd1 SHA512 7ad2272d794c2e2a3ad27e98df1bd06d1cbef575f72d91f0764e331d6c695b2a5a97213e60b085a177f45c2d08b27e2507ee6681edb66e083e9a89fe559d1123 DIST github.com%2Fkr%2Flogfmt%2F@v%2Fv0.0.0-20140226030751-b84e30acd515.mod 28 BLAKE2B fddd4b3cdef60f53bc3f8da5a3154d10b49dd180c12837d3740c22b442947cba2025649f3ac7321bcf0c73a272527659b0ccd9be141ddca13caa7594bf6ad3fe SHA512 3c623d077e39697506174a50c0380cb7787a05a52819b1a73c2f64ba8dd819fd500777de83c83d8d9e80f19c828128a569b4cd783667b4d6b9a375b0e3d527a7 DIST github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod 67 BLAKE2B 2e1b4a8a38998179a32db321d331db54f881770a89719410876cdde1799cb8558ca2862bc70838d606540606d05918c4b115cf1c125945a77ed376c2efc4aa85 SHA512 4d841fc7a022e4e09e0a95925ad92a75809a67c30fb88de9190e4a2196383038dab9a5b3294b6a0b4786248977a0e09eea857a34100cbf22f8a52912ce9fa58d DIST github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.0.mod 72 BLAKE2B 8dbfabd447cc847f4616b959e52fd3bfeef8dda58f5aacdfd362f28d0b530c8e1651a38ae742c2d9ad8d9b0a055409a1840664b1483df73956a21190395b056b SHA512 b920109a2a1f40e2c7bb4dd93d07138228fac3064b780449a38bf5e6cb0630c6b7bd79eaf18b35e0452846e5059b0e192682b0aa93cc563c6120816106b9f11b -DIST github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.0.zip 11505 BLAKE2B a0c7e576801c150d9eccd27e0a36304a931f9ed53da6e47f69882cf78cadb4e61096d2c748d1ae5bd5ebad26f5f4c2f37cb0b6e15de0a7b9aefb0aab86ce4134 SHA512 0dd52dadb4327839bd37391c19a9e008b2345f9a61356323ac79fa0abd54e23223d7e5568562f26d937ed05171a3b63fb273510867e612e2eb1cbc44ce0d8928 DIST github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.1.mod 72 BLAKE2B 8dbfabd447cc847f4616b959e52fd3bfeef8dda58f5aacdfd362f28d0b530c8e1651a38ae742c2d9ad8d9b0a055409a1840664b1483df73956a21190395b056b SHA512 b920109a2a1f40e2c7bb4dd93d07138228fac3064b780449a38bf5e6cb0630c6b7bd79eaf18b35e0452846e5059b0e192682b0aa93cc563c6120816106b9f11b DIST github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.1.zip 11508 BLAKE2B 609b34f41f3c1579ae15bbdd5f9632dd58e9082917acce355ffc5402c33ea45bb0bda32d009a0a58c6cd60327aa87008453e0c4c36ed2a1be41c4f5337de72d9 SHA512 0f792e6f960b0cb8f9a30c25d3a3f30e7c459a05d7f03f68c98cb581967fc48b377314cb83b990c9509cde5680389bee0ce2b0b1efedbceb5592f38a9ae6a3ec +DIST github.com%2Fkr%2Fpretty%2F@v%2Fv0.3.0.mod 117 BLAKE2B 9ccb63ff370cdbd49c1179367a9b5d234e4d58c530f57ab55857d55e90bec47c5ca2bc980dc2d925cab11cf3908cab0d006c873eba1e6100d7164fbf95f5c0ff SHA512 3a55a2d745e3f04e4554ec076885cc26add2f6a840799b8f884ec9074ab13985cc50b4bf9ce7c8c32e580b62b376138e5ae66cc4df6e541bca3ffaa930c94421 +DIST github.com%2Fkr%2Fpretty%2F@v%2Fv0.3.0.zip 13000 BLAKE2B 40fce1093c891f37b7937eded86461195963aeeb52c960e5723983f7861a63282b6c1486a836c202ca2908843a2af67fc94f77fb3a6dd841c134cbcccb949da8 SHA512 602353980e28baaaacfa3c739f4a6129d831eab4a600440051930ed02a7d000ea12a97d7094f4502ed88353702a2c6847fa842806955790cb76a1139e262f2b5 DIST github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod 25 BLAKE2B 63db8520df2f699bca5a7ccecc44ee04973307d86099cfe66ded30e2ca1bdd76fc3db48cfca0138673c20c6f94061caf219f018b21b9d67231fe959eef338596 SHA512 967fcdce835c12afbf3b12bb204a256f32d46a3da535e2a7250159f62781a163ee107dd2a4fa20743b76bbf52b97e627e11e895c8d5ef73aede37d6a89e326eb DIST github.com%2Fkr%2Fpty%2F@v%2Fv1.1.3.mod 25 BLAKE2B 63db8520df2f699bca5a7ccecc44ee04973307d86099cfe66ded30e2ca1bdd76fc3db48cfca0138673c20c6f94061caf219f018b21b9d67231fe959eef338596 SHA512 967fcdce835c12afbf3b12bb204a256f32d46a3da535e2a7250159f62781a163ee107dd2a4fa20743b76bbf52b97e627e11e895c8d5ef73aede37d6a89e326eb DIST github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod 64 BLAKE2B 475c51201a379df2cc4ff8c5681b6a7a1524f60d0b8fd0853fef569dea754efabf3425cd4b84e8427db8a6cf3e9b1141d5050d48d5d429cc1ce82162aa70050c SHA512 11d2502a7d241a0edf4e67bcb651a890a12f49d00f8b944cc9eb8f6e9cf5fbb2b2827e696021649bc795ffa275e95ee700e4a1706e03e88fa9ae079f5b9f48ce DIST github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.zip 12591 BLAKE2B 944b0b9a802757e78e3dfb11d6c4d79e0e0d90489d49262b7079e6ea4728328457f8773b392c8a618aacb5fdec78948a16cc852eff71ca6f4fb9eb422c03890b SHA512 3f0d00b0545769ad882e25a9a6f30b96ce4b72a8a46bb3c064907c94e2dda4e499eb32354c149f89752f9bc5d1ee5cb2ee5cafa46e2f65ea329fb432d0c0029f +DIST github.com%2Fkr%2Ftext%2F@v%2Fv0.2.0.mod 68 BLAKE2B 91222794e2d517a33cb43bb9430e2e7b497ace820ab8c47dcde253226e54f08b922404df7ba7a2dc74555a059e95b81471dc36fc5b63b55e385004fd9a16d61f SHA512 9fbff125d97ce2c4b9b301021a987edbeb686b37927504df4e5c2f0ddbebc8ed28ee5152de7db2eceb0a0fc5728579823dc4145f36df9ba1961b9c2da1ac4461 +DIST github.com%2Fkr%2Ftext%2F@v%2Fv0.2.0.zip 12607 BLAKE2B 40090e35e5bfb0f1570cc11a3d3c3b6f9c4d097ffadb161280ac4dda90e7b74fe3784dbd31a74be243a2a0d6f3f3273f24a0dcb07523c7db8975171327de25d5 SHA512 5fbe5884d311244c5250d4a1b249749a84fc6a50d4d5d6b3967a4bccb317ebb807917fe540f13fea788abd863d7d2f2537a40b57cf156a3f920b15cd8b365ac0 DIST github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.1.mod 215 BLAKE2B 5985386dbe202af63b85e4c2f8cc314d7c52c351e23756d21237e548bfb7e671dd07474836726e28bf011e34af5960820769f4e215f68f76f7d322f9731c6908 SHA512 e8de94e6e8493287d759f1cdde1aad773baf7f0419e1e8f3483fb9c3b7fe32ba4c95c193f322c82cb7c0aa7df6aacd6083679fd9b060c7bfb890fd15b4a84e9e DIST github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.2.mod 185 BLAKE2B f1c386524ba3bf35fef03ceac61aa01057c1a3ae40d9bd117bd32db490185a6f1e82ab7ac65bcb51e1093db2f569e18a52b0c5ca0b587d8510e7369ea3af33ff SHA512 e85f16734a43caeda0aa046557772ecd98bb75152a1fce2b70abe95d18db65e9d1bc85aff943a0a9b6c7d335358b4764e8a4f834419af395a6f5dddf19fc1743 -DIST github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.2.zip 11443 BLAKE2B 1cccf7f07bdeaef7d24c7ce7476ab4cbcb28e6be1a1db20aee7ca06f20fd7e74217d2c4859e71153a47d16aed5ef9a1a29a73c2117500feed8a8593b710461db SHA512 e58436afdcee50c6f07c827a9cfbdeb1078435c192d0adc5984a9c3e658610fb03d94457505d4500412b9d404516376e6edda2835deb4b1400dfb6bf42c3d113 DIST github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.1.0.mod 136 BLAKE2B ece31fac069308c6f2c5e3579edd8eeea81baebd5b9f834290684d7afc49bd10d53181dce5b90f8f820b3e7eadbd5c1d41b89fa57c7e704e1196a7fca6a3f7a6 SHA512 e159800886a5ddaea075340e8c5a1c57ac29f95ad66f70acb89060cd21682f63c65315bcb6e52f6c42e92de01b0245591b395fbd3b1320d60d96464536147b84 DIST github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.1.0.zip 12865 BLAKE2B 498161692c830a7137b5bd97768036b32cf0a6663a02fb0caada42b052f290f7d3a6b3f79886602a8f0e62d099e7224769e03eb4018c24de81a61dc7b907f6bf SHA512 0dd6b04c86eb07cade4fddd51a01999fd35ac4dbb8a2f7fd63f8fe30f36ca5971d32dd749e2ecf853fc181cc6959495a221a58f9c5df1acab5426dcfc8a6eb36 DIST github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.1.mod 40 BLAKE2B 9450ce15c5660f81e3f94cce868daea79d498081eed118c045deeb16bcdd4e1a033748417305cec3f0f69fe27122b1c8ec63a85a129ab309693a7e7c453d4e7a SHA512 27997073dfdcd779c6ae7ab9540d417af8727f96aaa0b82a4c8b4f38ac32083d19cd4899288c72a5028f54fda674612c5c0e54cca66db0bd5b29c3f0c9be45ae @@ -745,9 +740,10 @@ DIST github.com%2Flibp2p%2Fgo-conn-security%2F@v%2Fv0.0.1.mod 179 BLAKE2B 7b2bef DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.2.mod 198 BLAKE2B bc7d367a8c184443a2e30204a9cbb409c300588e108531344278f731720c948be6fd87df349d57429b8a1c279b0d87c05913d6c19a5e8171e0dd2d9ecf61ec2c SHA512 d43df5e3689888d049fadd8617131ab88eb527f04a620f1a228708074dd6ac0ec8c1da47284f7f8e65a1dd50a94aba000ef85cf8b2747364da00b581a8de6f2c DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.1.0.mod 208 BLAKE2B 20794444d02f60b38a593a33a82fb567bf4588ebefa570f49349dcbe9eb97c9848e76f35d560e0ff90e128069c5475e0c72b40b1996129035938f2634f3077f0 SHA512 c8689cace50665d64a7413c36c3bf32890b673cc6dda315737d94b5d7380c0428b34ec4b37ab11e523233ea910784470ddf17c79b860e61c9241decd64601e46 DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.0.mod 208 BLAKE2B 1d43b5733c5aaaf5d2a217314254acbe7eaadc2bce6bc6f08c80ca53f1cbf2371554a5512d627908fdb26f8960c96806cbbb55477d5b54df2af3f6c8f6070f51 SHA512 bbfe4be3a4da09b40b18df9becba4511fef6494748e6126dee6515b186a1c964cec2ae35ccbf2f8be3b21d3c8fdeb0eceec47c26ae7556d52f6bf1ba4402fade -DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.0.zip 13661 BLAKE2B 130a82f254776f0b72d8ad0d6f860532bd1e231d3d1918f4e4b4b23029802ac1a879c90b1e92a4f3f816f17387c96a32711fc3329c5374464f9534659a769114 SHA512 c48c5b610eb92ef219f9f9578a3486b901ac73cbcd12214f7084814c0985461e3d7847f59772b35e81d1f4f25b88f29b989f5dabfc81b9e50f85646f335f9e6b DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.1.mod 208 BLAKE2B 7734ac1096e2482b985f106959e76fe3aa0b5307ff927a6a422958a55b93022f6d258a4b953fc84de803e86a95e0373f9784ed765d817f565002e0ee70460635 SHA512 154d6483aaad2c3628ea03ee89fb16bdfb879a4bf399fbd54a80c5f10d38cbc0e236c6f5291c59ba0bf75c1de5c77537b60ce762c8e37203dafbe23148ef21e1 DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.1.zip 12654 BLAKE2B 7e865e6522542998c0ab278ea52377c503d432ea76d374b320c19368c8adf13b7729638d5c160a430e597f78baa12cd214811edca71f6e33ba4872cd598f5631 SHA512 66120fc027926f10693005c47c8e8c939fc0cdf3762a87fdf43082b145c67257b7da026ecc1bf05e017348f587eb555ce81b1b880bed904c783547351764999f +DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.3.0.mod 209 BLAKE2B 312d7ec0a2bfdcfca8defdeef6fc61ccc376c22ca278c411c1799ef02b260e4a0b6b926ad34f039b38df4c4320ae5650bbe0560277265d6876937abf153c1670 SHA512 2509198c1e4667e328255f3afa642a91f519a63d559252e2ea21930586c06b4c44a1ea8ae6cf52a0a3f3c179a85878b7fb63e663669dea799bfae617e91502ff +DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.3.0.zip 15134 BLAKE2B fe46c0fe356cee7d47f14f90b050f42fcad33b4dcdc96888f77cfe1f4f11f25500bafef9b5f286bd5f86d83fedcc3d6986f055df6f9b103c81cc723bf1683f17 SHA512 b8a3a9a039a51e0de49f16f8aaea5a390e23933d9aa374153d08112e07f5cf0b5c869813e00a181222766482821733bddd46e74f71d626dd4e2836f2de077d0a DIST github.com%2Flibp2p%2Fgo-doh-resolver%2F@v%2Fv0.3.1.mod 243 BLAKE2B c05b737f4fc2cc062b02785732421c6de788392bb787a663358f038801ef9c7c8406d4c694b81db87624a043cf4ea7b04e9e1bec500722b8e84fc57f998606e2 SHA512 5781cc4ccfcce49e1ebf1eecec7114a97ac476b80f7d1f365c0d7a10e1e8bfb199609a5cab6506cb14402ef04a3f822d7f6a2f4fec541efdb28b1c5418ac3694 DIST github.com%2Flibp2p%2Fgo-doh-resolver%2F@v%2Fv0.3.1.zip 9355 BLAKE2B 2228f8343aa597e9e45513c41d8a79f0f39d6a5f1fc7c6f6b7f1739bfed2ef33db68e0abb3c407c2e99e0c7fbb8c187614a7904e7a19bf03ecf291a0bacf917c SHA512 8ea0f4503df87488d5775aa09a7a5a2f244c264b09fd4584a670e50423d87fe1ccef57bbc0fdfa3b28e2fc914a9810c2ff85a28425713410ed7434fb43545718 DIST github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.1.0.mod 144 BLAKE2B 8047426b39d3a8159dd07aaa35af00ff9a08e17fb4b55d60d9cbd8ea17cf89226b58bd58af50b2322396fff67c97b24d1b23603a05155e093dc88c6327ac9206 SHA512 66993162120494976016ef86b65f52dde96349a0fc8d48142fec9d5006daf9469100f2d7661f928faf81e7ce83f21d14b174944d7d83419efddc03de81a9ee7b @@ -762,19 +758,21 @@ DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.0.mod 1488 BLAKE2B 407010dbc215 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.1.mod 1488 BLAKE2B 77fac695a85466e05dbf4a8fa77669aa09c61fe208cee6eea34a9757d7ad6b3d6b045107ce6daf3a2b1a6c32206a42dd9e9d610875cca1a565208a387daf26fe SHA512 a32dfa0bd6f3f4f904390ec3458b22c3cebfd2af0243cad06380f2e7c5437197080683f8e1f491ee42bfcd349767880dfff15044c83fd55d887fc0698e398a59 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.12.0.mod 1761 BLAKE2B 7720141c562701be20404f928f467e7f999d71f7eb64786524447d06eb36a2a866e69aee287bab83ea8ec1542b62c6566462bc30d4d24a8aa300a4e099a95403 SHA512 1f5f67f134f31822e56b2e70ca6946178528c1e249a378fd4b71a6fb3cbb4e83a6db177ae3c83050824e39d4c27305da3beeb7040ff582e02753da00ecaa5494 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.13.0.mod 1761 BLAKE2B c9d3f36fd3dbcc42c1520badfa9f90444ff30c7736760ea5f942b49013fffba13a7507288f7564949b848d3a8e62169f7162afb1c2e24d259a387b94e35aace0 SHA512 e78e508a35b3124de7ec7344cef23cebc44ddc9d244f52eecb877b8fcc7cbff2e5aa6dc28a4d3dc9f55c9fc4da306af05e095d298290ad5d0e029872e06659f2 -DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.13.0.zip 163303 BLAKE2B 547eb5d2e23b8a3612c0d6cf2a50f1275b2ffba7dfe53c1d33ea556d86a7bda22c42c680355fe4a11dcc27f4d987639e7cb71926c0134214d307fd7d3ca5c80b SHA512 075236e05aa77df9e6415462285d244f71fef6d03bd09af6da5a14011b19e60c031d321391a4e5aaa3d4d4e03de5e5d0c02a5e25059094206ab74a0bfdd612f0 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.14.0.mod 1753 BLAKE2B 3b393745cc775937784aa97d5d7b2e4f59e7ee0d407c2fc3a2362e89472289985fb8a9dd041d6af322f56d2f386d10562781c6e3acde3514206e6d3e47737623 SHA512 123822565c0f4a6e49e62e07907b9a68f2a8769e8ec1284f3c68fee2668d0d329b0c2bba9241565e03222a90296e892cdfaec8a1164dc77d3a8fa6d089355ff0 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.14.3.mod 1753 BLAKE2B 179e778793c41f40594929f2225f736fecb15eeabb306c2b2e1f00282729c7e5e2d390b308c98d34d00a7d9cb12adf559dbd88fb98e15b27da1d76b20ab988b0 SHA512 dff57b21493d89e6d698cf3cdb8a910e0cc90712f6f92bae1b7fd6c104f87aaa526aed6db920b33f77ddba84d8e20f6f021899741e81fffadec6efc3a8a082bd -DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.14.3.zip 183282 BLAKE2B c3d38f4711688036b9fb64d4faf2cb05aed1ef0a22ccd3cb106bd921cba76e47ce2f8dfd933dc35b74d41d432c5b951fbdba459c7e70979eaf2886fccaef79fc SHA512 e98879cdde8a0640fd63bc4fcc4370ef3eaa03ffdaaf446b3d32a7d125cc3de4ec2ec2537392837cdba5a54231daf5199ed78c56e23e4ef5110e1f9e0cec0b00 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.14.4.mod 1753 BLAKE2B 2d9ed68a3199b0beab2a76413a27d176f24045a975225d1f3cbcdc67503c5582dd291890a7275416a25270a960401552b1c4a9f984381c2b7a3987a101e03334 SHA512 0bee3d7c90008fafea24a0c715d901463f62eca4ff9053c93c0038eb7bee32596cac36f4368c288602ea62606b903949ba7a8ecda7f41f9a66487553a1b2c4cb DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.15.0.mod 2520 BLAKE2B 4c120d339c4aa861944e970d040cd95ecb13158fcda801ce32b45daf3a6d9ac8b7314854c238f539f2aa5f55c100975b75fa21e00b5ee3df90fdeaa8e322958b SHA512 8421c8d7798225218795b65c3b67cbdc6b36d6b40af1893919bbf73bc23db4f5dc27ee495c3631ec6481114697de2b499700d82cbace56a11886e50c424ff642 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.15.0.zip 193221 BLAKE2B f42c4b6b372ea26e267c1f7fea2f8cb077e68548bb64efd0c27abea1b3cd9fe7c025ac2dce0b7d9f6cf8b55329b12d23be0e0ec5a5a67221ee37f4ac37f977e8 SHA512 891950c4c33a4bcb21f8a7906eece1fb518f4859b0158d67709d20a5a4a0dfc392a8344b83a08b5fefa49b6451d184be30c6acb496822aedac94b03328578cb9 +DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.16.0.mod 2639 BLAKE2B b24bbaefe7605c0eb10dadaed3542fb01f25977251c2e7cc2bc9b2bf54152ae4f3240dcc0a49ebd73a2ed7c3dfe4801a91693e30215884df6dc821d4468144f2 SHA512 59cf9d1d8c417f48a12fc27867ddc681580386ba6af30aefc4d013c9bf7f9f0c69274a3bddc12cf4db108ae44103ce55e1e3cd23f854d13d84ed208d5dc6f8be +DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.16.0.zip 257951 BLAKE2B c63a74fc574354534c62f7ea72e379a902ca0f16f6219413a1526176575cfc67735c0d5c35e513e012296aabf44015b2fc6cca6b315726ec4b3de57a81144576 SHA512 0a06a75a68775af57abc805d5963b5bfb6077193491189f8a1548a0754bef7eb7a6044944130a73214c3ffc4ef29e91a1f298c3bd939a236f0cf5b7b05581b90 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.1.mod 1734 BLAKE2B 78147b99029c4425396bbbf96ddbf7e8dc0cf70dba02752225a2117b0527d0d86c62acbe845bc5e99f54524611b5cf31cb095eee7c04598a605e01888048c9d7 SHA512 1cee8542f6102c39fb1dd161a1c673cf7a1b148a01bf14dc53649c92406cf5539719eb255975fe5b3dc7b51394b7c9b2dc1ebf231e1201d42eae23f4d74c155a DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.0.mod 1535 BLAKE2B e092f433781a5656ef74aa153a1c9bf18d98e0d483bcc81062bc7a0b1abf642ac2f381f95eb00bdc1a6c166ba32619d567b354645edb305de85d32f690c89fec SHA512 a20defaa9c90972952500e18db12785bccbe5d0cddd07c163d5aaa0d0e99f9baf3571ce2a5280304715b71c13851bcf3a2dc1b565e8f4fe7c35916f91f075d5e DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.4.mod 1493 BLAKE2B 47ed90a279bba3a3b8b4bb13f7063b27537c12c4a83c1f70fe65fce54851d10d409fef6d65ff5d18450eea9dc9337791fa10aff79a46681b50a892aa46f5aab3 SHA512 d9ccbbad4f2242be5aab1720de84e4bc89ff1011de7b9464008d91ef1cdfbb5545c96ba32f1e01311352257d65134f3c51fcf2dda345ca223826f8a369496c23 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.1.mod 1569 BLAKE2B 66648ae30e0dee88e8a0d34a717358da5ad153d3126c47af50b116624b753faf0490fef6b4c2ad84aea60e6ad67721d7f12376b03590e06d31babc691f402ffc SHA512 6053f5b7bae18a79f028ff9b478a1d68ec36eb7d46adb8d01d23d9d721688cff1c330b14fc67ad9835a2c71edb73659c84d14f6b2d1bb2d19389677ee952dde9 DIST github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.0.0-20200825225859-85005c6cf052.mod 178 BLAKE2B a8f41d94a771395efdfd78e44576a931047ba0fbedafb3693d8184c8cf56dece9f7cf007adf572b2653e3aac64d5b3c6769b7abfe9d4c1e7afb79be2dc548579 SHA512 1adec4f1545702612d4e34ca18f6786c3897dc04d966b6716d6d6fa15a48049dfc4e80c49251ae4902de15a2960d8776ab2ee4f47b1291184b8a8617921327d9 DIST github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.0.0-20200825225859-85005c6cf052.zip 1555634 BLAKE2B d37ed05241f3542296a449d9b4e3cef9233c2ed61c4f8b2c46ce8355ed7b7992f68de4eeaa05ccbe46e4e0d9cb5a3da70cf75fdc5b711628f5962ff631dffe3f SHA512 a93e0a380277935af25cd185507f8e1f701afe5dc464e1c4738d42efbc8b42e967defa775c79b9712d20956817e9ad3ce0bee19c1b0754b9c7a4be7696a7d2bc +DIST github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.1.0.mod 178 BLAKE2B 6d86a5f5492d76cb8fccd1e223d569a9e9af964c4927c77756ecf17b2d364077eb684320c7aca8cad8f76950f832f71d239566fe70cf7455edf5b97d9b6461d5 SHA512 4bc4e677e6c71a8f25e212f88fdfee4860b4119f2957dc3a4409a6497872d6f92cb7f5afe963684cebcd6d937da3e2b4cd0a5419d8d96a8daef38f7229d4284f +DIST github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.1.0.zip 707159 BLAKE2B 0a64b46c502c34920488e6c2473071cafa702e3621128400723ee2863233e991516c40b8fce82025b656b5793e699b7d083f7df8831764f1476328085290683b SHA512 3905ded851587450819cdc15ff0cf1e456f5c31ccebc9f6edf2d62b26e8e31ff79b7fa07aa2600515a37767a593d3a124cf3c60c006df75824f9aabebbc6352e DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.6.mod 421 BLAKE2B 14f8d2ce7c7f2e3eb53e48c16f679b60ec488cdc72170ca122e1ee88213b0c75ed0f65e3e3a6a41580311b60dbefad7e041747a1b7b544b0079182dd84520e21 SHA512 bbe7a2dc93f71505fb6a9ab3d58270f7fd95094d19188e73dda02eb038bc42ecc6ee8eb47c93d8ef7188eeb30f6769579e6412fdf469b77d17a664e4c591a9bc DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.0.mod 294 BLAKE2B ff58584bb4a46b56c26774d842edccceaa39549fc0646975555bd28fb1915baa41e1e6d9c417cd0e3489eb27f44fdc9972d7b58f9325ed1a7ddaec6b586102ca SHA512 f1cbd0bb375613c1c5239b81c9f18654ea3d73c53ca00d6d7e17bda92ce7bddb8c668b6f89e9fb600ac62f7a1b421f5a200d8bf8680da17ef34d842cfd37b4ae DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.1.mod 303 BLAKE2B e4ed5e54a44d6ac6a0f4ef7300441e1fb4719ff26c191c9c2d72179e146719beba37a47e9bf68d91a55ee9bb6b5be5a7872f03e6e53f1bf2e302f6316337658b SHA512 58906a07fa4729d58d83a23382d53003645407f30017d45ad8525880422f99dd4a9738dd608a93822026bc6389a2b102d2a7b096e63405922360ca1932543287 @@ -782,9 +780,10 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.0.mod 426 BLAKE2B 633d7 DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.1.mod 426 BLAKE2B 85f2fe69a476b7986a24c2df5b0d8243e63b6d4f6e7cde530585b9b1134f02bfcf7f45a263ea59db7ae87162a956c6c2a6392a7cc8f73c4f72037ffe25f414d6 SHA512 4a9d1803653b103f06ed3dbbaadc6e70ebafbea100f38cf882fb20e7d60bdd35512a00cf0463a724e4b585c944c171d9a30331c70f83e1a97749ce14d114a869 DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.2.mod 426 BLAKE2B 0727349d0ba636b0c0b4fb7ef9a9c166298435d97dd0094d81939dcd60b866c320b83b0c7a6e1942327b036163d968c89129743ebe099cc587274c4d4b6503f8 SHA512 2501b7b8090058c299c9f50ba43df260208ea290eab12132325f53a3f6f3267654926d59f7249f6d1a9250afb015a148b4bec9edbd1fbb12a91cb6e8ef83828f DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.4.0.mod 376 BLAKE2B 31101fbd932bfac89340f40527264668fa3905cef55b9b4f32fd60f9befa5bf695fe4b5c90403de44f95ac750cae6e3a4b6d781f81bce8ce73e00b995994f243 SHA512 07b9d987fd6ea07dd85b31e503221099d62c2f67c57c1f0b370f2e14d5037376938311bc54c717af792a62087b84d257d732f4e8ff19464677e44ab905620e0b -DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.4.0.zip 43735 BLAKE2B 9735e26c9ca7fa0ebde2893a8e7b5a2c60a6d8f3d5f3ab6662a242be590a10c26f8bfe4dac29315505625d47976ef3569b7cc26b5400c1ffdabcd647932d6b48 SHA512 b24ed43355f93cd1c5f063c67cd55142ec5924d156b3bfdc58cdd1166c70090ed459ed6c3feba1404d50c3b5c3d2b13f8458eb8e99356d052de035deddda1717 DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.4.2.mod 376 BLAKE2B 31101fbd932bfac89340f40527264668fa3905cef55b9b4f32fd60f9befa5bf695fe4b5c90403de44f95ac750cae6e3a4b6d781f81bce8ce73e00b995994f243 SHA512 07b9d987fd6ea07dd85b31e503221099d62c2f67c57c1f0b370f2e14d5037376938311bc54c717af792a62087b84d257d732f4e8ff19464677e44ab905620e0b DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.4.2.zip 42242 BLAKE2B 87dd65a2bb2384888970ef9a212dafaf512aaf994d0e358bc0c84caa3054937c6187a53a477c70239fb24bd2418998c12264c7d8c2ab9a50cab5a214574550bd SHA512 b2c5308d863d379c75bc5fbc13b5d60ec2f0e4dd6c24a80817edd5714fc87650f15f1220f957985af2a76ef9abf06dac1aa98d0ceb286def70afe8f6a5911a55 +DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.6.0.mod 377 BLAKE2B 32dbc85bb7837d9ae6af9a2e954bb2683cdce27358a0a02daa43f2ffd9b7d6c882f0010367d506d3c27ff0dbd5e3b95fe404c8f72096e5772f2d35278c79f045 SHA512 222da4ee871f3782b94427ae753db6cf2f6ef64ae49901b0f6143d1a274701017099141173570336fde6276eac4c5acc3424cdcbbbd97691d19d0b44aaffac54 +DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.6.0.zip 66515 BLAKE2B 45fbb031e519fc336c9221db401039673a2191936712ba2350fa4d09e2634304c55ae3c7f5db6bdb3ba4eb4b562116d07d4763ec24cf95eb8cb9f70c8232e363 SHA512 57e0ff0369c9190466588baf0e86007ef89449a157cef131c9ae4f68ca81090cf80a9c08268796a725b7c09dff980ae933ad745c7a35e2365e82fd27fe4ad650 DIST github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.0.1.mod 448 BLAKE2B 3d8e93652255c38b9ffc4b1f53b0d197b780d28b8d0b4f0afb5fbf99bfbcfd8cfb145cf0eb9f21718e3aed1e355637b30cc3395b96895dd712ff84b1457f323b SHA512 3b86b6e33c62d7a3b91de4c270367474c77d76ea448ef257f2b25ea77fdca8fdfbb99f23a83cdb5576d4b2a8e22524ecce349784342f5eb0b4a622bbf06dd286 DIST github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.1.mod 222 BLAKE2B 60465d35de4e4e64ced99b75efd0fb16a22e65846df5fc96a481d4677fb275bd9392b9112d5c424aa3b51664317075679d81796bdc3f056fc106f14a36fd7546 SHA512 a4de88f9f2cd28a67feaa2fae569943f755e375bdd6fddef2537f00d6e9974c73fee024616316ba079a5e470b985424db06ce9c9139363ba0cd495d58c5e809c DIST github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.4.mod 260 BLAKE2B e7a0ef17f7fe288086934cb0cd14bb04cac7bae1c091896e8406973e96ebc9af878d622a28f54de1d6786d7f0f94ce005e8ec6f46b9b7b55c3c76dbb87a23c30 SHA512 84bb7076e667112b0c73e394c1f52896a3adee9b017cd96711fca5eb963bacb010b59f404f8f359939058d2d9cfd76d580b71e4d911336e549a62e5e4ee2a132 @@ -802,6 +801,9 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.1.mod 634 BLAKE2B 2c96fec9 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.2.mod 606 BLAKE2B 38f6b0a16ec847fba331961b8578c2235620e28c66bec388fc688569ecb8882bb84becc3dd6e03dd9289434c4ab2c0d80706988b46d2c9ee312f729a1447ca7a SHA512 50340f48cbed87d84230141fad2cefdbac312ae74ed3f1bcd0ddd76c7a11ad56f998279f9de66fd631fcab2fb4ba33f9ddd723bc5db8b39162c028d609d36bb2 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.3.mod 578 BLAKE2B ef9ef0d66ff25778d0a3883c3cf648d24a0a80ecbbffcd31f897f6c2683d2107d1ca99719dee8fa932d6a1ad2f0a3dbc3d7f3f0ada28039d5bb157a32013a631 SHA512 ec8c787b52e018baedde722c69f0c92177ecb474df0f214e3d0d9bc18f383cca2d57baf86f554a2355a180946da1e4f3da648afde0f88ff6810a0ee450666693 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.4.mod 578 BLAKE2B c735ccc1c08d0564c4cfcb7e1e0c8c3689d720946c9ea24e4f9c2c824562347fc75a6bee9254c59f5ccbd05d264d5e5e39ad6a231e0d36ac956e54d62ae8240b SHA512 49493b91e834214c47e2a7d7425f1b74c77e8aaa479b873e69076bfee4cd1df247a27d07cb5cd1299a465a5c1faa0a2cc4ab10de4a0a2820974ec9ffe30d5812 +DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.10.0.mod 596 BLAKE2B 45f40f8a233ed85d530784defccbd112c991c163a77f320c4a797da0ace2134015fde730d7f24ed33939557aec3c1ea37f4cb0955a82f997d3215134431c5be2 SHA512 4cefe3d1299b864a8ddde98422e69fc72cce1153222570e9227d7e627533bc461ee3fe4d03c7046941c7f8b4694971dde2bdbbc3d30d90104474a29f2f8879a3 +DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.11.0.mod 596 BLAKE2B 45f40f8a233ed85d530784defccbd112c991c163a77f320c4a797da0ace2134015fde730d7f24ed33939557aec3c1ea37f4cb0955a82f997d3215134431c5be2 SHA512 4cefe3d1299b864a8ddde98422e69fc72cce1153222570e9227d7e627533bc461ee3fe4d03c7046941c7f8b4694971dde2bdbbc3d30d90104474a29f2f8879a3 +DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.11.0.zip 163994 BLAKE2B faa68756188f9ff65b0ac4a64c938910667197bb8c696dcc31a99fd7a6d00920ee30fdbad2415be5f9be5cc9f911fd84833145b1ece4816cc53911233fae5504 SHA512 9af3dfcb2e6f27def6be05066c331464db9f3339c7a4a41c4168ff8d66bc4774d859442389bf187ed4ce8f5c0decc9ea210c479a3c1527a82637c1a63cf481c3 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.0.mod 673 BLAKE2B c86bb01d9a3ba4c7917a4b58304f0175e47cfd30bbd431e3cfcb006c1e4e32e86858a863b55c75e2d6aee340d7773c1caf89ce207357732c1e92ca286c6223a6 SHA512 3a6f01878155f4762a8a6cffd5975c6bcf8a0372dabf5d2af7ee13d564b8137ca21470ddf252e7bd348af97558232c5f6134db6d9179697ea9c8c3dcb05a9878 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.2.mod 641 BLAKE2B 56e30500314194114823c43dafc551e83885558eb427614c6fc888719e4c483ef2182ddb3740e0d629bc1e12fb3a73d4bdb5a662187f3107af4ef2bdc4a347a0 SHA512 15360e22df091e86e04e4ee6604576a3179040fab3a9b4f36cd61a036db0501dc3ef5f4c04de67ba4bfd427328e9b1d1d243941e2d7149ebdf746055e4dda771 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.4.mod 650 BLAKE2B 96e7532a2e5ca57f3ea04d61c7b4138d67a5a55966b37e8ff853797a6c200ad21803cb86622c2617ff55eb45f9817d42c59d08eacd93e2e590ae6c09d972064e SHA512 40f60e0864629388eaffe75b352bbfcc35773a2058f4f5e0786e0810997e9ec0392684c7a3507119fddaa6cb6646b4cf67b02980c94df168315bf05f32edd5b0 @@ -820,32 +822,28 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.0.mod 622 BLAKE2B e27c9dd1 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.1.mod 622 BLAKE2B 7a2dabb0e238480dc7d6acb0c3003cd5398252360c32af37b8041fc37d33a5cc610b89e4f53b393833fa2db6d1b5dfe26ba09bb8bee4a25a7e0cd495d851164e SHA512 cf5dc1e0d86b993b6b0192269e9779ab14b0cb4cb0c30f70c465b164bfab4f2e879d8d90cfd648e9f00f851e98c9f1fc0db361ae2bb2f2c9bad186c697cf14a4 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.7.0.mod 622 BLAKE2B 7a2dabb0e238480dc7d6acb0c3003cd5398252360c32af37b8041fc37d33a5cc610b89e4f53b393833fa2db6d1b5dfe26ba09bb8bee4a25a7e0cd495d851164e SHA512 cf5dc1e0d86b993b6b0192269e9779ab14b0cb4cb0c30f70c465b164bfab4f2e879d8d90cfd648e9f00f851e98c9f1fc0db361ae2bb2f2c9bad186c697cf14a4 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.0.mod 622 BLAKE2B 7a2dabb0e238480dc7d6acb0c3003cd5398252360c32af37b8041fc37d33a5cc610b89e4f53b393833fa2db6d1b5dfe26ba09bb8bee4a25a7e0cd495d851164e SHA512 cf5dc1e0d86b993b6b0192269e9779ab14b0cb4cb0c30f70c465b164bfab4f2e879d8d90cfd648e9f00f851e98c9f1fc0db361ae2bb2f2c9bad186c697cf14a4 -DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.0.zip 159694 BLAKE2B 5e94e87714eeb1d699f586a77eb0d57aab31f3867ee41d470bfe5f0a4be602b24dbb4676c41629d0a9c87101c0229b85a35133e88178d95f06168b643e91e1ea SHA512 50ead981e7aecb79a0209b5a38ba3fe7a6665c7d1c43c6b66d9565f6f6a1939d82ca768d6cfc4074a21344d20d61d0214484dd52583173c28af8c2e6a9a0df95 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.1.mod 622 BLAKE2B 7a2dabb0e238480dc7d6acb0c3003cd5398252360c32af37b8041fc37d33a5cc610b89e4f53b393833fa2db6d1b5dfe26ba09bb8bee4a25a7e0cd495d851164e SHA512 cf5dc1e0d86b993b6b0192269e9779ab14b0cb4cb0c30f70c465b164bfab4f2e879d8d90cfd648e9f00f851e98c9f1fc0db361ae2bb2f2c9bad186c697cf14a4 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.2.mod 622 BLAKE2B 7a2dabb0e238480dc7d6acb0c3003cd5398252360c32af37b8041fc37d33a5cc610b89e4f53b393833fa2db6d1b5dfe26ba09bb8bee4a25a7e0cd495d851164e SHA512 cf5dc1e0d86b993b6b0192269e9779ab14b0cb4cb0c30f70c465b164bfab4f2e879d8d90cfd648e9f00f851e98c9f1fc0db361ae2bb2f2c9bad186c697cf14a4 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.5.mod 622 BLAKE2B 7a2dabb0e238480dc7d6acb0c3003cd5398252360c32af37b8041fc37d33a5cc610b89e4f53b393833fa2db6d1b5dfe26ba09bb8bee4a25a7e0cd495d851164e SHA512 cf5dc1e0d86b993b6b0192269e9779ab14b0cb4cb0c30f70c465b164bfab4f2e879d8d90cfd648e9f00f851e98c9f1fc0db361ae2bb2f2c9bad186c697cf14a4 -DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.5.zip 162392 BLAKE2B 1583779d8cfbde7c488ed13fbc56f454eaf4dfc0c8a5f8361c9d56e8660f84528a0e8d0648a93bbc02651eaaefe82ea04a592877eed63a0fc50355bce85151d4 SHA512 060cfe0fc955d8132a8a820624c5077eda99f8519aaf71a2bf0d0845134b5d208c2b9f6fa3ca52926098f77530f2d5d8a934b9bbcdfdaa424291cb6a5aad2730 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.8.6.mod 622 BLAKE2B df0de1d46521333abcd5ca3d0ef6fd7f5e52eaa389ec159ddcf3141fecf6fd9696d8584f1587bf9f25cc564d39dd8395bd2e5bdff89ab24d9f476ca84e616a8d SHA512 7c9a4303e0ce6cb14bb85720b72b3d72bba3f225df1f4fdebd7fc208d65d63ae8f43a3be1a725276a170c60c36d27d9f30259d6dfb4d74358c49ca4189ff78c7 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.9.0.mod 596 BLAKE2B 337b70cf16358d2a1fa975eb469dfb4d0da75f0f795889f400f31119094fd9044f697f9917042792b191216cdeb3d80c5521159095ffad077d42c4412280fb5f SHA512 da544469333bf32227b12917d3845108fa565046cfb86d79f735936819d827521fb7a3bdc295c86440f875a082f967dd309f6163afa15d99586fa5585e84affb DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.9.0.zip 160932 BLAKE2B c78251ae13eb3c6b28bcb303ebb6e8fd78b7c924b3e1f8e8939cbd6affa455087e1f200319f0f3f15cc2247e2d56aab26a2f00d7c609aea379467659a0012d1b SHA512 a4fda72e100e31f79b607758367a4e38d30151b4eeca58d6b96016a57af2b1735762f783d3b413ec59f273765ae02e598dfd11f0fc67ac9299ab21fe90fd5bb7 DIST github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.1.mod 270 BLAKE2B 29d34d864c9756848704d251dea3ae96061fa1e0bd48ab42c2844e3757ef28f298d1b8cf8eba7035e237277206407a3a806ce36df0c376153f64c2e833ea1adc SHA512 38179dc26d1a236e6c1a15b66d08fbc12c5a5890fa7a57ac0c5af94e0c858b483a29313bb4e34c4b7cd70fe5c8dbab64386d6e84470abe18f23ccb371b7e221f DIST github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.2.mod 339 BLAKE2B 930a6b8fb98c02a0f5f93870a6135be2b302531be5523b7ad0feaf6bcb473746700597467503ea2bd2f2871c8e9cddfa3394e2e96eeb32754d3c03a5312a6eee SHA512 54a28e1b771958260d612cd3b677dfde405d407fccfd7ca9ac72f8f687857d9f87f944d18bf20b3bb56aecef9c1244164ec2779d888a76b3bb33d6d2f00a0c02 DIST github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.1.0.mod 91 BLAKE2B 531d67d38826354b10e939dd2230c2c6b4082c65df0e00dc7ac69cb590ea04c671478d1c3a6f7c2a614ad7185a1dd0aa3332f50cf241ec5b765f2c2a652607c3 SHA512 dd5d900f5b64917e41dd811808a74a3983fd8a73f85915a982b423c8ee3b2105e5fa5d8bb5de26b8f29ef32b2fa02278d4edc06a939609e35674c6ff36e7dd78 -DIST github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.1.0.zip 10504 BLAKE2B 45975ddec72fd8b74e9ed7fd6f6d8123c94a055c5cf941a2ea699d6f32eba3d72c4a0753ff24411d5ef7b29f50bd80a085a7947bb187e62315faf72a9e1920c7 SHA512 18fa308e07d8a045a94ca6a45cf9e3e747733c87fd94406aa6aa8878b2b399530731d111e0561bdc94d8bd8fdafc4e1b055b6db35addd97ad95cb1f194438f0e DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.5.mod 425 BLAKE2B a8bf396f7c92143dd9499133d368420a265fb617821692f3d169e768ea191e2ed8c0d68fcbd0451d4e980b320b4b53907fed313b7023ddcc4c4bbf920c510dfd SHA512 d330b36c579f2e2e11326d5d4c7b0a4d3714d33205195cda3a6ae89da2b7459557eb51f6b3da266215d6617d83fa559ed0162dea7224778dab4dc6e7e5b95081 DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.1.0.mod 294 BLAKE2B c5d32943b408457fd1bdbb5624593f024375a8a9ba5bffdf1dcbebff069bc9d28a9851c9c371794c0fa70036eaf03b12ea27888a26fc85b4518a1ae2b49f7988 SHA512 22833eb0577e6aa47bbb99d3e92a6dbfb5a98167111c9c2f12ee5b43f3671f3a4159a0b755a9a0692fdedacc8a44535196795cd173e121b04403079276ed1fe9 DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.2.0.mod 389 BLAKE2B 2cde1923146d3f63edad7a66392469137598d8a6f4227cd5c44500b78b5d8d3e7f16bdd24e9189548b13c9906831ea6dec2c96ca9150fe1954a88516c4a7f711 SHA512 71abdcc9b2e21bfbb51b7f1b4ffaac30a54eb83381cc790784e9e040aad8736ab04695767c1583e2484594533705542e20f772db5a2ef708ab40e8e2a82a0647 DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.3.0.mod 390 BLAKE2B 60ac6b51f8508596b6fc95808cd717492c652fc22821fa109005b747ac69e611513161888bf70c6fdb6e68196ba6e6b15aaf39a37ce263f520ab36998d4948e0 SHA512 77af6e288e09e47980e2bd4c4120a3cc430175ad5fa9bcf9f08f6db0730e4bff487dc8058db4c734c52efa02ad317810a1d6a1a1aea1b67a199dd9d0a605e930 DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.0.mod 444 BLAKE2B 9a6a9868fb785f078be969215e5eb0fcbc659d8497ec4c499f589fa47fd348d009556d64783ae6f07aeff5b997ba936b44ce03fa3dad3ced6d58cb8c7f897c09 SHA512 c9fc07e5b5b9dae932729e54b812557fba7acbc631f24a3c852687e6d549ecb5aac4e6a3a15ee0dd6951f37df30922ab19b558129d2d91ac7e046c7b1b7aaffd -DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.0.zip 36408 BLAKE2B 5f6d584162e577bd0fd7a11cf064d587c44781d78e18d2e41336923087dbb6a29f9409a7e54e047b600913c6172d3fc149eff8bf79001c3da2b2f2e513d12eef SHA512 e454c02e8e22c9352e0390b2d639a6ed57959004a1db4f18c1bc6f046991243b544fe0524dd513d23211e0dfc05c0ef20604346326e8eee6ac92eb897379431b DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.1.mod 444 BLAKE2B 9a6a9868fb785f078be969215e5eb0fcbc659d8497ec4c499f589fa47fd348d009556d64783ae6f07aeff5b997ba936b44ce03fa3dad3ced6d58cb8c7f897c09 SHA512 c9fc07e5b5b9dae932729e54b812557fba7acbc631f24a3c852687e6d549ecb5aac4e6a3a15ee0dd6951f37df30922ab19b558129d2d91ac7e046c7b1b7aaffd DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.1.zip 36756 BLAKE2B d225892c57f5101ed3c8307f03fe7d40cac9ebc87afc89aa9af7e173ffac75b2f242cfaf8b24752a18d186800d2931e3a7f4066b9aaaa5a92b892d96dbc49fec SHA512 e91a1c33e80dcb357521f3fd87480681e92f8dd92bb022e28811b1fc9ed6fa8d79c8e729ca22de7fc632910754b148a92efdeb32b9de1fe015b813dccd10ecd4 +DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.6.0.mod 445 BLAKE2B b21c258bf417c0a3b814dad77b9b3b0f5308fec04e51e9fd16ada46943e92c0b9fbfad9875b19d404d9dac909e6c5a1622e4c76775b462a68d81689fc8e5eb6c SHA512 3f37aa808d9014d9df2ae14c5b65ced5f43c63983ee867e12f275fd2f465eccee5172f893d012f03840473e5dca30f1cb08345a537574801ef45e33cb98db054 +DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.6.0.zip 56112 BLAKE2B 658717430ff2a32ac456669649d71e52bdcc1673bae4eb47fa34614999098aefa1dbb212873bd1ecdffe125bec8fe11b9bca179b56afc0834f50c2d7c82b8dda SHA512 199163eb32392b5331be2f645bdfd4bb5b06ba136d3a32f1eac17ce08b152d557f018436d919dbccd7deffc67cb5f5be649d7a1d9b8462ed0c1b65a0fe832e06 DIST github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.3.0.mod 189 BLAKE2B fd8b3660d5e516537876d3814002637c4aefe90be26f2757fe7ef4b1ffad6c2ab4f654af36d68609537f432d419fd659c251ee604bcaa98783846e9c5fc2a76d SHA512 9ddc11d5d24ec4851819541236c4e53a8189aa90dbedb8db1ddd2e4763570671d44a6bf89bd12d39efac06aa3e4ab42bd54dbb1c3112cc48b6931f6912efc9cb DIST github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.3.0.zip 37878 BLAKE2B 7ef011d676a69a2e32bf6f2b8e07839ae5074689f4fffa65446bedbfd8c24c141fd08243e4d762f645944d1e2d1ffe68f066c90991d4039c8dfdde5cf5be2113 SHA512 d8abe9f5bea82a7c15648108e4f5cebaa0b6667c5ae783fdc4e7c4d846483e74e025aae5ee2b258001edde06e0229c24045329c65fbc87c2ea79ae38b83a6b52 DIST github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.1.mod 407 BLAKE2B 8e2fbdf71d8aa6b1f38752de1da9b8bcd4f0ac34125ac94247ced72d53fc5dc56c83bf050f961cbedbea3e5100634aadaba9b17df6d53da2f6e497a841c7e8f0 SHA512 053324801a99342c773b2b0923b384f29a1ef2f09fc6a120b12902491b117277ad6b26eada7cb140fb73c9d1d7b19cab565d3027efb9cb20dcd235210b22e4bd DIST github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.3.mod 437 BLAKE2B 0ffba920b484c9c8f74210b3de36799060fe4bcf84d1bcc90c2a53eba4d6f1257da7b2e3963831cfc90b8792eb4d4c681fd9d98baa250da6594ed52edaac9517 SHA512 305f8b72609955622f91f100d7e101efbb503963b49e590b04d0af019c4102de9b0dbb19384de3ad7ead24deda771396824eecacffead35628e127c691c564f2 -DIST github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.2.0.mod 230 BLAKE2B 4b4a6ac2e8e4f7bbc2a1b973f4a502a0d9c0709476ac471f97b6f98f7235122553765ab2fba124f87fd17887b19aed0f503b64e827e0d0247365b3882efc15d3 SHA512 2ec136aa29c6ccea729404a612f8525c35c9d9a0333d6be734b7bc754306019c38403a066e37ecb8aa02065cddea4c74daaf47bc26f635ff4031cf8449851b3d -DIST github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.2.0.zip 36210 BLAKE2B baa2509beac8b9d2bfa336a6996cd32096e23f83ebb1ef563a0733a80b2d731e989e19ec3e4ea85c43a12d90bb74ca1e173bead4d90d0df5b42eb2fa7df1f188 SHA512 6b4026ec88340dd148578c5e5a58af3e42cdf63d32e89e4e4b1a2a47a877a26f1353a8486710d4ac07e9b37aad765ae580d21af18985c8d6451f7e813e7879d8 DIST github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.2.1.mod 230 BLAKE2B ff3b6511ce0467614df2ad70458684670d898f59d75c4ab0537a31d33597adfddf7a2e802f063df3bc9ce45cee3f4f03af235ee378e987dc37b4af747f7289b4 SHA512 631433f8cfe45d3ac4ed2403ca308e7486efa66d4e87f414b19cb946039d098637b3d3886d9e836e89e4f4a5b74afbb4347013cbc0a8a35764531789d6ce1ec8 DIST github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.2.1.zip 33061 BLAKE2B 06b7b43dde1ed6fd59666735f1017f8b45b49291b0bd811f2a1c65af37fd4665a7cfe6fa0db83c5bf69a080cb09830ba262bfa51b09ee2842d40a6cf895eda57 SHA512 dca36a5f78966d3224fc2ce9af82f4501bd7884fc8636f112bfedb1c4485241bf9fb164a6afa24003b59f0be573f275c3970720b58807b332415a644bd3fed58 DIST github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.1.mod 192 BLAKE2B 1abca5f8b1cb8ec08c440a46a52def7b6351a5ad8094d4482e6c04f2446a02ff7efdf2399ddbe3119c0a8db3bbad8e4d47d04d4bd5ba3643baa57a5ad691cb4d SHA512 431f5960363d13a2cb1e989864c2491dd1f7894fcb1d6bc8040a07003b0f508ddf1440cd0f03e679d816b853ab9582bd7c58ef82869539e91e819c84edf7e50f @@ -853,11 +851,10 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.4.mod 192 BLA DIST github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.5.mod 192 BLAKE2B 1abca5f8b1cb8ec08c440a46a52def7b6351a5ad8094d4482e6c04f2446a02ff7efdf2399ddbe3119c0a8db3bbad8e4d47d04d4bd5ba3643baa57a5ad691cb4d SHA512 431f5960363d13a2cb1e989864c2491dd1f7894fcb1d6bc8040a07003b0f508ddf1440cd0f03e679d816b853ab9582bd7c58ef82869539e91e819c84edf7e50f DIST github.com%2Flibp2p%2Fgo-libp2p-interface-pnet%2F@v%2Fv0.0.1.mod 50 BLAKE2B a383e6475ebb9734977379ef6c0e272dc993ad8a688fe7e73ac04fa3ab6ec0c2782bf754a1aefacf64f5c8dd7681b401850a31d7321c37f348cb1dd6e2e6adee SHA512 f90b04234a98e243c6ad250819e221dbc6a33c7f869edb60f8d9c564d8c2318c0a84e62c45c94097ae0ea318ac13dae09beb5e94aa7d38c5a8409b751495042c DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.11.1.mod 1336 BLAKE2B e7b486d0429f7f84ba8da833a8292b35d108c4f820523fc33dd0e98f2e26272ebf4e5c6e692766c70c46c0ccab1337f269dc09201e253fe28208a54d3722b4da SHA512 8236873b65bcf41270e9c64a49b765d82df677f358bf825104b0a4bc355f9105949c22ac1cc2237137445cb43c01393fe172f6a058c9e769cfb2a0c9be9cf763 -DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.11.1.zip 131436 BLAKE2B f1ddc0f18dd4f5ffd5cb39e67228f8fd121115c5d0bb8d5c1f9359be87e33e7b8881cca7e7c8d3c866cfc890bc5aa67242011f7492d9c3c813c8428c8233f09e SHA512 d047bc215bab0ef85769ee437c5e14e6a3b01d4167931f1f66e576a356d93a09adc2cc64d5b8a3eb5cd183bffd8248d21cc00fe1ec40cc83cfe20be84bc5266b -DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.12.2.mod 1404 BLAKE2B 841f446ad43b870c38b8703156f8eea7e845a45848833de3f80b68e92c56ed18cc0eee4a554934e7bb0a2a7fcf56115200df270019235b435272a80ebf1c291e SHA512 7838732ffe0e52fa6a43fe16bd4597fe38c37ec8f215c93f67f2b1d2066cc27665d56eca1097fc92cd378863baf52d4942418dd3d8547f2fbc7b68b422c9c9ac -DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.12.2.zip 154760 BLAKE2B d472bddeb29ce5c95826fd5df26df267a56f63ced8a059ecdf99321a6fe81c63706938ab48b771285ef40d7f68aa4747798257949dab042d062ceacedba179a9 SHA512 5384950ef99d389075dc8bfdf9d419782ea42fa81c75d43183881c8bda215052c895fbb5d1da63c21a41b99a0e1d64fe1966e049ef7b489f7ba709ba69bc47d8 DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.13.1.mod 1478 BLAKE2B ff607b45656e025fe1838a25e74cf1c67731ecc6208c99b4e441459d457c59e817d8caa74dfa35e4e47e3fe6ac79bab4f592ee23fec04a98ab0d42e31c2492ed SHA512 651c2faef05ee8b014f0eac997acbc61c0b513c2cfeb4e27f4f903fbb183d7262a7b6354252155f29418a4175b4cab3c7fe89ededfd52ef785594540d1852b7a DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.13.1.zip 174213 BLAKE2B 2c39c1135f50808fe512a8742a78f34d4ffdbf74a42ca7cea9e1094a77c67a930eae9ae662bf15c4e661f61a65b54bcdf7557dceded17f7d0c70b6faf5dbbd3f SHA512 7ea1b4313afce90825f5f3543a7484112692087bd7c4bdffb99292cfbf8d1e07b75902ad4b77972db13bc99f93e560957109d1aa2012ab0b4c6d4416a71eaa2b +DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.15.0.mod 1478 BLAKE2B be1783e02142ce3eb4377a2fb41954412418ff2e59b7c8acccb9f46d0cd3b5cdd0409048a2bc6d65f6eb2aab033358d902a2c23d7b747ee7e5eb9b88edf4481b SHA512 5bdaaff5bc6e4b4f2972a1b25c43c814f8890be65003047a5b8d368356b24877b3c22c9bdd528b7591baa8248fb176637e8c7bf3cae24b2fc5ea685488314682 +DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.15.0.zip 176852 BLAKE2B 587e71413bb53074602e7d45846582f4df54db63b3aebab78c458fe87610e8c29efb3cad0a06ff109233606280e13e39aaf164ff8e33de8272ab3203fed17f01 SHA512 08cf48ce41a227c43ed05a94f544294b2b94aad9b036a46a0da2e365a224ca7bbd9ab0c03b8da57dc8c021faa403edff2560a70d35ff14629dbdecd74c23b87f DIST github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.3.1.mod 443 BLAKE2B 55dc4c9504a36295b4d384b59b88241c02cb3a881e6d1c22252115d75566b6992acaff961b01ff7d493fc0762b126026c506a4f41c805a0bdf15c5c33d275913 SHA512 e1fb14bf75ea37549c7d2eddf953453a4c7811f5fd2ee553774143261b343353a94e8a999899e08425a1987cedcce39ca26a92234fef172b9bb4461a1299d7b6 DIST github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.7.mod 496 BLAKE2B 2ac651fa702034285730a9fff069689a312a3c360dac254cae04c89432cfec57191a0beb323ac74a265a9b5321806cfeae957a9fe428bc3dd6367cc57379089b SHA512 d08935fdc6acd8a2080855ff62a48b7a703b14948168cd3b13b9ac701f81069fd0cfb23e10d6ff8bf7b9b79b1a1d96267c560c9f076420edf860a0e8c22d1591 DIST github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.7.zip 232497 BLAKE2B 7686b46c3f8626532d3245163717caf8d38a3a197e02ebd0e051d28e59177664a9ced03031349adf5dad5a3121faea2662394e6a096aaa89e89d9129123fd147 SHA512 584a0196184182e0178f08777b862d5f3c01efefa6173e6d3de6a7a04f9658dbafc2daa3077bbdf7fbbd581ae1a6190df7d3d3930c45274717f5b27368fe28f5 @@ -878,22 +875,22 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.4.mod 328 BLAKE2B 05d413c8e DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.5.mod 264 BLAKE2B 8dcde58f9f2d6f3f0bab9d6ba270c6d25ea65fe5c81040de83aa294fc6460a96263d5437827dbe77a0eeafbf5046f06d42134f709d81874e4428f077c918f410 SHA512 f490d61ce4ebc6cf71fc21b76bef42b7698b2bc6f1f7eb3a3bec1647be67d903adef907b5574001841c69c59e6d5e107b32d3260eeae7a2e47b6833245bfcb2c DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.6.mod 161 BLAKE2B 4a8d93410135ec18cff51a782a912b0c18f5beaf9a02dcdc9d410338edd867b32691698d0d7815fcd6deaf3b7fc1e63e01afababf03ee469603c39d23e55d17e SHA512 3c153a09e465fe3cd16a6d36ec380ecefdd44c578ef855457717bf24435f05e19a27d0d1e717b166968eb41d2db225f73d405a1be039d81824f087c3f05cba16 DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.6.zip 9058 BLAKE2B 78eab2866a3602daf38e84a908179d06a0973b451bf95689f27875cb20e76c38e3f0dd7da9f943a6a874119900ccd93f0f40216437aeb5c4b32e33fcee9b8eea SHA512 5a6549fc43e2751e6838cfb13514e435c96ada4825af9854b5fb2bb521fd6e6b3be0d9f2ad8b49687d9c2636f0d9bb8dd6c6fc131875cf5083d911baf85cbd80 +DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.1.0.mod 128 BLAKE2B b7b8592e2072c1a0bd46bb03f47abe77edd435a4748713edbe5d09804fd9358331ed93df39f587e3327dc89025b97301494e897a3729a0987be005890961039b SHA512 9be39c53601ae3a0c5bc81253c57bd55a7426fc02901b248958dfe6fd65712759bdc90c873e2d85d5473f8babfc8148a8cb6fd5728511637e1cf8c4be53327f6 +DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.1.0.zip 11267 BLAKE2B 4493b1c60ea8d6d9b118022c52ec39fba6e8dfd6df30dc56a5a977fc952e3b5e0cbfe222a4f1cf9ce48e7fe7538af75e9dc5aa9c131980cba3bfd4160614df95 SHA512 bb516953903c935ebafb4e4b1bdbb558b5965896748eb1260d060d4fc385798ef607303efa63ae6ffd7773216345b55d0d356451457edfe71a53bfd26cc6b61d DIST github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.1.mod 378 BLAKE2B f952dff76e0654ccf928c26a7cfc89e52d0d623d54cf16ed5592e4a9278fadadd30b2652d0126158884413fb48dd9014aec0ea75276582c76c9775c9ad2e10d6 SHA512 c23b6098529918b34de5d91d518d239663539a6cc9d137fbc4516b1a5a48a02941e3b13080ba3494200ab426dcea4ddd309dcb716adeb8d10e9cd4eccf9bb5a6 DIST github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.2.mod 378 BLAKE2B f952dff76e0654ccf928c26a7cfc89e52d0d623d54cf16ed5592e4a9278fadadd30b2652d0126158884413fb48dd9014aec0ea75276582c76c9775c9ad2e10d6 SHA512 c23b6098529918b34de5d91d518d239663539a6cc9d137fbc4516b1a5a48a02941e3b13080ba3494200ab426dcea4ddd309dcb716adeb8d10e9cd4eccf9bb5a6 DIST github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.0.1.mod 254 BLAKE2B d6f04af13085aed54cf1afc595279cbe23fcaf73b7a02596eb9ca1431962935a7e8b2063488ce6a2411ca90114e9fdbe0084737b6a14431af223b4d516cc66bf SHA512 c0f0e24b159165a1ec6b7e76642e8f97861021e4e9a1aaaf56d191f3baf8b1b81ae0293a734eb1b68fcf138099a52d5cfaba702530f782b83da0c7ac2808b71c DIST github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.mod 217 BLAKE2B 3065f327bc37a609e3c370864f59a98b2d50e09be65e73157fdd4a9ed2e44693e45e9c3ec11c418a0ac9e354a0474a4159c515d87b6409f66efab0e1d1b449de SHA512 de073c257f366028c8cc56c46fdbf858439f99ce05fc198406fb76eecf3b4c24c845b198bd8f28c3edfb629e96a4b994fdc4fe9c28e67b027c89f6da99ee6ade DIST github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.zip 9044 BLAKE2B ba6d7d1d449e73895bdfe896dd4eb6c986a72785cb573224810ef45c7fc7d613b66fd0f97f4a9b3c6f11097e6c9a65515c6926b77ed2ea57e9d6ed226e73c474 SHA512 5d0d23b6b0b1a5e30d28f1257962943f68b3bdc627cfd32db8ee1a9fce8232d1b6582b57165011a1e9a1e39bbf9dd42baa8cd8f46e29ed6927f4d13440dc6c03 DIST github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.1.1.mod 409 BLAKE2B 72154052efd224fe6a5366cfe57f33be02e0c4cf74bfa41e65c3b58cb0f1fb6a4e361f00ad34bee2ab0052658846e38efb227bd36e981cd3fa4996f481315847 SHA512 d33c1f6d949974b9de6f1aec1da319e240ff3461bf8e2e84ecb74df82e7b234fe6ea75b07c23fc0c1e225dd1fe9d2c22a90eafc20c7a1ee5bdea5a2bea28bd83 -DIST github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.1.2.mod 410 BLAKE2B 89a42858ab793e8d7e07bcd801c2455633ee258e11e10ec3ee7c43f78f8b18d3dc904cbdb3afbdd70805d5167b18edadb4d3b1d2f1c8c9ce66bcaea523359743 SHA512 682609a3f73c2c66e0d47ba19fdd743e9cc1c04513e0a74d32a1a9fd69bd5cdcb1106723829b9f19fd427cbbc693a9af24e8cd93959f7b87fdd2bc0dde33f9f5 -DIST github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.1.2.zip 40403 BLAKE2B 3df2f4677e6b3da4afbcaf853683e7dbd0606360ac98b66d4dbc170f26f69ba883593b987f7badc552152c361097535358c622c039f76d7a23567dc8a4d9d03c SHA512 e517eaa19863e6f8633205197f870fa221677584bf4b9ebdf004318b0ff9fa156a8db4366cd701dd99820f01290dfc56ce1a6a1fced09c89ba70bb671297f1ce DIST github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.2.0.mod 382 BLAKE2B bc18388a7c674d0ee1e1382454a0b802cc78f2aedb45ddfb3f7de63a0aa473c702803c0b2e59abdb48c52d3c084d1f1c54bde286ba2be711ca4315388e240565 SHA512 ec2d61e555a5102c6168aabe28fb3df1290b6dff8786b77e79a807f5a2461f0fcecfa4779eb5d2cc81a3bdf9c23a51752357f6cd7ecb19e2df3638a6c081f34a -DIST github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.2.0.zip 47657 BLAKE2B a8be650a43bfdd11cc570b1711c1fa2c9a7f62f9bb7f7bbb81ce0604ef65f843c49a2004611b7170a69ecddcf9446c0be8d179aa356d39571f8babddbdcc4efd SHA512 4a4f97ae30b31d4238eb467d0b7c4b1baef19e2d3e99653e0d97d86a11b58929cead839cb78c27991dfa9cd6048969992be0af36b9765bee4e08498ea9603e82 DIST github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.2.2.mod 382 BLAKE2B bc18388a7c674d0ee1e1382454a0b802cc78f2aedb45ddfb3f7de63a0aa473c702803c0b2e59abdb48c52d3c084d1f1c54bde286ba2be711ca4315388e240565 SHA512 ec2d61e555a5102c6168aabe28fb3df1290b6dff8786b77e79a807f5a2461f0fcecfa4779eb5d2cc81a3bdf9c23a51752357f6cd7ecb19e2df3638a6c081f34a DIST github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.2.2.zip 47899 BLAKE2B fc314cfa19bbeb75bfd3bb3bcbd9783fcfc22cc644c4cc898bc593e6b5daaac27cc1cf13b4f9475fe88a657c7ae5fa37b9192ca0976f21dddcedd227145e062a SHA512 2cf3bf5df26ee9c2ce7484f708157b45dd0f649a19c1f89cbc6e1ac55b502bfc9920e7056bb1c92e27b8ce6c941414b28a72434a7a9e4fe85ce2cb1716d294f7 +DIST github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.3.0.mod 533 BLAKE2B 75c410967e064e7cdc3559fc3319ff43595717564e125cfd4197944f418c3c649fedb2cda34fe61314d2e287f0c4421347f1aca193700a396795faeb02272e4c SHA512 93d1cfd34309a344e2c025a89223267cd036ccc88d69a615ebf1ff6ff146b9f3f895aa148ed4ddcfe5d215eb3052372264334f291f6ae509c9b72bbffa928be7 +DIST github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.3.0.zip 33348 BLAKE2B ed8491e27c3f5c8212ba6dd4532fa766ccee08387ad9a4b94c8427c0cadb9c76155a25341f3c79465820e28741ac5cc631b9db7012517742d5c509690b9b08c3 SHA512 e6e47cc6e7f426d9fd0a952731abe7dcb824e18f8c163ac541be37dc25dfc3212f2b516e7adfa3a7d5c71c9f21571881ced1eb92072135a317d77ac622c44e92 DIST github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.0.1.mod 175 BLAKE2B 3c08609fe1ef0f34a6b86a1d0931f951e229fbce7330b9a81f844656439fd5f7c0b6bf237d15345d3a55d6509a1e0ca7d2eff8848770c0f925e0e385b2bd437c SHA512 5b9b9ae5115bba232deeca14deb24731dfb41df537df70e3a6f7f54120dd8310d0e55ac2f4092650fe4d161e187107c67f1ad3e0487979db91c34aa156492125 DIST github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.1.1.mod 175 BLAKE2B 52445791cacce98d4a1769ed48a6f6571b96f2214df9c190c696e146fb998c478f22809abf87927b6e9e698e89a61a7493d41a7ea8607bf26cb87360440e7cf2 SHA512 7bad839a80868376645d2cebd06e48c002ccddde04d3d2b86008f90ec2d52773844d2a660cf9ef9a05749ce24af3c50785298357ebe9d93bfccc8c033c74e2f8 DIST github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.2.0.mod 202 BLAKE2B 81570714e1bef726f8a36a7cd282248854f66fd2253b08db8246eb18a4da9779e72a2ea07b06f6d2e9e0fc7f665a6b7c6df05011f451399a0541e751d0e1ba84 SHA512 2a757fb2b229c83b7a12e9d4afe29e6964375b8ac69e52c4bd9fc71967e0e4bda104c9a6e791e1267fbbda81031c3a826191998925046b731369435406d4a009 -DIST github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.2.0.zip 7863 BLAKE2B d175d28e8fc987d9aa4d265d8aaab2fcd85bfb113d07836cdb1e50a2fae1d82d182350f3171d2f1060519bfdd36e9bcb121376bd8752ac4d28ac0057b4f0c828 SHA512 0882160f0a20fc9c2c669881d394c8013dd6a033ada4aabb3c7a3688a06c1b9702b5e61dde31ea4d59a857775ea0f7e2db4bfecb23a58bbfc2253dc9616b5784 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.1.mod 722 BLAKE2B 3b914e118763ce01ab0cc75f2d6106a9bbc805148b6c5a545a0133b4b52581e528cf975ca3e104da84aeacc8300fe2c9660f9ca80333263c7482162409431207 SHA512 22696799356119c5f09841ae78e9c7a86e8c5c56ac6329fce19e4e88f951e99b5ee541fc4fede0df723d07b2925006921d048c7849849f0ff0327154611de172 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.6.mod 722 BLAKE2B 3b914e118763ce01ab0cc75f2d6106a9bbc805148b6c5a545a0133b4b52581e528cf975ca3e104da84aeacc8300fe2c9660f9ca80333263c7482162409431207 SHA512 22696799356119c5f09841ae78e9c7a86e8c5c56ac6329fce19e4e88f951e99b5ee541fc4fede0df723d07b2925006921d048c7849849f0ff0327154611de172 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.0.mod 763 BLAKE2B 44c0f270dc205a790debc987fc317ce8793303f95ee4a16cb305ad4e1ed947dcf715dd1e7b45e58b21fef41997bccb067b994a8c9821cca89ea5f789370c4375 SHA512 53a8329c87880d34252b7695470bc6cbfc38d950ee73a9204fabca4b9c976028c8908c296d52f9d9679461eee9c5a24a214d77dbcfa15aeb4068b3895744131e @@ -903,30 +900,31 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.0.mod 764 BLAKE2B bd2 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.1.mod 791 BLAKE2B f86efcc756bf2ce59fcac9029a47d310f1c38b95ea0efa9b384772f40561bb9d164305ed9ca0378af47f7fb21f6b7e6741665ac32ea9b7ac805bbb6279fccaf2 SHA512 afbfdaa95a5b9af153cca280c763abe55d51092e48cbc46552692402a55aa8c4710f2b504731557023e76e84f819b11c201021408c8e520754c00a89f18d7172 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.2.mod 791 BLAKE2B f86efcc756bf2ce59fcac9029a47d310f1c38b95ea0efa9b384772f40561bb9d164305ed9ca0378af47f7fb21f6b7e6741665ac32ea9b7ac805bbb6279fccaf2 SHA512 afbfdaa95a5b9af153cca280c763abe55d51092e48cbc46552692402a55aa8c4710f2b504731557023e76e84f819b11c201021408c8e520754c00a89f18d7172 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.6.mod 827 BLAKE2B d9afcce6ba50fc582135fb3d5a3eff7526e717f36e709ea516496a26767d1744a26f5253c3b4cce82960521da1d7aa88605c14c99fa0e185b85047f5c643a1dc SHA512 7a06abb0a41f7ba51937d22d25016228991aedc50676aa89b588e770b0d588c8fada06769638a1996a3d2c63d05fd85981b731088b2eb82cc67172e49feb0ced -DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.6.zip 70353 BLAKE2B c91a1c2d8aa824d070c69a02382970d7c911f927fd5361c08ac6da37b44ae3eb705fd2a6c957342453d4daac82388c4ea6ed3f9f2fac045ff7933c88eac21d80 SHA512 d1b22f81fe21b1514d61af0d75eb96a3bf34bb25ef1425004f14b090e184cb3c73cbed07dd4502ed87801706cf507d3835c65563f90360d2f2740f5b98394d6a DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.7.mod 827 BLAKE2B d9afcce6ba50fc582135fb3d5a3eff7526e717f36e709ea516496a26767d1744a26f5253c3b4cce82960521da1d7aa88605c14c99fa0e185b85047f5c643a1dc SHA512 7a06abb0a41f7ba51937d22d25016228991aedc50676aa89b588e770b0d588c8fada06769638a1996a3d2c63d05fd85981b731088b2eb82cc67172e49feb0ced -DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.7.zip 70396 BLAKE2B 40cd117fa411797580eb164b0ff90298e1627f05e8c26450974bfa9c08100a9a313d60fe58fd84f5316fc33ebb61f00b95d8a6a43427133c49712a0b82adb03a SHA512 a893dc01d43849f7c0f3fd0bf4fee4ce2ca38f3527a59bf99d599610d0818db959659afdc7f3e746430677de332f28710079074628bc22bb1b2d9ae75300a13d DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.8.mod 684 BLAKE2B 30bd406e1b5ea11e48c4384bc899912a6925fd3a9a6ffee410f16c79b738365d92543a8d4864df69ab702572cd89a5c853da08ccd93a9f0de97a189ff0d7f141 SHA512 a81fb34d907c6354579952439bb240a6dbf6a98b13bfaeb8b40ae739fe6eaae8268c082b9ceeb6646807521563b76d4f900d9b02e7dc271245e08498cb921893 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.8.zip 74086 BLAKE2B 972bc145033ee174d36d88be59a55b580022f710f8c3e3da1b37ab3848e50be28d7dbdbb14185dddfe066996629a0952f8b67bc21ceba446e2c7067fa5f71842 SHA512 5f37c2db1a6f93cde97acaf81c482635c4abc467afb0ebf1ec263e7f02ce918deb075d9937a657599b94d37834d2d2e81684eaca5e8ed38ddeba47b9488137fd +DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.4.0.mod 645 BLAKE2B b1f7695ddaceb9551d45c768c4359088435de34df4fbd8cb699de4be98d531ac4613cc7112d156cbf2fbb31d15e2e58cc63554e770d069bd7150e7a20b2067d1 SHA512 ba5a10d52b8ef45c3b1a5f5007972c67a5a65fb3d3caae49331e213e1e15c9a10b8351da5f54b5f7f8bcf9287cb3878820fa84a5fbddd0425aa803dd1d53e22d +DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.4.0.zip 71030 BLAKE2B d70da790344130e51aaaab2e3a2799800024191a9590bc7b16a0b77bf23cd26e4649d8009848339c484f701aa3efce6f6f9c00362b0056c79cea94bcbc4b4752 SHA512 db2ab662e8df90553293878594dabf71116d73e14602b43930e9d3915f19f8fa9089ce49102715c24d2eb40ac2b8cac880d059611d96f28137e6ba53d64f8c56 DIST github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.mod 212 BLAKE2B a537d605640e7162aea3e8627008c68f17ceb1cb618233c385eb6d5841f1ab8d2aca933b752ec7b2178bd58ca9e6644b1ca0b9eb49b2abf625d77e47f6b8fbf8 SHA512 8dd0cc94669ae09b41f3f87c70c2d0d44783c7aea7b103bda4f4b429e44205394c3490e7b5e970f37de4ef6a2b0d674105abd3ccfa2cabca24119f30700bd3d5 DIST github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.zip 11504 BLAKE2B 4b98b38dbaef061bd55e0cd8c03db1d585a245eb111be0fbc72ebd2269f4f4ebfb1267fa87aa56b1e6302921fe4847f7fdb795929e521187a519a8d05bceb1aa SHA512 9b40df326943fc74174b4d0641a1f1c23fb62a9fd6c2f95eb000bbb9ffcef9f5d53c5eafbfa59134bb06c28cce14ffd4b34174fb7e6364a33d7f368a0e02ba1e DIST github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.0.1.mod 44 BLAKE2B a169216703e70b926bdc6d021a3ac7608d4cc13464f3f2b07f3a5511e675ff63a22f43382a0741ba886d88df4740b6f1b58cff532ec0799885584ee7f1170b6a SHA512 8e19e375e53e8b723df4dc6e4afe040a2d9efd9fa3220fe816215ee32e291a175a6ea640c38923f5777d05aed894091de0bc25c95a6386005579d4685a9a65ca DIST github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.1.0.mod 102 BLAKE2B cc5328a0958a27bf0389ef11daf678e61a8f00ccca7b962c52581a6f6a89e1af412afa321eaae58ff32bec0d9ae3760a3bda2d00edcf7b64a5663e59824ffa8e SHA512 62d09c3897be8ed667863f3947071ea7212df0647fda5d348589a9f01226ae87fe0015ca9ea8edcac77daea2eab1848c530da2abb924464669537140aba7bcc1 DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.4.0.mod 582 BLAKE2B 8fac955259f2a1f500dfe45284f0493c72233b3aadd6db061ce3bc594917851acd3909f8f6993c872c9ddb093303a269645edce20ce02f4ee91c94ab8047e697 SHA512 e46d12fc34cf08c32097a836441c9c790a3ec288d0dcbd11bfb00eba2f86d95d6638a9432dcb6f47464605b6987439ce41084fcc07fdfaec7517b5b15ef094ee -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.4.1.mod 582 BLAKE2B 8fac955259f2a1f500dfe45284f0493c72233b3aadd6db061ce3bc594917851acd3909f8f6993c872c9ddb093303a269645edce20ce02f4ee91c94ab8047e697 SHA512 e46d12fc34cf08c32097a836441c9c790a3ec288d0dcbd11bfb00eba2f86d95d6638a9432dcb6f47464605b6987439ce41084fcc07fdfaec7517b5b15ef094ee -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.4.1.zip 170221 BLAKE2B 32aa8b61a42a7b696efa0b867500a74f23d1d43c0cf2f8c01a5299fa609fe67d4d0726f986d5e1c454ae18729464a544f46826d510c58ebc41fd5f42de355138 SHA512 f84d28b390a1f7f4130a7c98747e92187a65c5c625102917eb165958d57b3158c2409f1e6ba8a4915fa05a067bda01ba310ce05af821e8212f5c392d6e4a9ee5 -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.4.2.mod 582 BLAKE2B 8fac955259f2a1f500dfe45284f0493c72233b3aadd6db061ce3bc594917851acd3909f8f6993c872c9ddb093303a269645edce20ce02f4ee91c94ab8047e697 SHA512 e46d12fc34cf08c32097a836441c9c790a3ec288d0dcbd11bfb00eba2f86d95d6638a9432dcb6f47464605b6987439ce41084fcc07fdfaec7517b5b15ef094ee -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.4.2.zip 170782 BLAKE2B 4b37a9b129545d8b6e633e9dddb2cdea4b58bf33bc4733865fb8699cff859bffc5f0e8724427213b4c185093f92d43cefdd03a506cfa2b1ca396439a30741562 SHA512 ca1924d58d6d1068dbe3ffdf213dca1532bd04c8f17efe96b81eb8ce50187f33f51bce0d1b707c4ecd9013215235423073e3e9f96c4505ae0293bd1beb67d7f3 DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.5.4.mod 535 BLAKE2B a8572064c2016ef2ca6135dfa8782982737c7bce0ba3c47a7cb01b57d248ce7621f38f50baa0d81d635efe2ddf826aefee5cefd1397302632132b6cad540be50 SHA512 ebf4a8b92a4ed772b462570d38ca49ee474817205ca97f1a87bf3b629ea287d7b540559258ac2e7fdae1642f7334bf88f759fdec5766b1808deccf7f722998fc DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.5.4.zip 196114 BLAKE2B d65eec4057d39524638aac882ca5b1aa9c5309c9e0096f0b95e9b41546b5ccfafc08c2ca32b316401c885d0488e722d4502cc839808a189ad71a4738251f9ad0 SHA512 85af16573248328d8a6aa7d4235473c1232712f96ec4d3bbbf00ae3cea0f60280a828e21c1eeed53200ff0823de6c3a82310485528c5e869324efbae4644d3cc +DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.6.0.mod 536 BLAKE2B f23820758ac8a0b211f45d853672c7002d3f55f8672274553ec7a7e3fcb9d03c0d2c716f788fc742594602dd4b064f94a19afdbd8c6c954df3476b4a8698132f SHA512 6e87faa46ff7810c06be7bcf42da97e6fd02b978487bdbba239bf699aa263c0ff48a45564e0551ee9edbe70e80a3964fdfebae1203f672d48672cddf945ceda5 +DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.6.0.zip 195636 BLAKE2B 5b565f7dfd62420bc250c89a41b5394f67a9ce90ee525a1ea8b6e07702692064b6883c420ba133a51d15601f8120f696f5996c090b367cd66097209994b7f827 SHA512 1eb2f65c3368571d812c93300c03ed3496131f9c998ed6f6ba04c3d4339b2c8052fcc45ba19e50df44f594b84c200205d216362b58234d24956e3ea502f80492 DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.4.0.mod 519 BLAKE2B feb31dc33514eab1788d398fda3573e2207f6ed5432d6bad16ff96306a3ac0f75c9291a11baa1f3e56bff3d560f2bd24fd708e480d49ab4301fe657ed23e3d01 SHA512 0962d0d315c2436393cb2fc1f2d8bd9b7135de0daf50a15dc5355b590ef787c29754f0aae5ac1ec3762b3334a6a286ebc4bcb7507d263a22fce09397363b1941 DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.4.0.zip 36121 BLAKE2B 306b2c3fe0d678e18a7bc7977e2a99493a100401324f46c2e2c64d42ac1fdcf9376a2b4430e0588daf00316c5cd075a38d17ffd54e25cdb9f91579f5ef8dbc9d SHA512 2c7d03fe6291ba9dc61f501f74398c118db1fc31400389816f8fc3352cc8ac2681fd0c9c8b9338484e76cd7d42d2f3285bc67cc4610ad36e00e40de403f31f3a +DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.5.0.mod 520 BLAKE2B 64ae2f4a9c3c86b6d166bc830055c13901934b22b0ae829a76e263bd11cbe1ab83c17d1251ba7e9874edc485b6ab9c4fefeb1565d1708c5f4ec9459f572f1f16 SHA512 20eebe01722e868d1207fe1d152f672a1f551421f67607b1175ac7a47bdec1382ed4603c030abb4579fef787c566c989f128ad345d1c67007513c2dc05f7b0f3 +DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.5.0.zip 57609 BLAKE2B 026effeedb91aae4ca305199fe3115796c77e6053d575cc0615c92c88cecc195a077e5deea424b34c6a90d8c52086eef694cd14bcca2bac5eb6bc6d2048d0199 SHA512 63cef035bb4f7126c16e66ff817d1957effc31ee5d5be1e4797945a811d0fb055150d764eb3c77876488e9af5ef323d681e992baed5d31112047b97b6000808d DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.10.0.mod 601 BLAKE2B 22772562fb5f1ffa4cc93b2176120b6a73e6c1c82359dc1ad21e127bf8c6a30ca96819214f310bd8f8d4dc9f3bccd4e892ca76b27da92295c83ed680585f7812 SHA512 cd85af5f24b24353d74cea61a3470b482e6b094c9e13d4bbe795ff30e446e445217cbeabd8fba69e40990e646f58ad9f1606bc4fbf98cae4a4c58d736bf83c86 -DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.10.0.zip 49793 BLAKE2B e8bc87c7f29180917b3d378af118c00cd89d54a523f28f5127b09178a99a4c204a6e43cc1d500c993f3cf11613da2b7191b5a934fd8ba1ba93a4cc277fc602ae SHA512 aca0628e60932ae7fdb9580ae6a373e914a86b0a02c8acd29c9d81e1c6863da10d7b9cc851b5ae5fa3e7e6f7dac32a6d04c2b8fddc86961cdddd583d0e387ea0 DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.11.2.mod 749 BLAKE2B ca12ef58ef8e2f677a9cc8e6fb1b4b740fa2319e593615645182d4c84209d4ce3034acc497bc71f2658201709ea3a060a251fddcb7e2c7967bd7eb5acab4fc6a SHA512 9ed2c9dcee2d84308630dfab7b732e1fb72327e08b4e5447840c1aac82115721afed3f1d1abfed73449d52b3954df128b5655951bc503dde7a27f44009de949d -DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.11.2.zip 64167 BLAKE2B 10e8c56823123ee752da63766e98133cd2468c57d0adadb23cd13d4e579b91d4346992cd3497612475a606f787a69e02878f47f4312511a38c29682408e5cb78 SHA512 fd993e9e727d2fb9c0ae03bebf5d60780026a5ae4ac558e3d57ac7935ef2b7a19cc9e5c32f858da97cb434770023f5693dfc57f3e31f73c3fa84ef1f6648a7dd DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.12.0.mod 749 BLAKE2B a2f9074785f3ce180bceaf86a967bfd2c9da906d6698a7b0945381bee8f24327744f029ad433497d950fca0e14dd48d62a66187c51864eef9e96d7f657d0741d SHA512 f788c6e8788f800f661348e667df0fb36c9bacc3613defaf0eb528b644dfad239846595388f82c120ee476ab9bb65f927e5dd4a8e25740024456965aa49f1a3d DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.12.0.zip 68255 BLAKE2B bfb7bc13a03301aa6aca24e7f04e85d001c2f6885babb8b6400bbed223947c71848c297a0636cdbb92468d4b5068d3bb11edd6f72070e09cfd613a34ab90695f SHA512 cf01cf4c9ec51640dae62eea21e50903a2947e7d31835bf699d4ea3446460ffa2f93144127c03ccc27db8deb665f735f9c809b39b27c4f7d1eca6aa60ff81379 +DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.13.0.mod 750 BLAKE2B 38b78f2c46157a0402b8de6f1603357159c18af8fea399a80df6aa2b0047c9913429db7648bf38ec0bf761e1d35b4c8768845f2416df003077b48236d8a2ae7a SHA512 ae912907e85c9555883b77e62be62525a55c1b7a7b937336b66c3cff989eda3d427ca68b788cc7e5bc8f21ac107d0942f803e1ac082697d326cea40ea03e2ebd +DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.15.0.mod 786 BLAKE2B 887b9571e5921e8b3f8a4951c756eeca888c7706759773797e86c87bdc86af3d31f95d45a13841ee56929e07f4f9695a68f0e0ce694ac2143fd6b2234eb08cac SHA512 cc8fcd64a35ebf83c59c402a1248bbb78ee53e50a67787f7c60b65cc5fa0650cf4ddf6d9435237eaa6b02c0b4d16caa7b4e20c65c581552e4a6a34145f657852 +DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.15.0.zip 69325 BLAKE2B 492dbb0b53215d4b532f403c92f9c8510f4c71b37f6833170409f2bb8802273275fad1fa93dafd36bb5ade4ebd8a8b090e9003975d3ead6c64175f3734f1d50e SHA512 5b72ef007d25ac2f7cdcd3fa1a22f96a05618743dd70a3a4fa875f30b49869537d3ce219bfd916b4fef0e5763506c064b81e1b9e2ec7863794815e117bb892df DIST github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.0.1.mod 244 BLAKE2B 93f07be64fbd2f3d86f0ab542985516f2c18fedb73466a34109a8326092a18aab7653eb03f4b72ee95e61f81abce19070e6dd627be0dabc3044911d4ae993386 SHA512 7b116edbc6057edada68014b6d58b9c41a5f5e0dc1ef5563c9a79d4ec8f8b29d9282fe557e14595b76137910c62843859a60333a2ebcf479627006026366700b DIST github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.0.mod 242 BLAKE2B f694b2bd565193622abbe800a198b7769906e2f6a53fe332e202538103fc7a205a89313c23cb232c37d7080d38e62efdf3b9a74c03229268d4861e372222ef8d SHA512 0c8c31fe13bf7152d53990bacdf46c230c712e135eeb3ce3777e75f1aef99fb6d3e73d5dada78e22fb8b4839f18a68602a4c37f9e3ac4079d2cf91947bdf96f7 DIST github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.1.mod 242 BLAKE2B f0eb5a9083b07529cd1c2069a507594b2f020342809b4fb8c373aa2dc2dd69528f3bbd33cae6466cba23e02d80c90a64487074a63de73d506e289bf8a5103808 SHA512 35c08be09ae0295cc22b58123c2ee8b9ecd2e1012f6b3155c27c92d39abe7041f1a20cce9125f5287a8c19510851a1772e3f375dd66bbf19730ca987f7f22a86 @@ -941,7 +939,6 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.1.0.mod 426 BLAKE2B 97bc357 DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.0.mod 370 BLAKE2B cbcd8cad65a7f3eb072687961391545a6b8c7355e112d856b84ff44dbd7a0d405a2dbeeaca642852ad09db20da2d55770d7389bb9b2ea46b7b3b9ebd8238e4b8 SHA512 15f15a5422b9277de92fbdefd6e181914a5b36f54e09e298d3f5b44f493862c1e15fd1737fb04a7fdb44adb9528b07300fbfb6f7285afa2558f83c37b06ff2cf DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.1.mod 370 BLAKE2B 7c072bc374114aeb922d62e38c05267bfeb4a5532807dba3c71e10d05e61fb7aba9bfdc906abcbd5834b8d01c6c72289e15be0ec897e8c2d7288519ba01f609b SHA512 f0e02ed9a9ec881dde6f2495ad5e66aba3b3b6bb9864d609db508bbb31be6d5f6224df415b342b6f4fe6256757c25a54a076a561c8afb3aa60fc90960173f127 DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.2.mod 371 BLAKE2B 69e5e96ee1cf67df912fb7486f5d14904d58e7b16f2488a2f5de66540b22e96673d295f6836e0d1e06ff21b7dfb52f87a2243601c450bc7ccdcd5dd35cc2168b SHA512 13cf781c80b34ee7c32ff14ef6f9c3935501a7c1869a46af91e36ab6414fa457a01ac380ea56e9d0e9340f141bc8a9d80a7fb4921dc6a5b8a6baa280f40aad29 -DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.2.zip 28990 BLAKE2B 30b1ed881329a793e72eee3d077fe9f442cda5e64e7176cc3d6d69338c119b9b72b30fee3af23c80ba990fc3f01130310d37a88b656ce221c6f0ae297c8ae409 SHA512 a87fb7997c7fc30e3727b47f84bda8525a07017f450a55f408e8459fd005affeced2063ae7167feace9903ea4435fdcbae051e187695ffd9390269cb6c850dbd DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.6.mod 1144 BLAKE2B 8a18cdbd4406a6b8eb1ddfbdf619cd41b0163c2a96a28a880d923cdf1833e8dba575182cd74de9e5aebadc68acb47867a16ab774036a92b117ac539644d27dd8 SHA512 62ba752120f55efaf65883f816a5231ee53697c55b71b7195e2a640521a47c42395cb8986a7b5d602b2f2386d0f92a116a45bb1082de00a621a2499f8145859a DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.1.0.mod 881 BLAKE2B e4716903c49e7cf131d1f31da0a1c33e29938d0606c2bc3a082f5069473bc67e870dc8f977817720b775502f9132be06d5e94c291839b675086f7debda578c73 SHA512 050d842bd3e7d2a9fbfc89d92d629695b17d066c11882b3a173341010b1291b66e751e8e56c73c549ef5c283579d7255751f5dc8532dfcdf885276d2337a6eb4 DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.2.mod 900 BLAKE2B 3a8a011e06d7788339fdbc400b288e42c420a83acc0e9735978d98d6e070555828c440853e4393ec7821746d97a812439d6b0cb9b98213979497851a3e5bafc2 SHA512 447972b33579fe67a56a3427c0fcb71c43bef49b1b8ce7806cbe9a5a595f1d86c43a25279473b01be76f87825e20724df8b31b2a9a3b54a4c5c436c3a4cfb12d @@ -950,11 +947,11 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.8.mod 852 BLAKE2B 3efceef DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.3.0.mod 803 BLAKE2B c921042c6c38559fd3a2ce4b3167952cc42b59503f6e514cdf796addbb86b362a066b78b34a116619166e2f2831f823e944f27e871179041e3ae72f0d85a337c SHA512 ab31bc91ae7c2c744d903db83f198d216336a49cfb93c0dce97dee16d250a529553caa89ed2f8b4d24b84439852090991cd558b4e89c61de270931bc53201a72 DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.3.1.mod 803 BLAKE2B c921042c6c38559fd3a2ce4b3167952cc42b59503f6e514cdf796addbb86b362a066b78b34a116619166e2f2831f823e944f27e871179041e3ae72f0d85a337c SHA512 ab31bc91ae7c2c744d903db83f198d216336a49cfb93c0dce97dee16d250a529553caa89ed2f8b4d24b84439852090991cd558b4e89c61de270931bc53201a72 DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.4.0.mod 803 BLAKE2B 2af101c5affb2b8834285cbbce4747d4dd4dfd7d2862875e7e8d9e45cb6359c05ac9fc7b927617ffb8d07019d1eddc10d0fd560d5b404d9c9657c3c9deb11631 SHA512 63de4d67f6cfe16fece869794ea257c899e65442c8f1930f7cfd278a6a953a2894328a4ba8ead23f063b69c2ffb14a9a1693785ddd6e4b5b3b3108294d90498f -DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.4.0.zip 65138 BLAKE2B 657a8a297b5c4a57bc33bcbd0887dd7286ea9ce2770b901be67691520c8e01a07ccfef7abbf9d38ae4d70ed8e2bdd2621f5d9990db67a5b013f6f0ca75a339d7 SHA512 61bbe31faa47fca330513f85878e7f6701c7764315082788b61062b7200700713980aa54e4fd624a3e924fdbdd5fd88c0824e1489e2936643da625c42ad264ed DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.5.0.mod 851 BLAKE2B 5b0d65ada1c9a46538c42c118b8f1b2ab077f576b23cb67d02bcc70e3eea3ace96c9b8a606607dbbe8ba82d2d0f507da33b1945cdf21a13b80582b7096e8606f SHA512 ce2a2c9c703365ccca68d46b625a98a4d643c6cd11974b2b2eeceb55bd4367bf63b59b791d889fdfd87a232e97d438538c31fa98eaaacb0d0e9e86a0df011635 -DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.5.0.zip 75037 BLAKE2B 4e2be7488633994f36856ef04a8d4a1ea9d376efa235c0abdcc288ad90ca3264054102396a35b0e99237ea3279778c9443323ba3fbd7bde90238ac57cc4e5119 SHA512 a965c8b7c596af26d7435d219bb6de808e2de844d2c0265fc1e5ddb439b5afb48f57e4871a7e580bbeb229ad4d3250b0cf035aae6325c2126d180e3e100ff3c4 DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.5.3.mod 851 BLAKE2B 3487669979a576aaab0b82e734cfd8523cfeeec160f854497bfeb874cfa77e7829b8c50a31ee60f07261370e437b7f68ff9a2c6be924fced5a7a35cc5d40e92e SHA512 a7283ffe4b4a050d997cfb6cc6d813e8da360ce1eeea2c19eaed772ea4e9e41d6fe9baeece6e1da75f76f2b5759d64cad20529a967a80796a11fcce7db38f831 DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.5.3.zip 88934 BLAKE2B 1ac585d227d4437188657e55c849e53d3b3b75d0d438df1f4282774f319688d440711ee38db909560954c599e4d3cd031b34641044cca008cd0cd68f04eda438 SHA512 990b3f0f740750752f077ea91ab9f3442006df6b0e2fed8892310a42da641120e324991d854dcf0f7286dde0d07c7fbfd8c432c7abe5b4499c299e32d7f4c71e +DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.8.0.mod 816 BLAKE2B 8413deea5ff0cf41eb1d3262ded16221c57b27ba0d137578980ec3a380cd5f5753b5f58d7b5254a87c21e9164b79b671be4257153dc41e91222e1ee0b8486560 SHA512 426c88e7cebc76dc6a629226c621164f7f5b929f06e0170c7442c8a864c98c672228c64682c424a41ba70dd47309c38bfc172116a751ef4d07ab692b5085cb04 +DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.8.0.zip 88624 BLAKE2B a4af8fc5061ed181663c356124823d56a3e5fd7da857425e5e507599b9fc140845f7b54a33b1df9144b9bacfe27c0aa80b21caf01540d79e03ce91ebd8418bc4 SHA512 7fb0f97e7d6a9fbf163febf71bf9a56c7fd33a8483994178a35cb1d5387a2ee620db39c9d3de4981ce8ced3b2efc77917e56218ff70109ae29dcda2b358e0f6c DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.1.mod 151 BLAKE2B ab94a6e4dc5b4e89772ca808a493ff31fba113ad84ab3cca1da6e4218296b47fc995ed9404599e1da395f6f70b2ca7d741cac44f3d483c8b623424cb687c42e9 SHA512 a9181c88fcf8cade820596ce2891e44db922987557e5fb7adcf083d85d9901f5f28dcef8d02e533bfb83eefdcaac892eeffada67727c623306edf5b0a671baae DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.2.mod 151 BLAKE2B ab94a6e4dc5b4e89772ca808a493ff31fba113ad84ab3cca1da6e4218296b47fc995ed9404599e1da395f6f70b2ca7d741cac44f3d483c8b623424cb687c42e9 SHA512 a9181c88fcf8cade820596ce2891e44db922987557e5fb7adcf083d85d9901f5f28dcef8d02e533bfb83eefdcaac892eeffada67727c623306edf5b0a671baae DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.3.mod 151 BLAKE2B ab94a6e4dc5b4e89772ca808a493ff31fba113ad84ab3cca1da6e4218296b47fc995ed9404599e1da395f6f70b2ca7d741cac44f3d483c8b623424cb687c42e9 SHA512 a9181c88fcf8cade820596ce2891e44db922987557e5fb7adcf083d85d9901f5f28dcef8d02e533bfb83eefdcaac892eeffada67727c623306edf5b0a671baae @@ -964,13 +961,16 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.1.mod 151 BLAKE2B 773a1 DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.2-0.20200422005655-8775583591d8.mod 183 BLAKE2B 7a63c681412c6544f8abf6bc61b8bfd8bbed86731c3694ca9edaa92a08f85a97a9779d10421211e93b3bfa3e316073cdffe78cd8f59840c3460b4711d12dbbfc SHA512 2b90a6dfdb96aaa9d57a5378ab8b81f0ca18ae65ff15f2ee272ce32d0eddfca879330f9f51fbcc4b4e83b09ba8929ee62a76533064e1f442594b5f2a296df744 DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.3.0.mod 210 BLAKE2B 61464c6c06b125c02803bb6b6bf5e7ecbbc61f347613a316a611a92e8e4a616fbca2c1dcbb21c0cd89662af63cd17a8a86f18e0af0c6eab291bd3afd35351be5 SHA512 1504b61459dbfb6033a80e8cb9d71f4b6ca0fc56a65ab1c1167a150d97249ebee5106b445e23869895e4906983a56be7e10ae1d2565c3191e2ada9d72a08bdde DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.4.0.mod 210 BLAKE2B 2d60cd8b81b0f50bb501c3972fb5691e84570793cf3ee730ada68b5102584c868023a8edc41e98dd082218c6bd7f5db207afa1b1dea24941fcf204042df81ad9 SHA512 c73ef680e94917d594bc505002259602cddf225edec011bdc751959e613567faae60ac98af69e6da21ed9e2f0b7ee3c6aaf59fc5574c30a656d844fce6a94481 -DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.4.0.zip 28388 BLAKE2B 129abb8e47688e8e30285a325614271f6aa3a40eff799cf9ebf67f7142d55ede1e2029b83e5856f89b6718a388711f2d1c7c7864e79cff7d5c4bf765bd1441ab SHA512 a2530ac57a943ef9f8690a8ca829ede469c7c96890c3e69286aae5b5ad726aafce1ec8733ebeee303e51ea06e248fc4db932d800c9ae3b8e57010a0585e33ded DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.4.2.mod 210 BLAKE2B 2d60cd8b81b0f50bb501c3972fb5691e84570793cf3ee730ada68b5102584c868023a8edc41e98dd082218c6bd7f5db207afa1b1dea24941fcf204042df81ad9 SHA512 c73ef680e94917d594bc505002259602cddf225edec011bdc751959e613567faae60ac98af69e6da21ed9e2f0b7ee3c6aaf59fc5574c30a656d844fce6a94481 DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.4.2.zip 27993 BLAKE2B e796a18220c1dde60f6db6da21aa4b2e09ee9b6f6a087ee3bec3880c9a1b88eb2946662fca310f7a3b82d0bbbe11cd124f717aca97956e44d4b8799737839b0e SHA512 69b0066a0281528b798689f987992701b0cfbbbb7306e15729fcafee56fba184a7cb8f630ea6aeb06d66d8ee011a4f1b557774cec7a0b1613e2f997b939ec505 +DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.5.0.mod 211 BLAKE2B e992f5ee20b6e532982b19f9fffe21d56031b9bff4603f2944ac0fe669c62f936f463ce69cee28d6a8063d265125e06902c803b8686877eec5d6af8211c1842b SHA512 673d494630ec2800f0876b88ff1aa0b8c32bea4f771ec337731e9fa308cd153915ad1eca21a811707f6e39df8bed5bd4997a3c842a9b7aece887821aa7f074c1 +DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.5.0.zip 30592 BLAKE2B 1c77e48081fb0d84a6d18d1e5812544ce8afb3329a50753878d1149b9a35e751e47b36eefed7f747ad1529262388b8580ffe470bfff3bfe00668ac526d48e0d4 SHA512 20bd3a3df033f0baa8cb7e568355deb9cb992536df7034cdfaa393199f635295346935c82a8d024032c68bbabb7f4308f31e3e54a73b777397e2a9a2dd5219fa DIST github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.1.3.mod 217 BLAKE2B 0df158699398894e1432914bf4772be920df3e394ec57671b83ca78ec5849a74f445633c3497f29b219dedf9a858968997c5ba7462d8fbadb7d7df86f325bcda SHA512 2f1110e3b6a5f54251745ec3dc96027820ca56dead02a971bb37e299dfae62a3f5d7b7ed3dfd92341db9e0e41e9108f284ccd06c0b88fae8c41152b337e27eb2 -DIST github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.1.3.zip 19482 BLAKE2B 5d219d71c67681933566d50688deaacd32ce21da86c5a8737f1c3fb0ef148e01f21c651a52b043f22760fe9bc9b38c50873327f0d1203325da725e4d78437540 SHA512 52fd0b2b9898e13cd27ce7addcba7dce1251957c4a22e55170a85dc164acfd296d6632732f0d493dc98014dd10f6a22bea9f58cff5398a553586156f063ce6fc DIST github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.2.0.mod 218 BLAKE2B 4fe104bfbb0379973cdcd1a1147741867bb1a7242759aa0ee33a9fc90bf0efa1125bc2a97aea5709b4807e775f5dcc6f6673e83a0f5239c500384dace8b4bf7b SHA512 7cbcaf90c798a6d91f77c8ac7553cd9979fb6df42ccdc373c0fc04b3ff8019c833fefbda2d54044bbe3daa3fcc7cc7ed57c1192baf690aaf5e8b4f56db97b0cd DIST github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.2.0.zip 25312 BLAKE2B 19d91821399d54bac2714aa18237a40aef1a4e84c8ffd655110268c59c09a94459d3b5983aa4f85a8f6c3107051c34ca18c9a65a3c4a060578fcf11ab0e86647 SHA512 b1c82f8d4c4486c3ca6c84a5e7468a9301b686b2400429a854f7212c14ae80cf5c3b2cc65791029100a0b961660cea1214d8a102916b208f39ca9203f6d3c38a +DIST github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.3.0.mod 219 BLAKE2B 328a46edec8119cd37c5342dd7f407233bf55d901e9a26e4bead8e68da43122e1d3b1861df371f7ba6ade8c0b30d7bc086c50023319507dcf83c8f1eabf3a712 SHA512 afc96fb39fd9b5ed646edb34d87545c323e4cff688957c792582947cce4021abef9f2ecc93e63cea77e19cca439351cbf0fcffe4c4450ede138ae97fba8f9f5e +DIST github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.3.1.mod 219 BLAKE2B 328a46edec8119cd37c5342dd7f407233bf55d901e9a26e4bead8e68da43122e1d3b1861df371f7ba6ade8c0b30d7bc086c50023319507dcf83c8f1eabf3a712 SHA512 afc96fb39fd9b5ed646edb34d87545c323e4cff688957c792582947cce4021abef9f2ecc93e63cea77e19cca439351cbf0fcffe4c4450ede138ae97fba8f9f5e +DIST github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.3.1.zip 25248 BLAKE2B 6205cdb7300308eb4da4e781eb090804e8d4a3b94b8ac2fe1a613e2ba87c012c3714563ff9725203af8ac9d941ec98a47b884d0bc01ccf38e0965e3215e5473f SHA512 5d8c46856c1751ca0643e7d9be99baba46ea41f12c1780df4bc46e358569d0fc9f4d4abcf23999fcd29f84d1add33b689884d96af602a84a9cc87fe285739b11 DIST github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.1.mod 257 BLAKE2B 2dd3f1957f0e53f00825e340c929df2846173c4398590487acb3f30981ab9cec0be500bc16fa359b4a88c152926abf894e74409e33d24f5779ff57b9a3fca290 SHA512 e6539b92fdd2d64aa5904edd0538a36793c6a8e311e934dbb6f6c88e1f2d36c0a3a2524e1722647df6c5670df02bd3bf39d56749dd3507771dd1d3e841b9eed4 DIST github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.5.mod 296 BLAKE2B ee23b921f17010c5ff0bc0f31fe41e3e92b74b02798361675f6c5ab1f31987c7eb18f2b9565f51b0733144adea240981e91dce530d176649fc5bca489aadf160 SHA512 b034af46139751d9a5f4518bc8b9af23fe351b33354433508cf7ab36bade313a5b23a9e5a61cdcff6c5418676dd21a6967dcec4ce8507fb7eccdddd64e7cbedd DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.4.mod 675 BLAKE2B d77b929ecc2a2c86b84d3e6372c2378a5504e0ffcb7feb8f4ccd7678a5c733a1521d6ad93bf293f30c0dbabf84589113e942a960283c1640d9e7cf9a560a015e SHA512 e979a9e6b7d29207dbd9a08837dfbdd5cad8b254df07827a8bbe762ce67228467ba3d94438b92857c567d17a618bf6ba53691b62d1f998f59efc00ad98a5de36 @@ -978,14 +978,12 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.1.1.mod 453 BL DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.2.0.mod 504 BLAKE2B eb43b7b81611570a93e726d2ee990aaffe48c7bdff2ae982df1a71ed5d8ca96e96934b2ec2c564572cb78412dc75c81c1d9094e3213a1840325d4b95896c5a67 SHA512 71e2cae7c074ee3f97f295f4c100bd072dbfaf737900d3d6a62cd14685f6fab8c202d94f5178b5f29396410aa26d646f89607e77f8cac36e373ddd83687a7409 DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.3.0.mod 407 BLAKE2B 467c0eca96bc9d1e010d2ee538431331670e976c798d525032ff5af6ba46f84af2bbb7bf27edfbe1d029df8d03272d1114d7802901a76bf50ae09e8048788d75 SHA512 679f607f7a3e9599993b7b43b915eca05b0de30d2f663d0c96f56825ddd6a4c7e61835be15a88ec0c0ecdc7dbf8fc9caad8a828e496da5e3ce5f296e44173b2f DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.0.mod 407 BLAKE2B 5dc57da27b3b2338ea865e581f5295d7f688940c77153ece85768e0dd9c9cc7ca828154e3615473921ee89361c22d71ad34d74f4d7015a29b70abb9abc4d1b87 SHA512 0e451df53b333f7ba88a9b09ecb48c0b8ebce36485e35ed3f3c389c86e940e951a68ec0d11da29819bc0085b13a3041a62d56814fb78def72717e6aca068ece7 -DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.0.zip 24851 BLAKE2B 7196a92791cc8b4eb057b074cd46edc512743d68607e641b916658f54993db6b7cc988c66179f2e521c554c6d53a380c79ddf9108b1ae0c4048c7df637c016a8 SHA512 206aa1e04213a4e1c9265ac1a9efac23efc8b9f3b0d4e86446851191d8ea7bfc9409567540a71ee923430f2573bf1325bca166c60a679015e31ea329fca567c5 DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.2.mod 407 BLAKE2B 110d7624b588e5948249196710c2b9600196d2b3d579b04af19fb8270e4994e026a9a8dc22c7a036bd8326c1ecd15ae9780057498d11e57f951595b08d61dd24 SHA512 c447729c3929d1cebf1fe49bbfb4eda61f16311c2af536b9e48a85392f4f1cd117938b87989d680022f0edbdac16f841993d5387339058dc48d2804849758bc2 -DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.2.zip 24791 BLAKE2B b70f159fd530e79c392980753d771063c506a6d103483a2de3a90f0a2d65d68ea45ca13d401a94a355d3f876895b0454d4b63fc994df118976bb25be703133a6 SHA512 72d9360fe4c70612cdca7501255058186404734699cc29d370b00b1abf052dc7b2bf6405c83301ca76b8a2b0dc8ba86a0eba6b1431d024b9fabd43d3595aaf5c DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.3.mod 358 BLAKE2B 146231ac60a767c8e22b37cc9a7938601677f890a4c9001f8c6b612676036128a798a1d0f5ccebeb23a984578341491faadef3f10985336173bc4380ed478309 SHA512 ac2ab6449a3382586f72e8260b54a1c7b61c05715caaf4a199948fee36067504230f4497ae7a5a860043e970d5f1f45a68d60aeb6fe3b45eac8baf6fad084693 DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.6.mod 358 BLAKE2B fba0e625b6f493f721478888cad971623e51899b25e915b27b3c1231707bd4fbdce1c78c9c73c98306722d331e4a3daab3ca7210cf9f818c10abebe081fe9a92 SHA512 fac2f593f7f9a09c1214bd50d83f8c96d80d9c5fec2b08b8539a9e41aef3396b6a6187db402509ede7a8ef6d572013afb4793483c4b466573293ba11935a1e8e DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.4.6.zip 27306 BLAKE2B 32fba3d856364b4f46ca96153084ff738a2f9dbea3473ba4401ca4666a9935e1187b2d896a44f0f870239c5a5f5a934c64c6676cc3a65490cc53d5c3e2abaf37 SHA512 f1fac73a94a63080d5c9e0fad87002b90e856ba1caa73eee9a6a942e284dae6d9acbc715c281c20accc83370f542c6dbbdc013a910b61d158ecda5d982ae25a2 -DIST github.com%2Flibp2p%2Fgo-libp2p-xor%2F@v%2Fv0.0.0-20200501025846-71e284145d58.mod 100 BLAKE2B 9b4bb12aa2ee162e8a89d52977174b2584e74db3c988293ebfb7f850d86eb3d69fc2c7a58b20753ca3f147029e78401bcbbb56654c5c6adaf7b67cff756ec413 SHA512 b31e959a71cd3c6cd3cdbf4a196ddf2802ce5d081e1048dee2e22eba52bc66ad2651b6bec08f1c667224207fa6d2ad30a5255b179cceec9ae7f226938e9739d8 -DIST github.com%2Flibp2p%2Fgo-libp2p-xor%2F@v%2Fv0.0.0-20200501025846-71e284145d58.zip 29161 BLAKE2B 02b7a0fa3e86af04a0874baa16c0cd0afbf42abdca2faa4dbba8b5ad844616fad62778dc0a7141f76d5a17d0b51e472930013c5468d10f17ad16636f0d8f7ade SHA512 629e6b2593111bbaa939308b2553bd423537a58659ef82f593622b9a0f15a0381212002201e236ba52777ae6d10187604cd398c74de22ed591a27872ff063216 +DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.5.0.mod 359 BLAKE2B 254fbec187ee697445772d551aeb2b1c4f3345a3a817ef295fbc16f325a7bfe00fb87e25f0ab874d4916952a1041bc8603547b70fee460d89a4f7d797926c291 SHA512 dc95fbc8637d0ecd74854f77d271152161e92ff8de7efc130195dc2b49a2157a1acd414d0827d17c1a2d6b32d586e0684423624dfd66c753298d8defcc8021c8 +DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.5.0.zip 28070 BLAKE2B 91510a11b903c048c217b455c20e77517facf314f9d9622a34ae169e3a47b9b6404494e5ae1ea0ac9ae1a3d1d63accf670c1767a4aee223b9ace6030c5826758 SHA512 c3f14a487f331b26b92274dae991cd4fda0601bad0c28840e13a210928288b6a75110559d652a19254722b5c65aa9084aa41757ad173e630e7cf912c12f36614 DIST github.com%2Flibp2p%2Fgo-libp2p-xor%2F@v%2Fv0.0.0-20210714161855-5c005aca55db.mod 100 BLAKE2B 8752bb75a22a1f7d636b1ae38a6210264f7bc83def9141b4c39341b38f4b339eb7e82f9ef8734a248e2d2e9f2b415f3e0ca8d0dd3be5801320fa29b7f6269197 SHA512 6bc979bc1d85bc4c21df1582b66d066debff58555a9c3b707e6616a002deadec4bb58f21b9877740e4f21dc60ec25ae372c7081f748a0c085c8db180a0d07258 DIST github.com%2Flibp2p%2Fgo-libp2p-xor%2F@v%2Fv0.0.0-20210714161855-5c005aca55db.zip 32664 BLAKE2B 0fc8437937b7836baf55f9afd6cbeeee2f8ae1e687601701ed2a22a69ccc41f4ef6bdb16578080bd3991b51a90d157190f0a3dbd827d69cda7583a46051f5499 SHA512 e3c5e1c9cfc58e3a42b43468047a0934a30b4248a547cdda6cb99454fe8af428fa39c4aecdf0b9c254c2860b078e74627f53d964e12fb2b1a22da094cf61a7d0 DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.2.mod 140 BLAKE2B 5398a8b76084c6d003bd938399937663408db2fd8af0493e84ae1948261cad191dcec88ef3a9707dd93a6997e4a6082dddd772aff472020456b25dba06d26096 SHA512 6752dee08f85436ee1412ad61d9defeafc0fe0d52272defca25cda2f01dfa4befa39b2a1e3a2aa5e872ca7c3e737e0ce008e2cf282ba6dbb4da3b5c175dc7dc0 @@ -999,10 +997,11 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.8.mod 183 BLAKE2B e2687fe DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.4.0.mod 183 BLAKE2B de775b0aa5925844f213237ea1dc8ef51371aff1bc170f8bd5acfbf77878605484700038f58fc5debf5a9dd0e186cabc62388a5fa998ba2ac813ab1101615b1f SHA512 24d7fd3994cd9639ee022d8551c65b6b2caff5987c31fe75ac564a5e55580cd92e0e19cb1fdb84ba6939bb07b530a06419da58fe5a1040266cf28cae7f949ff0 DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.0.mod 183 BLAKE2B 86c931eb75eab40d897ebd3bc4521ad3e5c2c0582434788fe15883a99194bcdf57d5bec1773d5484f98a2b6e51dcb70df8516426bae0724afa6e0211a7b8eaa5 SHA512 cf83656a3f67782ffcced1bd308768e981305c121084cc7feeeac85b61eb90a05d2b21f5f2164138431e8ec2bad6a3946ab2d3416961d1ee019edf4c342c4424 DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.1.mod 186 BLAKE2B 25b71dfc048f7968421c2ec2d40e5ff9b3f13251bcbedbc11ee163cdeb9085b1b354b63f9dc3ca84e656c9d55cef69a82d5dcbbff4319a3a0c0e66ace968762b SHA512 b6b70fec7a35db48720c191a6b01ce2098be3319a1b3ee73654e454745212d97ec078f6a1c0acd52fc72e0e529df25b2a24d1093137218c4c15b503a208e0be0 -DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.1.zip 12215 BLAKE2B 55f0c36b13e2b6a8f1fade72c20c9e9638bcf630795f9f368702cfb6552b77fa411741023534f1209e411d885747aadc7cbd851b2653d861b3f09cbfa60d37f9 SHA512 6119e2c25476fda3e81c197ee6222be2bd29a56dcc8505f10506de331ce81edbf40ea0a1cd92130f763053d7c64969e6745732a65eac11e42671791d896206ca DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.3.mod 186 BLAKE2B e5031f5cf02a3b3f6c23aec974231bebda6e29f139325b0687301be8640a33453284998e347f2c630b59481e746b211b65b5155b8129dad7f3310c0810dcaccd SHA512 3603c39971436e0d7c92f9b2d78a928222216b5328e59a482b5e30afc529785b6f6a4b6463d8d60ea206159d0b23634b8771cbd27b43b6edf076847a20070a87 DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.4.mod 186 BLAKE2B 1f97373745f811f1254ebbae676b11ed09d77d422229a403ee4e2049d80f7ac0cf58beb06ac20fe0576acf6c771787c8512d9689e1e8d2b781f54c64369dc83c SHA512 b50102e54f3c999f69cadd05948d7eef37dc7c17fd47133ffdd1df18a8081d25cee1317e91e1de4347cc831b39cd6994598ef0ff0a609ce6204314b9a55178a1 DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.5.4.zip 13654 BLAKE2B 899d28c3c0d6b6bc6b5a594987bd775711b67af310da09dbe79d055a35559e4249c4de3209a58ead138412766fe9e5c1b566b40c0756f4c884760be05bc8205e SHA512 93ba13d012d610a0680a4a0873d19d5468dd6052e981e3ec8bc18fc462660a80d5e547aa7f69f3345e6bc072c7ffafc153ba12980e8a8d906bcaf7729c82bfb4 +DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.6.0.mod 186 BLAKE2B ae43ffdb3e4c7ebd182ccba988e8da63345586fc44e43dd313bc5e8173216e22caaefd307ab020fda2fcf91e41678a12a577a00fe63425453c187847bf8c7fc8 SHA512 de00edac0c63bd3bbd2c55027bf6865f5b547a70e8a7aed68675a377ef7ee753ce81fde117eaa5c0dc114fff68089a752a55cc854f3f42b5fdaa137fd3bc8d11 +DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.6.0.zip 14616 BLAKE2B d210d388ff0dd148c7512b8dde03602feb128f63ada2b78aa3f3f5ca1a949da45d049b9f1dac19e3bdb2b4fb2b475a8dba7ebc379a915470f2d98249f909f101 SHA512 2d51bdc0c362a2c909ec24cc5d8df86655a23da95f7f64835b7f1dda822d28f3a49d9729a1c99ef749b23e7540974707aa0ca4b9b4c3a46d793e456a9d552228 DIST github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.1.mod 148 BLAKE2B e983ade37bde0de5f97afe5e6046e1c938f0c356bec4636528b4b73f5b3d46b857accae67d3d2f6b62a24e0e43f88d55e9433969c184d131d1abb0906a8d0b21 SHA512 f9bd4f5114967c8dafbfadc921afa519383c456651a15f8cebe9a66518a12e5cd32286b219bc1fcb32af497c2ad86b761a074679df92e6f3ed758f088673e535 DIST github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.4.mod 148 BLAKE2B e983ade37bde0de5f97afe5e6046e1c938f0c356bec4636528b4b73f5b3d46b857accae67d3d2f6b62a24e0e43f88d55e9433969c184d131d1abb0906a8d0b21 SHA512 f9bd4f5114967c8dafbfadc921afa519383c456651a15f8cebe9a66518a12e5cd32286b219bc1fcb32af497c2ad86b761a074679df92e6f3ed758f088673e535 DIST github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.5.mod 94 BLAKE2B 7b317e20da581e6a50453b0f1b90e655e852870e31b44da19ed5d3c37c222b7cb5f778f7ab48ee914a39fdf1155335ee6ce07232ffb8a2fbc5af914a66fb8278 SHA512 58625487ae8ff7870e9760b960b12dd89f690e2c3534538e093577d9658bb9e5aa5f1da72c2ecc75599a3391f3205eca514e61fca453dfb0f2932ccebee9e8b5 @@ -1021,13 +1020,16 @@ DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.3.mod 83 BLAKE2B 010d91f15d52d85 DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.4.mod 83 BLAKE2B 010d91f15d52d855f0e69e4158c96616ef33839f92db1eceda945bc992912a1b8612d16465dfe248b5598617dec1ce0f94c01133345f757d13bd4b3b6fba7778 SHA512 9413b94d559014eb1e626efba47768212e29bdb9289037ee3b5fcb4cfcc7bfd59948aaf24e0653015a116f7c19421563dba1bbc52dbed4d3b3f2131f70f877fa DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.6.mod 172 BLAKE2B dad6ec4504ee582926400877959151c3f531f4866d8604d338ade9f193c4ba2a8be133a773f92b71bd73a20af923257c7cbd9272af9501f14880b0e86312417b SHA512 5d91b38d7afece82c636f1404d6c5607429426ad42967e9a32f9839c65e72c92d046222bbeb2b5f8530b9c94fef9c27f73fa5d25ef0f228b62ebf6b224d098d6 DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.6.zip 22124 BLAKE2B 22b82c472759ea43a75536222edd32ce0262bcea2b3679de7bf1e133ea86c8813c660a4f43ef9a8b084cc389102be3a2f5e8f6642e65c117f2f02197d9f584cb SHA512 10db1d01a14f3314ba903e6acea10ee6c002365e061de9391c5f350c11bd9e155a34279e8d96b112628a043b792180e7eb4e0db34dae02b7137be19c291df8e4 +DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.1.0.mod 172 BLAKE2B b0c9d4be4ad55287473fe985be3ef06ffd71a15878e4d2cdde7583e72633b254c2606574b28c92d2bda532a8d111d871e035d52b0e2c173ca95f09a83d61aecf SHA512 2bd680a6ca41f81f67d9b8ce38abdcccebce1a8675d183957077c6e18fa20b6196700279749f76cb8ca29f5c402b684826bb2483bad09316e4e4dc0e8eec7114 +DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.1.0.zip 22805 BLAKE2B 9b2e93a67ae0d2acf15e8a5e39f23c93e4ea0c6f622af70b42e1f2930e8ac2c960907cf5f9b7cb345da57fbb0e081d7a5bdf564d7cd067e8d050b1bc25160d38 SHA512 65253bfcaaf008d252d2754ec5016d6dbc12f42e0d92cf89b4285c73575c4ade41b72aa75730b24203116ce603adfb34b032b3c3dcd090fb38896a327e4d0a6c DIST github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.3.mod 210 BLAKE2B f07fba01f64107091ce5ba51ee97fe3029dd9f7630215d4be4d7e6356a0c3f081a28f8673346d4218381ce88cfab3de40d56ade9ad0d362f714432d6a60d9238 SHA512 f9be9d2a2c173555a2ab64b7d0173cf69dd4303d95fe7e849db7356396db703f1ac9bcab5f4c136ddecc36461c817e89516e01db80932ba00797bc7103392980 DIST github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.4.mod 219 BLAKE2B f8dc154f7ea9404adb5d93553ab17ae89b1fac0a34edef52b5aec4d3d11f0db150d840a43092a410198d79b234844efd9a0f7bb6351ebc173d1d06005477ec97 SHA512 90d45d455d26bb05efaa654f0728dd5875a3047dd1af22497af0744ed1aa1b1084e36001faaf36f03543e69d3fcc976c892411dbf5872148f0880441d0eb4962 DIST github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.5.mod 222 BLAKE2B 00b3fea033168f607aa4989c8f1a29256663bef83eb788923c4ee24d420ad558fa44683156f628a51e56a2912f0d67d1a591c4a968bce2f92dba5c45c6195592 SHA512 bb4a933b34cfc3d0fcff1d2306401431958b43d8cc85a1f42b2f45586cbf53b1a0bf875ed576d8433b3fa5f4b5cdd083728d57900ccf16b475fc01e36536e6ad DIST github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.5.zip 11895 BLAKE2B 5df0dcb2432132adc83b13964df3c7baa02d8d18ec0bbea25943cb657f1b330be9b18c203f0ac895e9189fbd8b4fd184c211016e58c6ba72e2cb7678f982b521 SHA512 ef2d80d330adc193b7dcb382e191ebd6e6f63bfdcb345eaeb2e8354bdf6579b3848cdf8633f4c40c51a45fef94abedbcc10ba1d1b85c6569ac1b5ea4ce8a016c +DIST github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.1.0.mod 222 BLAKE2B dc1592348dbaf6bac3f8c289f4968033565109436e63d520df456f2ceb4e2d19f0c5944ece3caa0f197d393b19ceb97516fccae9ef603311141a3b2be02b652f SHA512 f131eb1883421696d1968b7235168bc68b1d86a3baa28a0e9713c4c6629b9b6262d197a63eecabe75eed827642425392af83b36b37a26b7960c1395579b46f23 +DIST github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.1.0.zip 14804 BLAKE2B b040c8dc0a9d947016eee259190f9ef2ddb0598a308f8387d15a99d5d16dad26148aec32d2450bd5959cc5feb2fcb0338a5787a337f41ed5998a5fb9ab13b08b SHA512 7d57ab01309c79638b27d50679b336d7784714c2f0065fbcde427c79425357631d7fcc76bed83bef2d2b698bfbda4f0990e6bfbec9ceacb3ac9d8f83ce72dd32 DIST github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.2.mod 239 BLAKE2B 81c397c2ec547d4ba506229a6ab0d9356bb3d8c9a605b88242625f7aed723dc2b66595b5b769ce5681177a414e6ce410af1dad7a6456df92abb30d06c66b4459 SHA512 2f39be5ff46fcedf4561bc39589778dd886ea55732618ab7629f0c560af12e9d0af4eeb98d232eb3e1dbfec6fe5b99429bc1317a90c03f406dc0f78ea4b0aa60 DIST github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.3.mod 239 BLAKE2B 81c397c2ec547d4ba506229a6ab0d9356bb3d8c9a605b88242625f7aed723dc2b66595b5b769ce5681177a414e6ce410af1dad7a6456df92abb30d06c66b4459 SHA512 2f39be5ff46fcedf4561bc39589778dd886ea55732618ab7629f0c560af12e9d0af4eeb98d232eb3e1dbfec6fe5b99429bc1317a90c03f406dc0f78ea4b0aa60 -DIST github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.3.zip 13219 BLAKE2B db1c013476abed8fc1f57b3be438109a1c82f3821303d8e66efa6ffa672773a62a7c8c9a687908de8c51c385addf9a4d119ef75b4924e2d414cfd4caa9be7d85 SHA512 683a75bca5d62477967414afeede488197b4b3460d6c5df8aca18c26a6434f5be2ccaf9e663d64a302575fc8f87a5f9f6c1f406b5e588b59e7123444b6913891 DIST github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.5.mod 239 BLAKE2B 245490a72c8a58419de54e9d4c89f6ca5631f04294de7acdb4b4aa496b57c833016e33bcd0577a8385df8e91a5656aa7a805536773280a2e23e616a94b17b39f SHA512 6434fcfac0c39bebca58a4b32924c5ccff31493438cc865a047b8271d868bd92acb4a926af715e9b5f96c7d683e46b802499c2a38d5a66d45207c00a2eb56a0c DIST github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.6.mod 239 BLAKE2B f882fdc8a2126c6e8e59588fc240a685c06f1281d4aec9a8590349d507074031c826ef255f5bcb5e0176db229cdffc8ae88786f14c99752ae7614f56fdb3850d SHA512 bd41ae3881214f997bcbc97bae23f5f3534fcd87adcb43ddd3c587333950b2ab58411275fa822225da3a62692600517b737d469f7907c84fdc4b0f3b6b338558 DIST github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.6.zip 14340 BLAKE2B a3acdc2ba6a33f8930dd1391516a3abc2822e5d74466943e58ca3659b28ffd10d64133c642d1b8b0a58eadb02722c8edf282bc259c3811128cbb9fa8114a03a2 SHA512 47116c4a251d85a4710a947f3dbae5ccd070ca65ae988dfd9fe46adfb196151e58336ece3811d2eee8e0ec6e70f61a4e02c5d9e414571e2e626b3a0d121bdeef @@ -1040,19 +1042,19 @@ DIST github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.7.zip 95768 BLAKE2B bdc96ba1c8 DIST github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.1.mod 170 BLAKE2B bb948d1a67bc2282def5d9da6a9c72309e45fd26f7cf3eee67577fc848167975db0187f4548aef76fa8f0f2daf7c2a9cabace4b3ae261848d682740fa1382212 SHA512 83b0b69fe553a7818692b7fe99d1ef3c94e071b50984a3362ad6cb97b37fc0ab8e8a7658aed32b4ddc392972c8af45a640b60c4bb250d8991e9e886c7cad9b0b DIST github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.2.mod 170 BLAKE2B 13f23d96f1115919fd4f81afb8b717be01808fc5582bba0332cff84693c40e92476921a4aec84fac4899f091cb1157bb61275204c298c10265c8ec7d4f5ef4d5 SHA512 2eb70b0a3bfae1750b6312863a10b9549bb0e2d5a276d54202d59c5f03ead2dc2158e5fbd964b20c1397620580003e378be9975a5a100b5e91beb5d9b7b989cd DIST github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.2.zip 7534 BLAKE2B c5dbbbf5711ff3c1f499be9057977bb55b1c33bd2c65917dcd9f11e8f8859a540f1c3c27c1f15d61e35d753e92089f0261ddce3935912db53e1f30365c372c1a SHA512 cbc73e1b3afbd9050688c36f2bef5cfc714c7cf2d16f4a59d68ff309ff24e15f937d96b5e48e9d3a6caa435a3dd211cfde5092cf80e5efe680e9dfbcded1a288 +DIST github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.1.0.mod 149 BLAKE2B 2f2eb861dd567d9fca77c7789ae5deabb8c9dce8ea8adacc315bfe9e1ef84cce4a8c326d64dad1df68d922ab4c203c162f07a545756849de8c38ea4c2ec4e5b3 SHA512 faf72b29a42eccaaef4bcb17d059472509c2dd1fd6a752576209d38573f205768106917104fa879af6ddfd4180b79ade99f3d3338645c11c905be7dbc725fe45 +DIST github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.1.0.zip 10227 BLAKE2B 320c7a87746d120639ccba7efd7f7463491c48893019a2c09f99cadea8bd8f5dde65d2eb42025f1e3af98b47f25d116ac0006c0145b247ccab231d4eed22e849 SHA512 7363fa8e7e74b9d9b05e39af8283572424ffc97f3852b7834ac0c92cdce92b1ebfa1db48d947cfc7c450043b4cbfbf074e8a0df0256b737ad29eafa3f7c21ffa DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.2.mod 225 BLAKE2B 77c83e0698d95e156b56440e615b3bd0787464dc4bfbdff28ab60d385ade1f4727b6c94ae3665e2d595d8de563266f1009f0123ee0029c93e2be49599df9cc4e SHA512 9a41124ccc8278cb36957c3e5f212b42c3b544754111a224c54b2957cb9f64dbd8e4d75d312552a7b2950f60d4f036f861cedc2ef74480e4c89fe70aad982544 DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.3.mod 272 BLAKE2B 818d275ddd33b4727372861021c98456366f32c053cb90b90158d983bad66226617cef5bb78652e06f3fd5bd67363c55079b67f75e86a738e42e365367e088ca SHA512 98bb330e6bd0291bcca9476ef7c940ea4d73abd7adaffa1cbfef4157355f6c26f1c1a0be1044660be416cb9e8242f182cad2a3e883266ad8a2c047c6f02192f3 DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.4.mod 272 BLAKE2B 8b12e339f1895690006850e8055651cb6f8df24af0f8d4cf0c1eca57d7e9a407009086cfebda6932008085ac97de923ba0856aaaedb2683b91895fd7c16af798 SHA512 e0a4bed74759c7d140face1360014a151fed68b03c5e0781321777b3d2d8bb8e7e2173d03f8c4bdcef70dd88734f62e39fafe1439fb6829f84102477bdba282a -DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.4.zip 16399 BLAKE2B 79f0663aa126169e0e693c1099645e6a56246676d7d99c81c8397f76d37db792691a630ca162645375da9f395a93583fc9ec1c7c65cf454fe7a463ba8df893e9 SHA512 05539984fa95babfcfb12005fc5b3a9e9cf651ad76347e2c3108763ec29751d2e0790eb1e80df76c60ed01e550feae2c7e467f5f33eb173faeb0aa797020e7f6 DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.5.mod 223 BLAKE2B 0ed96bebda5ec20472e81b29d91713d13e5a29fc61f8a59b3aa25087cdda7f6e5c6dd0a372f344a8fb258f86a379319540beb5ce38347c1ceaa4a5569727ce4d SHA512 44e2e8cacdc3456509e0a04be00534f75fcf9bd8b560a5c2bc85fd283571ed78fe3cc6306a897ccd90ff49d81ae845a5b86b645ad213425d56c85bb2fd54939b DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.5.zip 15190 BLAKE2B 1c51fe7805669de9bce023c2a76871410a6086f9b09a26f22d2163bee556677dbb1de1ca4e197ea88b87da16b6523b166d7873c8e2e62bcb6e7b2d3e1283ab55 SHA512 df0d09d5483c04e0a4ccc3331014787b00efb11a2e032cf76c9939e1e7a6e7deb30581090bf2048c62513ac2cfe1d15b265653090373627ffe34d99a2424e4a4 +DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.1.0.mod 226 BLAKE2B 4338cbc0c121a2e44db4bc599af03752314220f6da7d23a02b2a178363e7f66dc1d4b7af32693c25f42387344b6e67d010ac462745f3b667fae3e6f214059c7b SHA512 1eb3c3571d15b0494e88b45c82fd805f740af5ef3529f807649830c5a827e9317a3aa681362f10a2fcaf5aa6e76ef6165285b98774f9fa627ca257a08c6c9133 +DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.1.0.zip 19032 BLAKE2B 711deeec6237189e7b233633b7e7b4d84d224ff92e0fdc4ccc0ef5251f37ef8a81bd317c21aa5df85038711b48c28a80a0152b80fce4a27567aa2f4341b946d8 SHA512 c96faffea62af1d79b2031a57ddfc309daea590085ca8598b1697e159634f543560d9fc4e4152e9d10a56e0f790b13f85352fc8de0c985afba588a6ae5e1d8ec DIST github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.0.2.mod 107 BLAKE2B 443ce0ada5af2703ce3b3b1e8462c1bbaea680e3d286ad5d26c8de6de0bc130407c2bb91d0455cd3ddb6d38d2d00bf569d9690bcd75ae231893ed2d3b7585cd5 SHA512 803ca00d31589f83dd13694c6f71d90cc8fcbfcd247fc4d160d2bcc23844c5a8172703f6a8c05ef3ba1b294cc1cf9468598449fc52bfeb15e59e6148b38bc233 -DIST github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.0.2.zip 11417 BLAKE2B b14e0a109c2df77e011bb3e35118497b34888931edbcfd50420c0c35e4d279cd51ec2b89163a2c8ad12714181e170f71d3f38de4218ef031395547cd40dd38bb SHA512 330b5aeefd692e37dcc63f09e95433cee63232a4679cb24dc31cc673bf5a9659841769432191f7a5f3c3b12543ba0f47700276abb7fe8b40de74cd5634016d75 DIST github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.1.0.mod 107 BLAKE2B 443ce0ada5af2703ce3b3b1e8462c1bbaea680e3d286ad5d26c8de6de0bc130407c2bb91d0455cd3ddb6d38d2d00bf569d9690bcd75ae231893ed2d3b7585cd5 SHA512 803ca00d31589f83dd13694c6f71d90cc8fcbfcd247fc4d160d2bcc23844c5a8172703f6a8c05ef3ba1b294cc1cf9468598449fc52bfeb15e59e6148b38bc233 DIST github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.1.1.mod 107 BLAKE2B 443ce0ada5af2703ce3b3b1e8462c1bbaea680e3d286ad5d26c8de6de0bc130407c2bb91d0455cd3ddb6d38d2d00bf569d9690bcd75ae231893ed2d3b7585cd5 SHA512 803ca00d31589f83dd13694c6f71d90cc8fcbfcd247fc4d160d2bcc23844c5a8172703f6a8c05ef3ba1b294cc1cf9468598449fc52bfeb15e59e6148b38bc233 DIST github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.1.1.zip 11038 BLAKE2B fb3bcc08eae56c47fc8bc0204d3a8cf2a0cf2484c330f7f54978d6d562db465d301d75c3fa1279259ab554871de85cb4df84ecae9088c27aebe6bc223dc56923 SHA512 d74b4eac23d8597307bc9bdff2abb003bd0529ad6b94501f9cc91327cc0c77840c8d6e681aa110f1c2a042ae4153f765a708dd1ce6ea568136fee37beb2a91be -DIST github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.0.2.mod 190 BLAKE2B 0df8f7b13f97917cb7392cd894cc0f667d5ee270b3792eaec0bc686ac087c5e5b28438c3811f085028b60e81941e2dd0062a688d34ad1c852ed7cefad4ac4355 SHA512 18ab3f60f11c8af5573cc7d90f3fd4053a21a3e8849e70379622199cc869c63b0b5155b832cfd92809a54b1419c85b12bc9bb54fb8b6b34c865b71c1eb9a8cba -DIST github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.0.2.zip 7945 BLAKE2B 7f9e2347c69d62c0ee0ab272e5b2126e97f353f86b3cd92ed447c2315797b8a19884d93a6de7bf46344b1752ccb462345d0387cffbfe44633d43c8da981c2ecd SHA512 8839472eb8c3b19cde92a6de3e294fb0d22340d73089b77a60e5b6e66d9250cc78409c1876fed7654c9d37cb62e59119e1c5d6c2a960e08e836f32654647c041 DIST github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.1.0.mod 186 BLAKE2B 853923559966a29494b3c44a6d0f0cccef5bf38e6abfeecfd0cf440e3dd6bc98d751e2724eddbda7989f2c4ad326d616deb278c9ba2b94285a70ae3a9b5d3a88 SHA512 53e0fbbf75b6d47508dc0dc0db92d37a5f754ca2dade4327c589727101e2c77521acf23ebb20d65b2f95c056e779ccdae4bcf964b55dfe90522956a3fe3746d2 DIST github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.1.0.zip 10962 BLAKE2B b2ac944cc8646ba586c0f350dbe2c7f2b4b6e79189ea24293b4f3057f63ffce1188149a9e6d9df40a0cf5f40d3777dd04c9eaa465a04209e1de5963ab4e471a5 SHA512 50aa1ab87e2dd334c1321e03700feb6ace6df4db50f03dfa6cbbb75f1cf8bcbee4620ed06a5eaf4254491bd4034a07c0b46ebc12950e0e9c3574b202f12a54d0 DIST github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.0.1.mod 41 BLAKE2B 7dde19f4924372e2d1cf22c59330f8eaad017bb70ba2c6e6a7bfa17a76d5ad4108ed4c6ce9f5aca1c6b06b6ffe04aa572851ae8d545779bbc5083f5692ef8f0a SHA512 aaf375a4457cb1ca8237eaef67c627204f1d7a9fc75e14cf0ca5d853880d66ba0837a02074f2f8c1c9b8414a42b5c0bf4d10717b4d20fce7d61b5547c637aaa3 @@ -1066,13 +1068,13 @@ DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.0.mod 556 BLAKE2B b894aa DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.1.mod 508 BLAKE2B afa680cce5f40210a01f40304e2660e55e634040bd8deef7284cba455cdba04dea180fe1c3f6e0721a3c0d0a2ea3be08f969a1b8eb4ba72fd0cc87a713f06276 SHA512 ad5f20c8caeda811266287179d6678631af9fbdb77082a7bb3f7a3f7023bce74a7e6dbe7cd9ca6a87e1059ef36a189eeab530842b2ddbd12012027e161b9e5e1 DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.0.mod 508 BLAKE2B 7900f753b91a89a7b451c77bc5370dadeaab4b2bf97929f3cf64211bc232b9b6a6e714c5c1e3ccfe5097d54473a134fb281cb70cc3a849d276d62f7026a3f829 SHA512 a4b4573c0c7154eca4e415106876e1399f00a69fcf6b58e67eb01500366d429c2d51e6ae7a46ed26f27f44b98b91fdcfc829f3762d3fa0b9628b9b34d013cc31 DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.1.mod 508 BLAKE2B 0dfc8dce210b24b7ebda84d0bf4a1c12a52120a20fc27e3f3135513b2976c030a62ae062de72f3cb93b424018ed347a63d761abbcecefabb245b8eb9d1188e39 SHA512 df0937be6010edb4b81b1da036b8f233fe70c4d9fd4ffcc79b24eda03913d0ca6e5fcf408171d37d41e5e07491e4e26548a7355b2aa4fb3b2aabcd7cba4a3931 -DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.1.zip 21471 BLAKE2B 8514e27acc8c7386112d0422aa0489750370c54fd95850b09f1984c9bd72b6876f4350e99c0f1af333d04dd1331de81e877f34a4f36e1a1caef72510341142cf SHA512 3649b11f80d9e892a8db7543ba61f7832ddfdb5b26e2dc1c2f68d613a7e5a4c11ef668dcd486e1174f9b9367783d1d43669fb932f69144c3a167d0138bf4805a DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.3.mod 740 BLAKE2B 32dfcbe684f3f3388052a10f6ff29f3d8dc2062461776102b9a5a794c6ea6af68f2ac08376a305a08520d238c1c658d4abc0f7926b01d64e9b83713ea793103b SHA512 602c2742cb0a24d476c2f41c7add995f6aa9cf0d2db4a0948d39c65462fe4940044fc3d81e8d04119ddff1bb1c902c377f76aa28595207d64537be33fca1842e DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.4.mod 740 BLAKE2B 32dfcbe684f3f3388052a10f6ff29f3d8dc2062461776102b9a5a794c6ea6af68f2ac08376a305a08520d238c1c658d4abc0f7926b01d64e9b83713ea793103b SHA512 602c2742cb0a24d476c2f41c7add995f6aa9cf0d2db4a0948d39c65462fe4940044fc3d81e8d04119ddff1bb1c902c377f76aa28595207d64537be33fca1842e -DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.4.zip 39476 BLAKE2B af75f7508db444dbd8f1d72a810444430659cdfb7b72b4be0189abf94218aabdc1188937b5339047076a0022679951218ddb739a141a52ca9998a9a895fb8331 SHA512 fcc68579844e8699dde1af9cf3d552db9b6d3714b1e852c0b9aeb638e050583baf6ca365d373a4ca6234ac4bba4c79bce90a70a2c90059064570aba8e8e25892 DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.7.mod 795 BLAKE2B 5244c8daaef6be3ac7b4ebf92e47e4620adb8e2e5b11ac2a51222c01343a5bb6da740edf1302ddb22434562d0cedf0af25f03e5aa4696b96870b394d3f5514d4 SHA512 0a069f009d3f22b0644995e96ab31aada6f26606a34f9d063ec8647d297aa98c4446b7ca7e05dd1d56c1b5d910ef52138e57d9c4e53e9e736e248542fb5a5201 DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.8.mod 795 BLAKE2B 22ec8d53320f521d0f39304f42ef4df3ffbe4edb38488602c0ab9fff5ba81308b3d3fedf9bfa16cb8870e3ee55fef99529ff8abbedc4966b498c3d0793da2944 SHA512 cc1289eccf086e5a27edc4ef2636251d420e87834a64204c07d92143ba787bda2ecf5d93bfee0ad5301a1ae899e5d14f76af90fe1d416e815593e381708d2dff DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.8.zip 39915 BLAKE2B 92eb76d0719332de683561bb4a7928c64b6cef709e65f6b64ed084f2f34c601cd1ec30045b00e3f4beeecaff94ece7520e9755aa4fb04dbe177a904e9203d189 SHA512 bce6b1fd02634295865b9c4706046e2723778d12638f4ca10666cf35d2061382ad2cb1d1b887890e85e67c5ae38100b175bf900b16c9c7e240aee97636cee21a +DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.4.0.mod 835 BLAKE2B c0c919227076da0db90c4e143f3ae3a04cfdc7fc6a5aa8c2c85c8c20415dc5d72e3bf4dc48377b941c25a01288af9853e2a7850e81daca5b5beccac380f358d5 SHA512 eec703210caad59cca75098bbb1039cc441e8d010f418832cd070e50f306b04c8e01ad7620058e2d6be9054ed585d2867d0a07bbc8d81996d4b2da744009024d +DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.4.0.zip 41555 BLAKE2B 00fd2136f07c43dbd68ceaf5475a5c9234be85c26eb2ac49ba73f35a353175a4308f1c907140de1f1248d54571a3f0593e03765519cb7ba58572a96b857a6c57 SHA512 97e558d5bf0a5a0216a93d72141e517ad61bff19022904cef8afc88088dff3f78c6c3c435323fc8d16e63a9f3fa00bdd57b424c96285c9c8afdf57e81d455048 DIST github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.0.1.mod 224 BLAKE2B 3703bba0bdfdbf377beba4ba79fe2df2a9f2eb4f9d3d38bb7eae3dbc0e920837fc7125984377142da6100a72a74437bd93d4a96bc80d65f6355521160ba2546f SHA512 7158c0bff3e8a95b9e05be3d2ce5dabd6220059e1c8902ee42eefc26f05f806406cebf46038d7202aa1ef71cdd631ac72163530feef94df8cb23b31deca611ab DIST github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.1.0.mod 245 BLAKE2B ccab27cf3ba7ef02cf1019a730a37f4f0998d3e28e7e96b86a54df7c314ed09fddc129db083e9ad38bb9ba716994598c9832014c6287a7891f6a105ff7492773 SHA512 53758b00d58252492edd33633fd4be6d4367321328568dc67221560230e0fefe67e29cbce5d7dbf7c830381963d71338e96267b381a8062fcafaa048f35af403 DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.5.mod 451 BLAKE2B cbeb1983312ca463ded853b34f074cb983afbf384cef2d006179fffbe991b859d21e73269514990b32ff441bdf70d14c87e520756aa9fbad3acda9f9d3426b99 SHA512 a18f85536fc00b26139df8afc39eaf638f9309bfbdaca2c38a123cc4de1d723d8aa6356e0921c551a299adac340450c4db80d07cef523db8b007402e75bab996 @@ -1081,7 +1083,6 @@ DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.2.0.mod 481 BLAKE2B a3d3cf9 DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.0.mod 425 BLAKE2B 39306d94048c87fdffde14a0692a624f625e957102138ea46b0c999dac26144b569b0a0168dff5b2b957e3ca0712cbda1105b4554a2fc48e8cf35223d18e5b12 SHA512 51a8d04bbb363a38d37ad7e2e63023dece7e966de1df45d7ccb681992597a9aeb2e8e97be739eea030810abf64b54175374f7f265b507df16fdb3faec0d594ab DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.1.mod 425 BLAKE2B 39306d94048c87fdffde14a0692a624f625e957102138ea46b0c999dac26144b569b0a0168dff5b2b957e3ca0712cbda1105b4554a2fc48e8cf35223d18e5b12 SHA512 51a8d04bbb363a38d37ad7e2e63023dece7e966de1df45d7ccb681992597a9aeb2e8e97be739eea030810abf64b54175374f7f265b507df16fdb3faec0d594ab DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.4.0.mod 376 BLAKE2B 0445f5293eca15cb13cfb737785883018c6438a035fc59595518512f3a955ad301342e58c8fb88a813d044ac31e3d72f677a8af8070e5f07982202301fa3cb58 SHA512 c7ee6fa591ef0bc3d122bbcd4f085f6e8838555253e6f8f5a47e0688bfe3546ffdf53ee969c4373235edf3984bf049a3112af15115c96555f53f3d82eeae0cc7 -DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.4.0.zip 32267 BLAKE2B 9024d450324ec16358ce17c0cb19c239adfcd9b3d0e51763f9c25a1e1daaf53f67817229c1fb91f0e537a144af334ad4fe961864503f387792fcff14517e7b13 SHA512 f37731f27957350f67299d1cc0e05eabff2794e65b66dcc9afc2b2d8f5848bca01ca8bb41a3db6d4b54b4750014a35cc643208f674f3562d5d593fe4122c9a14 DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.5.0.mod 431 BLAKE2B c4f9fd685731ffe8d0a20580f8990a8cd8974609a3288041907577dd9e1bb01eeccf5f2df97feaa7f450ee30d10a11aac5022c9027981ecaeb2639bfd57d787e SHA512 a53dde8461c2b4589d831d19f0523b5298e91361941afabbeb9c753065a489e458aceb6f48f13dca2fe82da7262658341e16c12363668e0f64dfbafb3364580c DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.5.0.zip 31702 BLAKE2B 42ec6f60f5756f610ff531dde341984b4bbde3f3fc5cee2a99466f6decc583cfef6882d3d6a2dfa3c100d24ede22827e46bbc010b50a7a6e6acfb78ff39a2866 SHA512 b5473e53a32704f8ea2cd35147b14631910863a4cc02c99840043f8f0eb3b53f95ca26b1ee76387f82b2f1892f4fb923154cddba3120639f628745a0474731b0 DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.1.mod 92 BLAKE2B 918406dcee85b96af3dec73ac72da981577598bb71d0e04cc55ff7391c50b93da71220ec13c05c36cdf226b6aedfe26a6ac45cc4e082079a227971acea1d8a92 SHA512 296f048d4a4721418b9b71bfa782484673985b332d65c739c522277f525b8764abde6c83158fd6a4b06b120b659a557994ec790ace203a257d48177ea1953bdc @@ -1095,20 +1096,23 @@ DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.4.0.mod 97 BLAKE2B d476d83340b0947 DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.4.1.mod 97 BLAKE2B d476d83340b094779cac233dbd4ecc00654cdb9c2def657288de66eff594bb85710592c82c7ddc512defcda42d19962f574b422a97e580500e0a358fd0443690 SHA512 b76ca092dac3df061ef31d82f97556b269086b13e9f2e8883d20f0ffc363b0b3ed44ed48aae3106b9290523ff07095a5635bacb947f733008eec6257e35b822b DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.4.1.zip 37526 BLAKE2B f5f45985a2b6bb5c9c99076a52fdb850400723a2e69242bf688b1f182ddfe9d1caa3996050f25c74b1ab8a82984d7a6450ac531a20296c28ae0f329ca9393e27 SHA512 43fdffca6295d5c38a85d1ba974856614bd875d30917413c3440f6a1bb69d0204dd1b76a2f0b76ad05f5471aea7e0ef3ff959e32de6d49a132f908a23f537f75 DIST github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.0.0.mod 95 BLAKE2B 36b7bd836568d9126f3b0ab1801f3cf0e55d66369dd978ea4a1a4ed470ebdb264ee5bce98ba7419e789156fd0943005796eab9e7288e7696e320e82242da38fe SHA512 e21ced9238d80de65d3d68c9cd2c0ca244b37a7634d93b0b85882d755674525be69920b250d77e2edaa5adae1eae0d924f60c657bc848a982a670bc838b37493 -DIST github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.0.0.zip 36932 BLAKE2B 3c09366de758d6cf817238bd9861554c4413001c54936f74a204b4d311bbf8b4eff361d732838e5d09d387cf4727c8cecd546e1143192d18e7b523eb640ff6b4 SHA512 9ec4444a243f2ebc8a459e673e0f78a752f6e74a8caf4ca9f1c30be8c4edee38c7091d658e2a02fafc67f2f871d17a1abbc5e02b834d8826bb48ae3424903dd5 DIST github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.1.1.mod 136 BLAKE2B df3ae2af97971f748515b14d8d5504620288ca71eac30ff675df100bb67af2aca2ba37aa37d3cbd873c9f258f3d2248f30b16033be5297a1835c324b8b03a8aa SHA512 e0c97b98d56c247dfa85d8a5b481d29f6a553160d03be423863015bca946d392bc59f41c75c8df9da0b09b516aed5c9ae721c9162ad473891986e65563a0e59f DIST github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.2.0.mod 136 BLAKE2B df3ae2af97971f748515b14d8d5504620288ca71eac30ff675df100bb67af2aca2ba37aa37d3cbd873c9f258f3d2248f30b16033be5297a1835c324b8b03a8aa SHA512 e0c97b98d56c247dfa85d8a5b481d29f6a553160d03be423863015bca946d392bc59f41c75c8df9da0b09b516aed5c9ae721c9162ad473891986e65563a0e59f DIST github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.2.0.zip 40455 BLAKE2B 602769684ad68c5d28f982383a6aa77feda00341b191e71a1b20b082a686a721d0372c738ef936b7cf071ff0a858343d34e5e1d6d717321f6909efe4c19893af SHA512 32aaf520fb1cb99f1e2b4351e195264180f831d10c1e8e3d501ba53c15ef75170c2e5e32a94845f876e49b5cbd7cdbbbe01da23d93d8fc4c6ce3a91577c7e47d +DIST github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.3.0.mod 136 BLAKE2B 78963b37831ed094e5f8288c4d6e212623b93425bbe474aac928d18e9c993bf3b1ae7f8fa2ee14f26390172e793e925f355cadbb1d57888680e5a5cf008ddcaf SHA512 7da44b4e2904e2d037e4d4a18f7ad29b1e0d5fedb2dc268b06d084c7e961658dc1d39da9c0aaf3c947cb7870f9706a03f5c149ff12ff16173bb90d87c8783cc4 +DIST github.com%2Flibp2p%2Fgo-yamux%2Fv2%2F@v%2Fv2.3.0.zip 42285 BLAKE2B 34b4a18306148a401963a593028c23f2f83ee35ce0c509eea5f5bce8dee6bf9554ee803539781a3e05f8e44365301ec2f727b4adfefdec2e2967c7470d96bf4b SHA512 c3f14f454d289d9d0be48c558f8b3f31fc4395c08cf14104e194960fb08ddddd7e3d3cbc58621bdc1632e9f19e4bea46e36a5e1289933276b94ce4f71025a8f7 DIST github.com%2Flibp2p%2Fzeroconf%2Fv2%2F@v%2Fv2.0.0.mod 276 BLAKE2B ecfc40d8d4796654052cd651b2c35f21ffc55a4601885929a536958b50ef0513f8cbf91eb3a01ea1e4f337c08b193ccc56db74c0388c83013f66c47f78908ae1 SHA512 6736710c9a48557462cd9e89d05b1279b0d08d8cb6395ca23d67639ef0f6c1ffff6473f8bc8e9e04337d96c87dc321c24ec17e2c2fc8fb9035db6b30685c0f03 DIST github.com%2Flibp2p%2Fzeroconf%2Fv2%2F@v%2Fv2.0.0.zip 25758 BLAKE2B f6b4d52321b0d6dacf7f0afb9c05905a0eb2421414eb5d33eaa7005f14c6159714e3ed81fa2aa9c04de758e5d9af0bba7d54a2e90079dd9c3a2898e4cd648b1e SHA512 d60e3fd95354ca063cecc2d595efc02882dd2c2df4966c0ece4bcebfc3aa22e3b5306b2237c430c0ce6b6af90b9228b8080ec8e2dd7bdd11ee31484b828e1a15 +DIST github.com%2Flibp2p%2Fzeroconf%2Fv2%2F@v%2Fv2.1.1.mod 207 BLAKE2B 00d8db9975f7eb1a52f049be3c1773dc156d3ea8913f6e33d1a8731de31b480b32e61494c097314401147f5996f08e19bb302de39bada43dc100e80612d02e82 SHA512 5c1ad5e33f37440066c01ffb201a3851833564dcbae034e11b4cb86e7b0b31b7193ea7d6a86b1b0233f0a88411ca9ab274152f4608ccf02e1f817806b6703043 +DIST github.com%2Flibp2p%2Fzeroconf%2Fv2%2F@v%2Fv2.1.1.zip 26262 BLAKE2B 14f4d0a248cdd1b4159091cc6fc2cc365756aa397501b98d4b0c426d371efb1beec6b2b93e8fb8510051b0e6bf86130dc01f17b3b1510f80557fe563afa15371 SHA512 ec2d03f86b1be640db62bd25c4fc827b3b88671bc6be555b04777baf18bde92076771f8cf31996e8753947e38a00aa0b8f67ae962995c822c9edb950c2e55b2f DIST github.com%2Flightstep%2Flightstep-tracer-common%2Fgolang%2Fgogo%2F@v%2Fv0.0.0-20190605223551-bc2310a04743.mod 267 BLAKE2B d2298b42ba1b8aed99658a846dd1ff5cadf5403411766efaa880ecd043a56703ac1089ea5edb04b391d710d99f9b1a1471628043be868fededf189130bf852e4 SHA512 76b19a140339b43774f3df87d1de97dd4bbdbf5939f523fe39faca051dd2a4b9e719dc147a0a2f931fd30871c30eb6a628d58bded12271e04f6de5d9dbab497d DIST github.com%2Flightstep%2Flightstep-tracer-go%2F@v%2Fv0.18.1.mod 414 BLAKE2B c0bcdf3e0a6f510eb3649030349e26c3d78608af9ea46150e891c17463491da92c544562b60cfaf35b8e6e11cba5b43bcfe0a8bbc3e3cf7832ba6114ba8cd9ae SHA512 1ca2109c477bea717b8f66a2d57c35373adea2fcaf4223d85770be21833824334e4f9010c1257db95e345d1fcab540c96a40e9abd7bb51cd993559c224e79500 DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.19.3.mod 814 BLAKE2B 110bd6c2e87e936b8574c0bc0a765dd34cc747c238aa88f6e595cefeee516df985bba5a21fb9dc9d871e543b097f08f413134c16d22e18aaddf5427b88de1199 SHA512 3c8afad992ae7ddb5a98dc28d410465b8b46e660f69957fb8dfe3451ebace00bbd8fb7b9ec9998ce6129df3300b2eb8153edf26181641d44f9c9c063225b62f2 -DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.19.3.zip 728621 BLAKE2B 74936af3fed3ccaf9ce932a8b75b5dca7c23fac9295dc69a133277da579ab9e5b6203e3dc0fbafaf8ee7fa84c514c2e347d8e527bdf466836b12d1392765b383 SHA512 791bb623c9decfb027bd450b7f789616d737ef7ddbe1b4a89b33e9167dce8b65be66820fb82171ffe30a8ace37c9ec14060cc936d33a2264f08d160aac33266d DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.21.2.mod 697 BLAKE2B ca7272f288d2ddc7d207c4e07aabd3a7ee72ce709bfadba36543c268ff260e7b16c1e2df4eb280a042df02b8134596fbaaac8502924d56283c5be4ffc62d8bcd SHA512 f09e4799139ba0a0e635ba159b6381205d8b1ed98073dfb7a5760817a7a43ad330c79d485c8a0167ab900795feefb9c9450257221980bc54d81b44a3f8d958c5 -DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.21.2.zip 744841 BLAKE2B 185465c601ae7bf31411b4ef488a84c9c57ab2ec33de4996d6eaaab977fe62b5d17264dd84cb78a85084855f3882dd716159709eaf106bb17baf90816e972c9f SHA512 53ca5aaa23df41b83795fc6afdcd1d2b910e33e146393f20751cafc2050ff8a53e6795e0f307bb81d54eac741603cbbc2f3cd8ccd2ea1408d9a7f4fd061f6a9d DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.23.0.mod 646 BLAKE2B de936cd0ba8f001e958cf99d355750f221ef2e0d09f191d0cb2523c22a5a475afc0e8b5e91302ec23faa1595e21094a74a7d09fa02504fdd34f7431c4fcaec56 SHA512 b95fdb9bf88b21d6b216c66d8091e0b967e6924d78fad7a586497723d17c2ab69e8318f55afff453b1c3e3c8baa077c013d3f53b3c1b9edbc0c986984a7a41c9 DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.23.0.zip 744542 BLAKE2B 92a778755817371999db9ff7a29ac83e530b42ba4bcc8554f7f099a69e1fc77c6b0cfd920480d0a4bf88afea602500f963eeab97f5b7c34c73065d5daf4e411c SHA512 6c89652f78922e4bf4813ce3ebcf14654a5229d3a893979352563a29e1c9bb6c49d4f157ee95b026358ea1ebdce331810bd712dd74241a8911f41fcd222f0f83 +DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.24.0.mod 646 BLAKE2B de936cd0ba8f001e958cf99d355750f221ef2e0d09f191d0cb2523c22a5a475afc0e8b5e91302ec23faa1595e21094a74a7d09fa02504fdd34f7431c4fcaec56 SHA512 b95fdb9bf88b21d6b216c66d8091e0b967e6924d78fad7a586497723d17c2ab69e8318f55afff453b1c3e3c8baa077c013d3f53b3c1b9edbc0c986984a7a41c9 +DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.24.0.zip 745821 BLAKE2B 925cb321a8e9660c32f0a87d2460b91de2cdce9b526660124ceeb01ed2ca28e9ce9139fcd7f35b47f84e2805690eeb6a1457d13a98b967989bc172526003d2f0 SHA512 1cb1d58272f727e24f3fad5d8c3007bfabe01d80966e6e3f35e821b4296bc755356d2622c2c73cc371609cbb76fb9ed0ff2715051b2c2c7d372cfdcfe01f0d4a DIST github.com%2Flunixbochs%2Fvtclean%2F@v%2Fv1.0.0.mod 37 BLAKE2B 0d60c4f85be76a6a73bd4b6403a73e12378ceaebf9dd48bba245ab0e14e846bc1fb480671f959ff56d52c5e2b41db8de0804d4258fb4cb58d6b0c618c1401104 SHA512 6a0913935e88940258478e250207882eb1df8727e18e66419ba5d4a06a0b2c8691642ed379d4b4ef16df715893b35e59d1e967d5276e6b0ea75b1f481e852a65 DIST github.com%2Flyft%2Fprotoc-gen-validate%2F@v%2Fv0.0.13.mod 43 BLAKE2B f49107f68b9d73c573cfe976efad9dfb5b4555aecc4b15eb4b1592d1ced4cd1cd09f1d2483e7476f8732dd1404a07d9d9a35df84c944cbe21b46409dc5802265 SHA512 f4286a907eaf928904461716aaec3d5e58a826f2f50c6568f70aacd2f14c9d226bb633ebf9fbc8e492961ca23f459be0c49b1ddc644fadcb7e90e99818fb03bd DIST github.com%2Fmagiconair%2Fproperties%2F@v%2Fv1.8.0.mod 40 BLAKE2B b8e71ef21c42894c31d75cce0e7423b21e716de0539a8a7ff462e0d5c05c77795238598630208055ad808af2db8c56a997e7e114ef391c07d380b996ce533544 SHA512 8a724e5cfce28512549e7b06ec42c9e02625adfb3398fd45af07f8c512782002a262e8567669929626814758f9d12041c318bd4258f88d110a851630537bd5d1 @@ -1116,16 +1120,12 @@ DIST github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20180823135443-60711f1a8329.mo DIST github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20190312143242-1de009706dbe.mod 34 BLAKE2B 0f1af1d8e53c7b13c36f0a436cfc14eb8fc7a7bd4df72d4e9315ffda79ce20852ce50ff6297daf8fb2998e1d76af4082f71c94555ed919170d0003483de94f4d SHA512 8a3f702f8044a984fb6e1b9c73d837cea4b7f51783fbd03c6a957b58a0b4084461c63c94367314ea91f4684612b1f7b8d4eba8c1cb3522913d51db41edb73cd1 DIST github.com%2Fmarten-seemann%2Fqpack%2F@v%2Fv0.2.1.mod 178 BLAKE2B 1044039faf6fb3c3d61c9b00ebf83caa7812cdd7b7787945b7f9f106b88899906d646a6f00f81361e14aa48e053a2177309cd59f1a63cabb706a832d5a7cda6c SHA512 3db41fe780063d019ba2e84c08116f754f5cf6de31dd4432364c7f9f808d802218d3eb039e10eec0dba6fe6ab836799663c5f3789a12f308605d0a52934a2960 DIST github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.10.0.mod 201 BLAKE2B 12946a417b352c690b676012121a26e6dd80839e5bd7452262488044c17988fd094b1e1fdbacb5c15b156a6e50cc4604434c452a75c97081bee15de827ded57c SHA512 df90f7153c82b58c2141b2a59dc4b1cf145cdc99cc1b2eefc881a8924235c02eb5ba39795f394c4e90557fb3f74a79abc98ff66d07e4f915740a63ca0b3f4180 -DIST github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.10.0.zip 578850 BLAKE2B 0403309855bbfc905bc149f1ebb375f5b7f72eb7e432c18dd91dfa220f643d9508bbb9500597ecf8b2ab6f96a71e19aa752a67999af84853a5fa55cbad8c4bc2 SHA512 2b8b9631ff73a30f6590ba86a21a77ab531fede897a23658d3d7720b24da008006178e225725eb46605b968e5678f5d5410dde24a4b10d9e0b404b53a1c284a0 DIST github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.1.mod 207 BLAKE2B 5b3d5ad841a5d0141a734651988d7d4fe37edf8f0452606a9368db7ab760986d6910a62c1f9fe404c02eef38f24b01ecb89da7131b8dbf29f771032bf0b26306 SHA512 a1596052f6915fbb2d54b6d5ec302f4005630d26952d42dd645a9beb62dfe65a80715a0de4bd64b04712c40fa3d67bd6ce4abd0c98a07ec0cdf37281ffe91f9a -DIST github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.1.zip 589961 BLAKE2B 4f183f3164e6b7dd14c868d2999b31176e68a5a8b5614bff9c170ec41f27a9fb387243aa3b6ce138afc462ef129f2352587d11c8def51ed2565dc1c8c6bb483b SHA512 b2537252e8de3295e2fe3f64b6141686c822b371536eda638be7d3754e3d805c43b6814942c7ce16ac995a478bf321f7161f52d9a96705d097ba0e69d533317e DIST github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.4.mod 207 BLAKE2B 5b3d5ad841a5d0141a734651988d7d4fe37edf8f0452606a9368db7ab760986d6910a62c1f9fe404c02eef38f24b01ecb89da7131b8dbf29f771032bf0b26306 SHA512 a1596052f6915fbb2d54b6d5ec302f4005630d26952d42dd645a9beb62dfe65a80715a0de4bd64b04712c40fa3d67bd6ce4abd0c98a07ec0cdf37281ffe91f9a DIST github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.5.mod 207 BLAKE2B 5b3d5ad841a5d0141a734651988d7d4fe37edf8f0452606a9368db7ab760986d6910a62c1f9fe404c02eef38f24b01ecb89da7131b8dbf29f771032bf0b26306 SHA512 a1596052f6915fbb2d54b6d5ec302f4005630d26952d42dd645a9beb62dfe65a80715a0de4bd64b04712c40fa3d67bd6ce4abd0c98a07ec0cdf37281ffe91f9a -DIST github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.5.zip 589922 BLAKE2B c9c8041d110dcafe7df0fd532ec2435e3869ba48643eed17589fb48625981a61bb39699a88789f1526085a08372ce6d803bb5a2bb805952b0bf5ff430edde5a1 SHA512 dbdfd1395bc50605da2f7bea5c1aec1f09d0e6f097e1b2d986fab925e073e972eff5d90937c5c92f0347b97be55dece1314d6799c2142d491b85f67428d05105 DIST github.com%2Fmarten-seemann%2Fqtls-go1-16%2F@v%2Fv0.1.4.mod 207 BLAKE2B 88686761625cc8faa400c84dcff15769a2dce8f2557ad34b2c3012f8f52d5f287ff8654bb0c6ddfb389afbfc8d473f5d3e707e10d281136ed20bcb7ddabc189a SHA512 cd2717403e092ca6f2083031ca3abd1d26c0b8b5c73250e6f9ecc4380ef61147a85eb98bc5d1e8879b2ff2850a3a7622c8a56b57c17b7c48cf60d4fc229258d9 DIST github.com%2Fmarten-seemann%2Fqtls-go1-16%2F@v%2Fv0.1.4.zip 589598 BLAKE2B 1fe2f3ba3918c35d457b474c1c1df604446b1f138f6b1d489e65410e51b1759885520769e6368d4d8bd133953501782bbd862040b71dce9d73dbae1708171723 SHA512 bf432876f4e7a3d18d2e53f65eb79ee4e69771b77016246d7ad843d54b8ffc8ee50defc7257535763e81c8692c42e3ee2bf3314039a96f0a36757c60926614e1 DIST github.com%2Fmarten-seemann%2Fqtls-go1-17%2F@v%2Fv0.1.0-rc.1.mod 265 BLAKE2B 49ca5d356079ead8dc4a49f38f4eaf1feb67bb0cfe083d0376f024b15c523f2ddcc970c6f526b883fd8815a78308a8ec2feebf90920bb33600ddec5cc062c04d SHA512 59e5b0998f94410a46225005f90d4f9099785ed09214c93b2436e854342a5565c454d5e499c52a55de7cef6832d8a6b541d7495f332cac0aaf45df5f17d753fd -DIST github.com%2Fmarten-seemann%2Fqtls-go1-17%2F@v%2Fv0.1.0-rc.1.zip 598543 BLAKE2B 1359c71d62d5fa6b48e14d5bdd63475442b5cd35fee36d7634d2605f024bb7632583e571e7025fdc95d21dc26da6e690463317630b3c76b8f39ee7db7c3334fa SHA512 275e646081d13ef4fe9aabedad7b49947e72e41bb6578c6a4e1381fd385f2a2445c7f90bf0bfaf0f9b6bdb4ad5694bd7c1520644827a636694dad68ffc5c36e7 DIST github.com%2Fmarten-seemann%2Fqtls-go1-17%2F@v%2Fv0.1.0.mod 265 BLAKE2B 49ca5d356079ead8dc4a49f38f4eaf1feb67bb0cfe083d0376f024b15c523f2ddcc970c6f526b883fd8815a78308a8ec2feebf90920bb33600ddec5cc062c04d SHA512 59e5b0998f94410a46225005f90d4f9099785ed09214c93b2436e854342a5565c454d5e499c52a55de7cef6832d8a6b541d7495f332cac0aaf45df5f17d753fd DIST github.com%2Fmarten-seemann%2Fqtls-go1-17%2F@v%2Fv0.1.0.zip 596960 BLAKE2B cae1cb1cbbc71f0d1e005020e7ea701c746ee3f41b71e41a264793b0d64c7d52c6b403c11835141bdcd9b4d5ff5261642ea0591697f709b8bb64424bf9c0dfc9 SHA512 777f2f8904c4afa94535532911ac0762e5b80330ab6d961b2a3bfe73ee711d52aab20dcd6e06344e8665229b84e05bf5a69736e52029abcaff791c974f6b4ef5 DIST github.com%2Fmarten-seemann%2Ftcp%2F@v%2Fv0.0.0-20210406111302-dfbc87cc63fd.mod 293 BLAKE2B a49b7ca0e96db60acc326459ea3004d4c04f14fa6d7aa55b108ab5b2e81b97a5a4110dc47b2bf6ab5317db029ea33271360ed49657ca8d5c01a25d53b4b9302d SHA512 a87cfd6b681edd3074ce03aafd77e0bea9168b0294eee2e83fa6c7bcef96b7e8fa0532752c4619a94ab3ed94ff819203b4e7cafdf36eb49c6e362c358cb6b921 @@ -1136,7 +1136,6 @@ DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.2.mod 80 BLAKE2B 486156a648d6 DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.mod 80 BLAKE2B 486156a648d66786de2a05b45b054ffbc6ccbb45ffe98230d3b3126ff533fd546af1b348fdcf67b1b3ae9310918869355fc39390a4f67b99cd7a1bbd1c6cf891 SHA512 f69ecc2e8097c17a9c0002181451d56a8a7496f62e87f437802420e9af27c5f80da2be189597759f2a5ee2656dca8c1cf91a5374b8e46919f7a6e0f9579d2526 DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.zip 12838 BLAKE2B 668586a4df02fa2d5db174a4ada1245a463946d4bccdef2599b791414af4f10eb07f56c61484977eeb21499db7f9b46f8fea03feebbaae5511504c13e3f7a64d SHA512 c3104e921a94b1a424cbf6936e8e5cdf5823947132f41190c211e050c9c8b7135c7b319eee0667a2b958c9f4fda27b9cbad4436d37b512e269716249dbfbef65 DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.mod 104 BLAKE2B b8d6df41ff2e8952e12f0518d455969d7a496b8318052ca37ffabc663d9602b9df70385274818af8bf1b50e70a44ade59b0436133e08818ceb385d34a3b44c03 SHA512 218110264da1c7396295627414259fcc65cc9823216d6c03f2a6d7499e17205e540821add3216ba673efda92f1e5bfbb817416874fc745ed1d926c43fdd9bc99 -DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.zip 8885 BLAKE2B a9d15d5bb4264391abb906ef4b8ec929ecf61d0bbc781ad37aa36e236cf92f5a97f2035c0c08bb49c85142df10ba129c4c1755ede5bc8ec71743300f60af3d47 SHA512 4430b33d70f0fe35d07aefd6320ca0d8e49b71689d93b49e021e1893f8f9f043f8a6d16705e5517a600a538b3f35fed8f14a69a985b2955e8b6f34c19605c83f DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.13.mod 104 BLAKE2B a8f54d5566d54ac27763dd535705d64dddd862f32d23f234b1ffbf759cbf4aa16886c90a96198ae2f4c0d0bc892932f1b8244e8ff0f8150bb87123947d734016 SHA512 7bd9f6a38aa9a16c3569142164389d1c4046170f66b5e9044f7aaa3192e9d2e2ccec486e3bc7fbac868c9693b6d333068c1a34ccd9e79dec1746a86348951503 DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.13.zip 8623 BLAKE2B f4cc66d4782f84b13cc940e1235b8a76acb823c5f07baf15948e7e108e79d02154c3a7ac2a87b83ffdbf2f862f35bac436038b7ed2726a09b943269dc7321b14 SHA512 ecb1ef28f64bf0d0b713be8be6b338130aa2d7ea747d3644e79de6f0593ed0e5720e8100ff37cdf90798a28955e1854672e756fe364639c04d6bcaedc4c6bbeb DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.3.mod 34 BLAKE2B 55253c2475bc0169df729915bc92689eaad2908ff7b9dd81b8a553bd75d5f866c308a85fd69d664d31b0d2d373d8d52ee1701677cbebb07e361612ab8cf17f2a SHA512 00c272b4652db259c46875641b29489ecada2602e38beede8c8bd529d73b6e123bff58f8e0f8cadd2d680a6a5485aadffa448e9445548abbd2fb424b059a31e1 @@ -1146,8 +1145,6 @@ DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.mod 95 BLAKE2B bb0de423d1270e7 DIST github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.2.mod 37 BLAKE2B f36ba4b667bc5bebbf49062ee5be234891ecc0a2be075c7bf57f5e39ee7fa2657d6bc086ba9a89728468ddd0623d27edb3c357ba4e91f79563bc9747d1d9ae63 SHA512 b891712f639a850e41582c15bcb384a985fad4f8aa86ce2d3f4d2554354aa1a9619667f60837a8280f869fc07dd58dc676c222bac23aaa5b2b00c06284b2f475 DIST github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.4.mod 37 BLAKE2B f36ba4b667bc5bebbf49062ee5be234891ecc0a2be075c7bf57f5e39ee7fa2657d6bc086ba9a89728468ddd0623d27edb3c357ba4e91f79563bc9747d1d9ae63 SHA512 b891712f639a850e41582c15bcb384a985fad4f8aa86ce2d3f4d2554354aa1a9619667f60837a8280f869fc07dd58dc676c222bac23aaa5b2b00c06284b2f475 DIST github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.4.zip 22344 BLAKE2B 9dcfe0ef5fb4f7e493f29ed3e5edc8ef2744351a4e2a5b70f5a8931b503925ed58b5f5f58e3512fe5fb5fb8d2e7bd1598037f29dac4520e7d966f60ce5f2d307 SHA512 fb2bd143a0eb1be1faacc0069ec8c2d53b16b6969e6c4dd7ae4802f16606a80ff1c362712f0836b97f1453df468e7e12bb5dfabf9161436fbe9b87231f593068 -DIST github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.mod 45 BLAKE2B a7d3b1ffaf20b96cc98161ea6756d62d8380e7557859606dc7975b3de91a2d4142932d5008caf40b41d8ff2ac1ff33f672dbfac351f3e518922a036d7c116a93 SHA512 0cfd4101dd8ed90f80b7f4ce2928cd322b93855764abae65d66c5ff9888a7c8aec6ee6581c7f05d1c80db5c78003ee2afc8537fda8a3855e2349bfb8267aba61 -DIST github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.zip 20005 BLAKE2B c0f71323efd262296b78867d2b387a74491cfae3f4498e0dd22c036b20dd6fc1b6569171eebf267effd140ec009527fa5ccbcedda4f8cebab2679582766331ea SHA512 fad08292597cbd4a359e06f85bc7cc37b3d3d84b8046e47828259e36872063069c4ab17b7c89f2a5de4b5d0ab1ca5cc66cc515847a7887339a3a04b5f44e3c92 DIST github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.mod 56 BLAKE2B 50d2d6dc9c1ee92d629af8c9aae9fe5f70a0c6fe270a95a8232cee3c50132ef90c68218ac64a3b5b72d94e23ecbea5f567fef39a81be3d4585bae3f4f5348545 SHA512 5235188477921a263176fefaffccdaca4bf8175a2e248356a06596e37fa868400203172c7fe9fb80d0a65d335d23d80edefd242657de0eb83d9360589e063bba DIST github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.zip 44378 BLAKE2B 15ccda2b94bb024656859fb8a6968782b9a1bffb786b0b1ed69a3284b01f4a2100b3f3c46b6ebcb8f7febedb5bd4f6762fe333b7d4f1d14c700f8fce60843352 SHA512 e9349ee2a7d5e5b129ec6a1c0507854aebca82cf9ac2d0a681cac2f4630ea35551ede48e1931494362232a83dc9f26b6b4162c6114e0176084c50101b1da46b0 DIST github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.mod 29 BLAKE2B ced49475e4e8b7199364d477553bbdf91390d5969a6840e688e9d24d70afcf28ede7ef8fc09c89f23a32bfd65bc0bf9f9b58261b693e5162189e37be03bfba2f SHA512 93e7d64e25fc66cfcf514bf546e618198e32d2c35fadaec01684e9488489b484ee402efd301435eb2f725f086ea851ff0445fcdd26775848db3494795a09183b @@ -1157,9 +1154,7 @@ DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.0.14.mod 28 BLAKE2B 7846fb7a9c146e4b4cd0 DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.12.mod 28 BLAKE2B 7846fb7a9c146e4b4cd0db250d3a84bca13c7c3b8292ba71215a041006c8ea39a36b88dac7749a9bba96dc463b499633591f6f19d43369067b0f4f46594b8ddc SHA512 4ce4d3df63fbdbfe3505816e81dc7e806554d79cfe0254ce8e0228bc16eafc014c98475c24f4a6e0c6efb6fa16e891e2e47c43c9ea10ce20a95dc69f686f6361 DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.28.mod 333 BLAKE2B 8d0eee290f65ec90aa77494795ca379d6e0dc3c1a3e040b045309e1ddcac7623330a140fccbf829cbd32cd6788195f3446d340144d5757340734804504203f86 SHA512 838358c8d40bce54c7010bf6c141e2022f2036ba91129166dbf27e2fbf355b8c32392fe8fd6edece94934c460c1b9bc73c496627b4b7efd63341d7086fd0b114 DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.31.mod 333 BLAKE2B 8d0eee290f65ec90aa77494795ca379d6e0dc3c1a3e040b045309e1ddcac7623330a140fccbf829cbd32cd6788195f3446d340144d5757340734804504203f86 SHA512 838358c8d40bce54c7010bf6c141e2022f2036ba91129166dbf27e2fbf355b8c32392fe8fd6edece94934c460c1b9bc73c496627b4b7efd63341d7086fd0b114 -DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.31.zip 224434 BLAKE2B 7719d75840f11f1c547a91228ea7472b1774560966f9b456aaa3c19095e9bfc51c4e8655aa0a0a02590a52f0b06c2ad6ce3c0994d23d64f5a324539d7a98eb0d SHA512 d60802ce85252ea35f932efa2c04e10ab19bb94d56e6e7c84b1c41b9a43124b9b9e082f0eaa1ac7c903f31d70da9b8bb1f537edc71c0dfb19626226860d52a4f DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.41.mod 210 BLAKE2B 1f8fa2bba38f34095585872959f404b3a82f4ccf4d7665f86fa573ad62634420ac4efc8e5eb99f3a44bd6cb7aafaef7b6f4e4202fc956e36eda54d1500493702 SHA512 b4eb091abe317866a323b709143ab9c8c806ec52d14a05f6765e6be4ab33bf1bf8c5977530e017a72d668cffc8878f93f7ad89bf9241817fbf8789452e66e544 -DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.41.zip 235845 BLAKE2B 6e927f0d5a67ef81c17db697f4b0e2a804c7699aec395229899d4f7b8a7dac9dd2e062cffa7bb0e457e9be1276e709e79bcbd9165d762211e8d2a11a63a6d446 SHA512 536fbe2a387bb4f771762a6575d2dcdd970568fb7f2f3b8495abd4f0cfc5edb3efc3f058aa162948a6f33d91066257832749a72c212513b1f7cf13a704072ca7 DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.43.mod 210 BLAKE2B fed94d9122ba026bcaab9c4b54425ca6ab054452981cb2c1d007c069b46a6df74aaabf2e5711864d53455b259208181215a7a4ee47cd4f43b7781b7168150fcc SHA512 2b16b7814601de871aec90dfdd1a56d763cdb7132816ceef18ffe94e7862844353044430a49f20305278e6d5e3b42aef11428b88e4b4d17469a38946fa859ea6 DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.43.zip 236767 BLAKE2B 8272123411e7df6fb2d55f4d81874148a671e6cb576f2c01e9b4635a748f954be524717e745ed397719ae5d5f486d9a2ee7bf5a0b274817202cccd907242c03a SHA512 d1b5da0e352db04818770174d784c4a6f52cdd6e4a3c360d32d8aafc51c0e004590e5e89d7f872f2708807a0fcad448546d1014ba1f2ac74540ab6d1bb389346 DIST github.com%2Fmikioh%2Ftcp%2F@v%2Fv0.0.0-20190314235350-803a9b46060c.mod 29 BLAKE2B 9ba66b20cd41cca4483e18652d50ee9cb9326dda366199167083f384eb3c73fa47344c773e17d1911d6c7848794a4e91c3fae8c25d1582927c764b01c5005ef6 SHA512 46f7c9f8cf492b9e03f014f95ba57392e46b21e24b4b67f445abffb92318a41aec6eb528a6d9d492fe05d8b5acb65710ee9bbe9e3b75a031d927081f28858aee @@ -1175,7 +1170,6 @@ DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190328051042-05b4dd3047e5. DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.0.mod 36 BLAKE2B 3d65012cdfc89913335409a75fe4cb6f5990765bd58d38d6daafc45435effce7cf4b2533673ae724b31284d137261d3d4b4a27f1bb3791f9c6283871e43a253a SHA512 a940acae8474af5b295f2d77782cd0af2940086115fcf0b71e129668faaf76a9472767fe0633918e668e998465b5c9409fb120569b202ae5ff1644416148a8db DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1-0.20190913151208-6de447530771.mod 45 BLAKE2B 4868e4a4afda265cf4dd2e7c5a25657237687b3b1ba21d24f280174a05dece76ba902c1447586a7c632a961b8454a1d1c8a0e7d523fabcbf98dddee26d26e341 SHA512 2341ff459cb2432feff920048aac90868260d97c5ff68724b0b7e22c8e5c65da2b4055026d74578983020e24506d2f064e47e3fa247a4560a37951e205cd0a15 DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1.mod 45 BLAKE2B 4868e4a4afda265cf4dd2e7c5a25657237687b3b1ba21d24f280174a05dece76ba902c1447586a7c632a961b8454a1d1c8a0e7d523fabcbf98dddee26d26e341 SHA512 2341ff459cb2432feff920048aac90868260d97c5ff68724b0b7e22c8e5c65da2b4055026d74578983020e24506d2f064e47e3fa247a4560a37951e205cd0a15 -DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1.zip 84306 BLAKE2B a22f077e8a63a951ca47f6d62a6de017245ae81ad57f788996c9efc722a5df7bf3ef9cda993ac8c524d75a95a2218732471d46d21e8bfc56f324ed8b126ba1ff SHA512 7732e181c4a620e81e77d261addf74c7d7edaa50fe41f13512124650a572ec258ebac8a4144bffa3107115f9c65968cc67a3aa5de8c8dbfffbcffceecfccbc63 DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv1.0.0.mod 91 BLAKE2B c40808d77e89a1e769b288ee07fb360cb2e15384a0399078f503636dcef28a9245df2a68d84099aeace0ab2d8e265816fcc8c479896e161417a7e4a522a4751d SHA512 77d7d01b59a5d1c318f1e0be06f02d80f46b01b53e137853677b788efb3d0b8f955ed69393b37970bc3eec577fb2ca1ce843172bac07cc3b0d3620545fdab03c DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv1.0.0.zip 59020 BLAKE2B 83d3bf6e6092751c4db0f100e5393b8e2c0f9e80d7d6460d5a508f5d4415d4743024cef394b58abbd5b5174b34212f2a2b4e7fec39fd046f80ce5d3f14371597 SHA512 aebef3a91d9d5db1dcfea0a6d76bee471780ac26a0da34c6aaa9851b22cb7aac14ef5e38d5cb10e61e5dcbbbaf4ee80350113f41947e8ccc46069068a6630028 DIST github.com%2Fmitchellh%2Fcli%2F@v%2Fv1.0.0.mod 416 BLAKE2B 845f9f6d79c8b18d4a070255eb93aac9afc50ad01593fc5c6076c59e4b5c09f34856b29ab24809a67fd10ffc5cc28908faff8358a52cc8885947c53622d6090d SHA512 7cbcae5e1749c55a0c3fa25b007035c0c44c8f982a37635735afb95c63a20ba019a51e74244c568a170b5a379ccb10cc8c9df716b6261d324755ea92c7f462f4 @@ -1211,15 +1205,14 @@ DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.1.mod 154 BLAKE2B 712d DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.2.mod 154 BLAKE2B 3a32e31718ea5c91640cd0c8f5481b72d506e7bbbc2acb5c11491b965cf83ada96f77454a5c4a0a1686edb78c950499c46e52c1bb84f6f2b89980fddc3549c36 SHA512 115538df200d13bf498fbfdc86f25414dd52b665510c91188b65f90df4023b5198f457a732ddcf6105c935e0ea2aaf58bc072e9fe206ca0599264c60b90dd480 DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.0.mod 185 BLAKE2B f3b1d3152aa166c874d1ab23ba849eb0921580895a0e06d602c7cf29f0532a0e170d70129263f9c79d97ade3fc2d286ad61a7744e387d0006dba5d354dd5d37c SHA512 39c8b46c27992c95a6b8a4419bff2f0c206fad585a670211f00e31cb3c4daf9f21871628df4fce7ad1e958aae0ec40d2cdfe57e160d28c6b8ff1e38a73e6bbc0 DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.1.mod 276 BLAKE2B 6a5f20f367f43be7df9c2e6e1df50a730c9de33f5554d77f8ab7cb0a61fd9d9900312534e7ef5bdeb2bce2f11d8b78a974c256210f498c6e05a3e75d5c52aa6e SHA512 9de3f9a7c1b47859fbb83768d20013ed5a2fa120749494188cafb6ffc0de09dc8fc904b60830e572833254b03575c45805a2638b46fb126f861954189d5b804d -DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.1.zip 48597 BLAKE2B 67b072e997019fc27fd20284365393da0ffbd1a21525f7b88a153d7cc7953a1f1713da8ad99e3baf6f596cf8329f75db690c7be23b24a99c65aef4d15d3a45bb SHA512 2331ac55119f871f63c1d9a9102a28da14ee60be5094e989db3215e60a10827648155d8aa129351d166e4e1c6b7fa0d70f9f8fc660594e47ea0c25b6e7c9195b DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.3.mod 227 BLAKE2B 8c7711a8fd6471827366ed9443febe46bd4a643713ca4537bd2418c800263dd3e3b926b8f033cf83988c44515d0d8cc4d26fae36367cf7d4b389057c23a77d80 SHA512 9d7f72a0144c7a9f09f86e64de755154139e1e3ae6a91bd1ef3065a416187e3b70de38a1fcb22c0744b1f97fbb4e896950e5fb7432289ee10cfd3c13bfd68ec0 -DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.3.zip 50851 BLAKE2B 8b8feeae8f0fd6cbf09856d8724eead538207e9d810f070a29f11c0bf7a28b4c3c0387a0afe9fe4aab18af72034cff3e99ae1f31e7e7169e22b37e04fad80363 SHA512 d81ae26ec74a79df9dc39f504494891175a161521a33fcab84fd408ecfa9d3331ee50ad08b66f33bc6ee61e4689cd01d3980d590311004ceff7a9d73ea7014e4 DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.4.0.mod 185 BLAKE2B 84d34c77661c2c361146ec3dc35fd9199df6341f99a07c9fb9333b500f17eda66ccffbe023360aea538ecc28ca76fbd827873941df7c73a3306de14ba05a0a86 SHA512 f5ad97eb911112fecfcd38fa93ba65161e83b1c1fb626c3bd6d68be503f45d624ec70f20cc18e410dd66143c62c47a923c9e62b58505e33b5af5de1e6af37d57 DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.4.0.zip 47846 BLAKE2B 3a22aa31e09e301cf16042d94e26373eb6c496231403c455eee23c4264126cdfad8aee0085681814090dc598c51029f4ee24b31763182e778fe4ba598255975d SHA512 0d34a813f28840ac67beac7790c29c0b043d076c1429cb93b1dc2074081d7412254041d2c6762eebd2f5ca5d24699bcb2ca2cb10cd9389f04d913fb21fe9c3da +DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.4.1.mod 185 BLAKE2B 803ce4f2fb0b2903bfd607c212d7e757a9455a90cc166080291fcc7564cd4a8871d886bc9bb045e7a03b7f8ca8025a13a2a79ee638092ce1c2833c2bcebcc5e6 SHA512 0e85ceb807f66e013534e64dd453b799e724e5c355809948859843969059d1310c8623aad1bb9e604175e4216697f3cb9630e11c731eb2128cdef0b073b0ae3c +DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.4.1.zip 48463 BLAKE2B 2d1e39d33a1f70842c8ee476a1f7180aa213f0eed07971101c56ef859e43ef70ca2730e27588ce7922b60e2b8f7e5a15e5af728b3c3523c9d6e8701b17f32b51 SHA512 5450389e063480bc42f7eea5a565b437afb6fe14b29d44a285b9d180c79536ad70b907024693e373309435d2add1e0965b649fa17f196e3689406f6848ac1001 DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.1.mod 101 BLAKE2B 6f73533073bd430dec3c70b907e4b9dc8506a97766397ae73a30f7983f91cb82371775dd0c639ef6fa1b981943a6fa1c229dab4fc46a429d09013efb70cfba4d SHA512 470b7a4c94acefd4fdf609876eb86b2f7ffa3ab7efb066dd5926dc9c2ea383620a0dbfb0e75b512bcafbd8092c5f6c00399934151dacce9d741e4d25986d7d97 DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.2.mod 101 BLAKE2B 6f73533073bd430dec3c70b907e4b9dc8506a97766397ae73a30f7983f91cb82371775dd0c639ef6fa1b981943a6fa1c229dab4fc46a429d09013efb70cfba4d SHA512 470b7a4c94acefd4fdf609876eb86b2f7ffa3ab7efb066dd5926dc9c2ea383620a0dbfb0e75b512bcafbd8092c5f6c00399934151dacce9d741e4d25986d7d97 DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.2.0.mod 110 BLAKE2B 8057f4cf068446b03776ae38cde380b17966ea8f64f00bb33f1a7efa0c5ab24585ec3a283f8636f4ee96c71be14aa8d1d6171ba123a5505d99243750e7b3721d SHA512 b08b53b3b3f8d10ae8c169467f5af03c475033054e66c74b2991248c5d4d9425549b067a68b07105a68becb989829b3f1f6b960f740bf219c65696a8b81376c9 -DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.2.0.zip 9550 BLAKE2B 093e34422abe509ee4f3212b4f001da76e0777feac027ffaf6cb8b8a15b0f317f4654ef84796fafde55f932f00f12d3c7f3cbd0d663e6a0736c5205698b021e8 SHA512 307ee3cb563493a2e65528831719cc06f563868ffe7a24528a5687bab22cb959af2486d229e71c0811f2e1f15d373e010f9e3e0b146c2a3b930065f12fa93c44 DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.3.0.mod 110 BLAKE2B 2930933ce6916f9b4710f0cd3336f5a40ea97c04cc99b0a22cba2996ff4cf0e1964a5e099b6e4a444a62a6fbc3bf545deddefa9a1fe4263a80266bc25e1f0c4d SHA512 a5fcd5ca2b2b62ef9c0e79840454e509d279d691ea18f3826ee7dd51a760f3f9a6f84c6e3856db28978a380cdab6904ef3b1e0abacf50e7f528bfac7fe7406fd DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.3.1.mod 145 BLAKE2B 2b67f61bab09e82bd32c12e9d23e3190aaa45ba2ec85f9b65d7839bcbc2f257d7273c98930f709457049463917eeaf7fbc844bd98458d38881706f4cdd4e0b27 SHA512 9f6bb9ded45469a318dc2612af120a9db9ac05d990d6b02ea3aca64f6247430f2ec70dfc96bee7d50ee41ea5777df37211da87ac76f94080917a76144b2e8f19 DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.3.1.zip 12035 BLAKE2B 3c7a8005c78d020eb7007654ed35a7b291dd326f7fe7b338fe2aecf9d649e7ad90c24a2c0f8b9df14d38da4b7ba3ee8df81644570de54a4b1ba3c0f71ab678fb SHA512 9d02e7b6f8420234c3f00b332c4fc231b308346c215d97870db889813b053a575d5c4413cee2d9e9840505129e57602b725b7737056b57834570e7c1d475fe94 @@ -1234,30 +1227,29 @@ DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.3.mod 110 BLAKE2B DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.4.mod 110 BLAKE2B 6e509371afd193bb7f9ee226f345f4c51ba8d37803aa2c13cf90c1531496cee59993dd48db44a556fb37f84218c22f05241a80f75ad4ac3948dd4131c08255af SHA512 5abb8d3ef50ba4dd28908e545165773b92dba58295fcb97e1a4b263d9f960ee19e8a0c3e5b011ba7a14ad38c9c1ae1936cb4c30f741d588792abd1f12be72723 DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.5.mod 110 BLAKE2B 6e509371afd193bb7f9ee226f345f4c51ba8d37803aa2c13cf90c1531496cee59993dd48db44a556fb37f84218c22f05241a80f75ad4ac3948dd4131c08255af SHA512 5abb8d3ef50ba4dd28908e545165773b92dba58295fcb97e1a4b263d9f960ee19e8a0c3e5b011ba7a14ad38c9c1ae1936cb4c30f741d588792abd1f12be72723 DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.2.0.mod 110 BLAKE2B d517da320a019bc947bf655d2eb57b2047affb084f2291054373eaed241e1dd15f911f0c43a0ac64055da2b1975245281a2424f2848c9f47ddf37b954b16b7ea SHA512 75538a837de6b9253cc4210c5ec0463eb21c3fa39f3010a7263e4e6f13af6d301408c722d84ce1a8fc9607cdf6bc6f4de46d32965812b752537aad91f9904169 -DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.2.0.zip 10746 BLAKE2B e8764f0b1c82dbe58ba91b917161decf653a3bf005e3d2280fb629a2027bb1f0c06c0e6416cdde42dd0f0382041001fe1d24ed3637b113ae75e4588bc75e3882 SHA512 bcd7f65c0d8d352b341589f07153aecaf6e0835a247aba58aa2ad286210c0295403edf3cfc857e048c478727fdf359ae99cd2e636aaf2b1d05287d3b8b2fe99c DIST github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.1.mod 133 BLAKE2B d030369d62f597bfbda78d6e3f47d0476fa5debe2e46d3df05bd85f8bd0baf6282a2642c6f69857212e51f7c100ac14c4d5c72d608f684d0c664a4b36350f486 SHA512 c29d62c16dd537b9d8b35bc612d6cfd9dd55218427d0da02be811c52d5fab6fc087c0296fad907375bc8172dfd7467790b1dd9019013b322ebe135453d4e24f8 DIST github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.3.mod 184 BLAKE2B 7b8169b1cbccd4778a779bacf5a92152ccf8e3736345ec19ec80e972837a01d4edc6d975ddda2f0a8293c6ad5087ada9517e30dc2b208596b35fc7232c4f98a4 SHA512 899ec024a514d6010402dd9b4a21c0171a05972bf5ab0e59bfe3159c90482018d6435449c66265adf9caa9729f7fcba424907a1b00d3cc2f8a528a7f3cd39586 DIST github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.3.zip 13825 BLAKE2B 941e4e5adc48a9178289e5679448da4a610e8d444d334bd752e12ccb7dab62a67ff648aca2a6e7d11e7d985094c71e785f322ddc557fb62967323543d80713a0 SHA512 93b7e6acd96d63796e3aceaee6cffce03bacb90bcf6bffb480674fd74be5441438d8f8deb5b9293e8cac737a73e502b26b7eb98a254d2816d436d3bbf7779113 DIST github.com%2Fmultiformats%2Fgo-multicodec%2F@v%2Fv0.2.0.mod 54 BLAKE2B 59a5c171f3e7b5f706932f22500c72355110763c7367b06c766770e4f874b65ca90607e394195f7e2d8db8a32d5df9322a47b303b6fac08c8bf6d5c13915e662 SHA512 204dcdf1941ccbcb2f4748719b4a15594ed7e918353c9f95ae84f73979692420f4042e7f585fa35b61a848f4a3c8b774224badefaa098c302fbe5c57564224ff -DIST github.com%2Fmultiformats%2Fgo-multicodec%2F@v%2Fv0.2.0.zip 21293 BLAKE2B 192253f0194efc456a479b7f9d25b8ef08d908547712940f389a7318620904143b55f714e01bb40927c477fc04fbd3d6e3fd5c1bcf59453b824a80fa4469ae40 SHA512 cc287a6053469147e942a2b5804aa60067a057ae9843f6f464f1f65fbfa3d3c0ad9cc983cc699ae9efa8d2ff34ef16d15eb68544cff898c851c5e1a4ee6c0fe8 DIST github.com%2Fmultiformats%2Fgo-multicodec%2F@v%2Fv0.3.0.mod 54 BLAKE2B 79e706492e96eff5b9be512bc99007593a0ed5a3b8df4bda9440ad0db6eb25b77cf48c49c8522ee93b03cf9568cfbfd6fc9badbc30dddbc16415d45bd066ee0c SHA512 91279fa2f1c9a5804bae7fba70f8c8074fd9be4d2a77120c2c84eb287e3725b601f884219f4a5ed3c79e43d821193e24a93f60a58da4ed4b3744560255984b86 DIST github.com%2Fmultiformats%2Fgo-multicodec%2F@v%2Fv0.3.0.zip 27676 BLAKE2B bca5c5a5f964c8802def3e51e1f359d1b47c26d839c0ce9f2c613324bd0708259838b5c5c7c867fce5b0ec02c24929e2d2fb77a8839f75427d3b348600d210f4 SHA512 6eec9fb6ee870114683c9ae739ab3de11bda3021e86f4413cca8a973a066f4cd8882d7b32dcadf2d159d9704d48c0f445a50c43389ec6fbd02cc72c8e50fd909 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.1.mod 426 BLAKE2B 0207d5b80ab74fad18f34613a9fb5489b10aefddd7d6aa8d3e0172c7c6bb586c5d7a917d034396e67f91565f7898bbf51b649266675707d0ba2b06f3a50b19d1 SHA512 0c2611faedf5e01cd5e240317b241ddf92a00c4b7b138350cae3b145053f2fc4809b8753de3be3ab0015f188a41e8b69edbaae09f0547406b1f64e82ade20548 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.10.mod 326 BLAKE2B b1b305b239819d7de057dc7de09facc661ad8d8a7667ddd4736735d4411856e31c09ef39d38f3a933eb4d169cac1e013142d3b713b4d3df2e2a07edf7cd3401a SHA512 567a8f6956142d569bb42c2082e608372184e677fe29850ff101b559bab90e899777f141f011d2879e2251af4f855f3f3c7bde993b38bffda64d83f56bed7242 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.13.mod 368 BLAKE2B daa5e79c1d6c337a47c6cbb95fdabef6b577f942eb9203581d8a2c762ad38db7d354b55ade753dce15d80f58b10eeb23ff000442ce282f08e33d9f2c37ec99ff SHA512 f4574aa23fcc101f579ae9dd73b8fd6087a2730b8d9377b4498e6deb556e2edec1068fbca0d8720cb50b3cbca0b250bb16ae5458c14865a0c27104372cd9f900 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.14.mod 368 BLAKE2B daa5e79c1d6c337a47c6cbb95fdabef6b577f942eb9203581d8a2c762ad38db7d354b55ade753dce15d80f58b10eeb23ff000442ce282f08e33d9f2c37ec99ff SHA512 f4574aa23fcc101f579ae9dd73b8fd6087a2730b8d9377b4498e6deb556e2edec1068fbca0d8720cb50b3cbca0b250bb16ae5458c14865a0c27104372cd9f900 -DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.14.zip 32883 BLAKE2B 338820445c1117501ba9aa4bcb2f14f83984c23c710543ccb6e63406fa6a47bef26bfef55956b0815e6190f450bf04c53e9c7280df2e2cda1f8dd6ad9bb862ca SHA512 261028645ec68016a50cac5479fdd8b0d32f02d079440016a1bb6e146ced0d2bb9f659c251c6d9fa27a1c1f7a89cfe89564848af3fc724e193f514dc3fad05b8 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.15.mod 366 BLAKE2B e6f652d260d7b38771f29320714d040ac7c1bd6a8eaefd085ba16dd92928789d3de8838373107b2efdada70af39c69785bb1e6620b6580ebd437e95a65f8987a SHA512 98d68b7be23aa1929bca6133d25534216afdbd58624139820323661afbbeaf8d3d952eceece187875aa24ae40c8f4ef26ac759691a30560424f31e8d23edf847 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.15.zip 38335 BLAKE2B a7a0492d817acfe2a96aa7cba1dc8d80ff0cdcf40f8ee3f9d8896f584c21b288aa1dc72259977e7d6874609c643cff42ae8ab2b48aab6b2d50a824028f5519d2 SHA512 b751e28e706499a7f337d234b5ddfff7013d823bfb757f254c1ba54bec88c934258196f596273b97feb9ee646a2f4a93fab7d445bde9db2581e8dad759068617 +DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.16.mod 366 BLAKE2B 39b2c926b131010a67eaa0b39b6982ae8dc62253e0f5b163f3aca6310400c7b546210543d79bd22deb351082e8e138cb7fc5db8aa720c301c041684081eeb00a SHA512 6285d45969b626ee39625922f750c65ec370c1e775fa288c2ce6e6d192a526fb6252b585889f85d85b28db97d38ac318a71e11e2568a1ac55d1011363075864e DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.5.mod 315 BLAKE2B d173e9dad06c7155fa2906cf4869d31abefda5580704b8072c6072686d32f7f3fcfa85538a7463f268c8311d8ede80c780f1d79421e9096116d6ed613c98ac60 SHA512 d9615581dc92f34762f37fff4a459fc193e61538c7a414152c7bfd252b6cfe67ec12a130ca306ff7aea58e7a0ef90ed1f7100d8c7bf92a348207d506175c066c DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.8.mod 326 BLAKE2B b1b305b239819d7de057dc7de09facc661ad8d8a7667ddd4736735d4411856e31c09ef39d38f3a933eb4d169cac1e013142d3b713b4d3df2e2a07edf7cd3401a SHA512 567a8f6956142d569bb42c2082e608372184e677fe29850ff101b559bab90e899777f141f011d2879e2251af4f855f3f3c7bde993b38bffda64d83f56bed7242 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.9.mod 326 BLAKE2B b1b305b239819d7de057dc7de09facc661ad8d8a7667ddd4736735d4411856e31c09ef39d38f3a933eb4d169cac1e013142d3b713b4d3df2e2a07edf7cd3401a SHA512 567a8f6956142d569bb42c2082e608372184e677fe29850ff101b559bab90e899777f141f011d2879e2251af4f855f3f3c7bde993b38bffda64d83f56bed7242 +DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.1.0.mod 435 BLAKE2B af1e1a1c2a1777e2c7d6ff8736e928ce07c96e4d7cf4c03fb9767a0617a98e4231a8d84131eb2b5d5038d628f97c86e6ba07b64c35bfc78297b383f4b539b7bc SHA512 c7e2cbd7a4109512ecbd81f6dc32f8e7fefe878f090656dba9265b944017d6635327d76bd08286a419883aedf658982f5258f0e60030c5162c2143a4a0a2ea39 +DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.1.0.zip 47053 BLAKE2B 75b750cc802e701ca11782ffee77abddb923b9b980c35f4f645ad90bcba855d244b324d6845cea289eba6979575f6f50f2d0700fc4fdfe24eca0294fc87a3e5a SHA512 d8b0da529bd6db09a00876a93298c7776a7b471c423aed47efd2b8fb3de72a5c3fda3a653662b244f56b633165ce7b4c02804360e2ea22a21d03ff1789f9acd6 DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.1.mod 46 BLAKE2B a892fdf37f507ea7ad3f68191a7202c486796b08a63c9b60a2fee65c6412303449063a13949101400710aa2266cad8797d5ee57d6eec26e9ff502b244b435759 SHA512 9ea624d7ef9c849eb51b568bc9497b97790dedc2da3f1368bd575441c95cd5ff90c35939d1a426e0e39f19a2e30e6a8628a8f8c0b924fdd793f4f48c8bebf21c DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.4.mod 46 BLAKE2B a892fdf37f507ea7ad3f68191a7202c486796b08a63c9b60a2fee65c6412303449063a13949101400710aa2266cad8797d5ee57d6eec26e9ff502b244b435759 SHA512 9ea624d7ef9c849eb51b568bc9497b97790dedc2da3f1368bd575441c95cd5ff90c35939d1a426e0e39f19a2e30e6a8628a8f8c0b924fdd793f4f48c8bebf21c DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.0.mod 46 BLAKE2B a892fdf37f507ea7ad3f68191a7202c486796b08a63c9b60a2fee65c6412303449063a13949101400710aa2266cad8797d5ee57d6eec26e9ff502b244b435759 SHA512 9ea624d7ef9c849eb51b568bc9497b97790dedc2da3f1368bd575441c95cd5ff90c35939d1a426e0e39f19a2e30e6a8628a8f8c0b924fdd793f4f48c8bebf21c DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.1.mod 55 BLAKE2B e5e324428b8793458f0ed33503265aa4660d0d7c902dcc6dd48092922fe78e29a08c4cfba47281f3d34bf8427c8072d22ca2531d549732fc4df3bb6da52c86ff SHA512 f87be6a60a7f7d2a71c9486e67e0d769eee1cdf19629e923be9050ff2c9e687ed4c7f434b67d3306326dbca324c3296e72e98f518dea50655d4ae8d06af042fc DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.0.mod 105 BLAKE2B 5716edca2df8d820c67fdbaaf4119c6aae87db7ff8edfe6b3236a471fd99b1a8d9d70b6a148cea90fdbe3eb802a23103d990c9e1442a6d0143e9ceb0417a25fe SHA512 4fefac23779921ba59a16b012c2c59406c76fad3530cbe6c250120339e8f840688c96a4a6749c514ae6d3be66397e1d90dc2253f27a67fc668be36de2326a8b8 -DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.0.zip 2355970 BLAKE2B f6432c01aa1f355ffc0d98b0aa1c6cbc32145f83dd35321eebd6984ea3c752f7a3ca5d9c7195de8b57c6be3dc09c0f3ff203e0b5e9e25502797ce94dedf29c2c SHA512 13728339487c1c4d9714edede89308eb08c36b25eaa2b5c080966a7d3590a83a0b358c5c7488cdda3afdb4f4e27f8a256754f0701220ba2e4d3c8c0be78d2ecd DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.1.mod 105 BLAKE2B 5716edca2df8d820c67fdbaaf4119c6aae87db7ff8edfe6b3236a471fd99b1a8d9d70b6a148cea90fdbe3eb802a23103d990c9e1442a6d0143e9ceb0417a25fe SHA512 4fefac23779921ba59a16b012c2c59406c76fad3530cbe6c250120339e8f840688c96a4a6749c514ae6d3be66397e1d90dc2253f27a67fc668be36de2326a8b8 DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.2.mod 105 BLAKE2B 222405842d8ed63bb6dbdb55970b6134a5762de8b8b6f7fe8ce649c16fab7864896250b4be64d2f1f9e9eef8ec5da18eec3fec864bc63d3005616863382fb4ec SHA512 42c82a58580713ed61fd8789b40b52403f22cae620144c03744cc5538cca79022abe3722de245be21951aec500dfcd7210cf3cab38b68488a29fd7b72c410f49 DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.2.2.zip 2359849 BLAKE2B 71551d57e3561f67ba853d4240f78ff73c8dfe6a7c8230db5d5184aabd802428b6eb621c89d5a774f04f7c6f1a6024ce7664cad0e85165c301a7b21118ea43a0 SHA512 d1445a964d813dc1857c4c058e80bc807136bc7db0a2920bf837f13d8ca45396560f45c7e83d5fb67c3d9bc982fd418d10d0233f172d386456702db65342ebda @@ -1278,7 +1270,6 @@ DIST github.com%2Fnats-io%2Fnuid%2F@v%2Fv1.0.1.mod 31 BLAKE2B 294aaa7492b6b42b36 DIST github.com%2Fneelance%2Fastrewrite%2F@v%2Fv0.0.0-20160511093645-99348263ae86.mod 38 BLAKE2B 22b67e9f112f9074c978cc35a361c55f49e38ecec057d0e02e21957c2abc39a7992a487dbdfb22dde3a1e07ce95decc222708a8872e07756b62bebf103a21e02 SHA512 640533d437f3ab00bf4a436007f3ece53f602142b44319d170d5714da2defba70ed0f8ae93ff73c5d699c8db8ded1dd9b77a21653c3325b500b75eccebd39a9c DIST github.com%2Fneelance%2Fsourcemap%2F@v%2Fv0.0.0-20151028013722-8c68805598ab.mod 37 BLAKE2B 627af5df50cde39e7808cd6bb979e0b1d2ea9733dac6c36d7cb0475ee6b3a1e1e6c20d6c1a34a08e2e5f59c9b41d7a8488f56cf57fdfae110508a54ee8cd307f SHA512 a089301914088a4f0b1e6905a8cdd5748134d1834d0ba34b95c41bdb463dbace1b33901e727257f3b03cd8dadebce33c3301870f0b7ccf63483a71fc63a4d045 DIST github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.4.mod 206 BLAKE2B 67500c3221887c3dd9f65540736ad077a412eb394a302c2dca06abe3a9313ef8fa1d42a24f5df385bab8146a2e291728bd0fc4da0069af9e6919588c630abe5c SHA512 b8aff850aff011830e02c0ad21b0c4bd70bcd09dae13d720262691299a180fa1039365a6695bf0329ad1a9dfdbd71ddf28ce51a7d3289248eef51cf472cb3a00 -DIST github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.4.zip 25231 BLAKE2B 507e1c3dcd006ed29aba002827bad1ad129a97f58fd1e5847d0cc41022716965401c5c3d4027900bdd3197caa4c0e797805a146b841bed1a80b3779fd74e3e24 SHA512 64e6ba58de56e5b305c7ce64285cef1375360e87a7fc506be637ea347b63a2a89a1b56b8db3687d16b0dd631f8faf9c107c2b473b630e450aec92cfed1040695 DIST github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.8.mod 141 BLAKE2B e690296e75b3bd7a25e31adbb55351c991d61666c6ecaf13439ac29b8e0244726dc0fa4f3f5fddb9c08b24d823274f21b57157eda90809ad5f9befc2dad2c628 SHA512 e28417ec57ad5bd2062351f8fd71e3f70036a09c8033931c5598e601ad497053d768ad7a08982d8cf9ba2ea07293856f154d99b934069385a3d2befebc87b5e6 DIST github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.8.zip 31499 BLAKE2B 87b7a109ab2a7780fbe9b85814b0308670d613556ee9316ead12e5b826172ad33a2f44f94020ea594709d19d1ce84ba0d480bf461a182e7dce1d21ed2ce484c6 SHA512 44bc18f913abf245a32b79bb74e8a6517be3db9ba38ecba0f019f242e1b8f7dfc776ab40edd8b9683cde5be11a074d04f975053e8684cbbb64729200999f48b5 DIST github.com%2Foklog%2Foklog%2F@v%2Fv0.3.2.mod 30 BLAKE2B cccdd5811f1be90eb22900329526d699cb97bd2bca45cf30d8b2eb7fa1f2539f107b3f5ac4a93b4c38c44abf88d2957fb3e625d93544d9e726ed4b2f7a01a9fe SHA512 cc0a9caf1e57dcd87dc0757fb61c2b503e72195e089d758278323ceb46d06871dfc15508669ac95a470386987c6410cf72d0729140d36d9a445a038ea79155a9 @@ -1287,7 +1278,6 @@ DIST github.com%2Folekukonko%2Ftablewriter%2F@v%2Fv0.0.0-20170122224234-a0225b3f DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.0.mod 168 BLAKE2B 5c8f6f90e14aef57fb8fa7dee546f60a73a2b1c16f7d5688d6a0b40a3d04ce308a8622f64242d60c1a014e3aa9264c3069404cf764026016d746fa7de031e236 SHA512 c73c807f01657cfadb139db3684cf680e40ebadd4db38cdff690407741675556e534aee37c96e4f54be64283937c81114856225f3d3f64999cecf5df11cce2a0 DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.1.mod 166 BLAKE2B 8fad24303bf57553db631ffbce484b05ac3e7db117503b7ce555c55053a0550770ba6d7c6b831e3daea69a9733d98592e98f90b2e9f5b5f3020024b55c3d5cb2 SHA512 06e7e8754384929043159942b2d873ea872b974d9fae1971465592e44eeb26b072539de290adbd79402bad2a2c7fa38556a7597f5e8157e82d7576cad6b49692 DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.14.0.mod 254 BLAKE2B 30062eca1c156d706683b2d2b88c70dee8e38da4d4bb8785c3894d7d496838f0628095fdbd020961bc619c8a653216f0efacbcceaf0909820f01d070fc1f9d9b SHA512 8a7b93a80585453b3795e1c536fa232511c6eb797125f3600ab8b1f613d9334559692425855a2ba95e329595bfdd38e8eb3588aad58aee8464f71aadc56f4fd9 -DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.14.0.zip 258725 BLAKE2B f40083a2965a442ea70d613f2fad5b4541cec4816b2ba6a28b92e6ac679d8e68a7f17a7c990b2db50583017668f355b1b242fd7019e26afc5160cd64dee96458 SHA512 42884272a9d723ca5d78c4fb5adfcba500eb4c6fc8fa22d11a2104fa36bbd4ce3c751b4a99f850c01efcacf3462fb855607bd26ece1f6182e1ddd68b29a734c4 DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.16.2.mod 288 BLAKE2B 54894e7b679e652f482e824318ac795dc4500cdfb48a4a35f606726d99206ca9d4992f8a4199aa4bb60bfc06a95eeed797507772af168eb6884dd563da3c886c SHA512 1d886d0bb74668946d7aa2cadf770235d83447422d91a020ec2e049d19ebacb01799d9cbc22e4a2e190f205c1398a495d2069790ba30d87d8f4cc6ccd76ae04a DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.16.4.mod 366 BLAKE2B 4e856abba9dd7eecea1d60709494e10b84b5875047a823f05d523c2f088534ddd5a9c03213a2a49a6d3e5191a9e53f0909d9262a034055ef08cd1a469a76e276 SHA512 2be99360d5e1ad7f911dd9bfb96b08fc53ecf8ad7cb09e29798b417677b788114bf1b254ed8aefdd0e0af5d4d380fbb939070ad3190beee02ac6288867fe29cb DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.16.4.zip 287470 BLAKE2B af59216b4e377e4a59fe63ea849a2dba7a156ee117ea6350ae7c3c6cd20b2ca1e5347c26c9109b2bcc9dbec2ce2b3957dd922272d708cbae4e3b46d41f75aa17 SHA512 5963fb1a1373c128fa570c2e84805695ed10f6065f6aa6d121c8752bcddd718c287a04070219fd0686e5c2706e72ade578c57375d3830bb24a66718a7d6cff7a @@ -1295,7 +1285,6 @@ DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.6.0.mod 30 BLAKE2B 54980427295e87f99bc DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.7.0.mod 30 BLAKE2B 54980427295e87f99bc189c9ec00c2167e9aa771cd8777d61cec8127a3eb19f718843e2e736a6d4c08877d23528bc6da810da0c61a1dc07620422fb1b5434684 SHA512 1b8b7ce4a8f0092f0b2a2395fbcafa8cfd6830183bc36fdd58e740dc9ec4fc5201f5eec2daa6e2effeb59f9e1c0ce986ceef838d16876c9fbf0fffad4b7660ba DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.8.0.mod 30 BLAKE2B 54980427295e87f99bc189c9ec00c2167e9aa771cd8777d61cec8127a3eb19f718843e2e736a6d4c08877d23528bc6da810da0c61a1dc07620422fb1b5434684 SHA512 1b8b7ce4a8f0092f0b2a2395fbcafa8cfd6830183bc36fdd58e740dc9ec4fc5201f5eec2daa6e2effeb59f9e1c0ce986ceef838d16876c9fbf0fffad4b7660ba DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.10.1.mod 245 BLAKE2B 8ef01845f54a49336d1d911ec510a912ca5960eab195d6e193a4dd052d1e4158d2dc90a1c89749ab719e3d017decccb02a6af9e6d761016d871ea6498845f936 SHA512 2d89b68a9f4c3e3bf9d46d23d5b9f906d05a3c6ffdca50e83d2e07eb2f280707393828f8f12110cb64c28e96673b76fbc0235a6108d8ebe0064aa6fdf4d33f83 -DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.10.1.zip 167538 BLAKE2B b6ab81d8dafa47bf212bd61697aadb4f969fe78b5c0022aafa855f864db4989e4a06ac2966e4cc27a6b595eca7f09c4a171a30f8c31787f9366e278e596fd3bb SHA512 028f09b7234ad1a7a2788c4d9741e140fd4ecfeb6a9650b941577c5605512336848c86a17b011ca2bb48ebd5d34e6164ef568da4e3ca92227d39cd489025d430 DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.13.0.mod 197 BLAKE2B b5a4df38443c9a98e3440ccaac22bc6ed23bfae91f553521d18ba3af06037ac145cbc7b9d7e4173429d046aeff7fc8eb517d0d1fdb7aa29059396c80b976b1ba SHA512 df0e3adffe3b888e5888e5a646023ac828e4e20d024aff2496a20c26157f56e5dbfdf577ccc4ba833f8cec9443c73a68bcf1bdbc5b5fa11182eed22832d52a29 DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.13.0.zip 209427 BLAKE2B b4cfff52866694e1f6d40b45cadf2b31092f2b8c980c78f1b2aa17673024284f540050c92b63b02e76ff791b328023627bd49e4882028435c9ed0e6ca64d70e2 SHA512 0b68cbb1fafe64f2405200e1432cdb43a3119d152be7057ab5f27e1c535baa1681b815306603737608b4b1d1c5c7ab18dc31ffcc003e6c1eda24655550b693eb DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.4.1.mod 30 BLAKE2B b8bfc20c2ecd93e4a49b1feb791a29d894d57325b04e5f36fde625431886515b2e1de0d11a384fb8138e28a131a027088c7173ffc7f8731f9f352ff521977ac0 SHA512 47de77b79abbc314a3e8c90f8d69f51fc9e99ff160a49cf6e87621183f7acdfa2dc5911877ec45111081426a4c0a6f0da55ce0491e95064a8bd416db33f25624 @@ -1332,8 +1321,6 @@ DIST github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip 12433 BLAKE2B 0c911c9d1 DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190221155625-df39d6c2d992.mod 33 BLAKE2B 256a9a9458b7ae5c74d742e08c96e912ac6c0b67cb6d9dc17aa5926d1073e112e113053264807eebe81b9f96082c70b5590213b1676c4a5ddab7fa3c11757785 SHA512 fc4984200134640570889d9606b48bb88fc1d93c982c060a0a733a2b70e147d2fe2d17bbec2d11bb18e877722512da4a350c6317f9d7d1a166699cefc2a412f4 DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190408063855-01bf1e26dd14.mod 33 BLAKE2B 256a9a9458b7ae5c74d742e08c96e912ac6c0b67cb6d9dc17aa5926d1073e112e113053264807eebe81b9f96082c70b5590213b1676c4a5ddab7fa3c11757785 SHA512 fc4984200134640570889d9606b48bb88fc1d93c982c060a0a733a2b70e147d2fe2d17bbec2d11bb18e877722512da4a350c6317f9d7d1a166699cefc2a412f4 DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190807091052-3d65705ee9f1.mod 33 BLAKE2B 256a9a9458b7ae5c74d742e08c96e912ac6c0b67cb6d9dc17aa5926d1073e112e113053264807eebe81b9f96082c70b5590213b1676c4a5ddab7fa3c11757785 SHA512 fc4984200134640570889d9606b48bb88fc1d93c982c060a0a733a2b70e147d2fe2d17bbec2d11bb18e877722512da4a350c6317f9d7d1a166699cefc2a412f4 -DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190809202753-05966cbd336a.mod 33 BLAKE2B 256a9a9458b7ae5c74d742e08c96e912ac6c0b67cb6d9dc17aa5926d1073e112e113053264807eebe81b9f96082c70b5590213b1676c4a5ddab7fa3c11757785 SHA512 fc4984200134640570889d9606b48bb88fc1d93c982c060a0a733a2b70e147d2fe2d17bbec2d11bb18e877722512da4a350c6317f9d7d1a166699cefc2a412f4 -DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190809202753-05966cbd336a.zip 162643 BLAKE2B 9703d73eccebc6f5de93ff2e0d86b530456aa4e4185e42a6cb39927504b6c5c4a8ffbee1bfd27d67acaa7f6e91f0f7927262e0bca3d1836a0135aabc4452ca92 SHA512 b985a88ed9c655cee21f5a858567f0241cb3636b92ebc25130148f24dbe2e7b35244adfc4077fe204dbd7247dabe47a3233a8a582a76fc5fa7442c2a41c40719 DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20201211092308-30ac6d18308e.mod 33 BLAKE2B 256a9a9458b7ae5c74d742e08c96e912ac6c0b67cb6d9dc17aa5926d1073e112e113053264807eebe81b9f96082c70b5590213b1676c4a5ddab7fa3c11757785 SHA512 fc4984200134640570889d9606b48bb88fc1d93c982c060a0a733a2b70e147d2fe2d17bbec2d11bb18e877722512da4a350c6317f9d7d1a166699cefc2a412f4 DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20201211092308-30ac6d18308e.zip 163244 BLAKE2B e8ef73bd64a738f4f83dcc353ee12dfa2e1e5b8941b2719259e5cdd8b2c4e4601a2cf7b043cbab96b5a9af47012416ccb319517da47de3c811d541b8d4337777 SHA512 9369096e5d679c904dd09f37bdac1580cd91a9128eeb07e2ef762c9a52182f9c6acb6bac46f72c1762b4e98b433afbae9d879f4b40b33d11c31e4a4d811bfa8d DIST github.com%2Fposener%2Fcomplete%2F@v%2Fv1.1.1.mod 35 BLAKE2B 763a350270dbd9e5a8f735ded2a13c7bde23a356f8f4187b4fe430b1dbf995cc9ca2dad54a38e927c07ba01b5c21f8aadcce69b8a94baaafee013d4a9fd0c988 SHA512 79b29fa26101598261ce7406c81be4fa53d79e89a7bed072abcd572d7f35f3a408da45055f1b05c7ace8acdb0ac2ea005d79a4766e7657087ca46327ebce842c @@ -1343,14 +1330,11 @@ DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.2.mod 540 BLAKE2B 4d43a DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.3-0.20190127221311-3c4408c8b829.mod 443 BLAKE2B 2bc1a0ca986dd17787cbf528312efc6e721d3d9a46126b90537b7cae6681192e74afc83f3b64f8835314a0608a3f146e3fb74afc3339bb7b009d16ba04208cbe SHA512 e45c711b58e0453c63b899faabfb662fe743085dbc82782ef730ef6797fd8d372208d4fa887168ac920d6b1d15f7f65fc9a3fbff25a4474915d858411a7adee8 DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.0.0.mod 535 BLAKE2B a8d3fb22b519e88dcb6b6f305a80c94e8b40fba8bdc96941230b354cc6bd8ec4bfd121b8e5ee57e9883e0b01b6224ff22a55fa8434bee1623133cf59489e64d0 SHA512 1d3646f93821b2ff1a4d80074f773eca22ff3675caca9d267762a31c1ec719ab464ba7ade7c8e2aa79b16a4f35f5a64f779fd909060a0c3056f09af77cebd655 DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.10.0.mod 377 BLAKE2B dc1cdf5c083f87f165dcdfd61ba38bffecb85e0706995aeb5bc3ea3c9ae4465e86cebe7e089b4aaf1ec9f79f5b3d843db14d19b62ccdc32f09afabd41d3fede4 SHA512 01ef1e7e81764709488bca1ea7434352e33eda89dfc16aff0735cf16e774fdcf2507b3565c62c31b17c60b52abf3edb95afa0034596d4d07bd315da843d09471 -DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.10.0.zip 242496 BLAKE2B 885faf82949b17b3c6aa100a4bd0f65a6bb9597516766f401ea73bc59b4728b839024319e1457385f7e37c2053a09ce42fe471d7c348a66896266ac723748cfe SHA512 2f1d44c4377b9fa66d65bc3b744b66e522e52c89c5d54cfb251e7e07c821a164319de8c628d4b4650d646177c49ae03507eab5aa10bb2b198bc6b45cce513513 DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.11.0.mod 468 BLAKE2B 4ac6ec5b71271218f33b753092c494ec6dd01e73373df68af2f399d8d8ba32de0f02150c1c5fdac8518ac244391f126cdac602c63ec862bff559d76015cc78f5 SHA512 9c6244491c9a3012c4a2e575cdb361f7fa577f391ced254adfd8d567c361f073ce23ddd57a0f18ec3327189cf97ad737254c0d0ef2872085af6af7bf9dec1d72 DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.11.0.zip 240896 BLAKE2B 4745181476be50303fdf0e66ec147d643995c809a1fd969c846f656d453025f2cd67089f3065b41bede74bfcaa65e5307dd9541457ed7f7ace31b6b567e2e135 SHA512 20c4e6baf239cbc8c8a754ec1b9ee814ff29df1b41332f75f7440b27864bc28397071f3f4d60ba6ff4d0aa531b7a20857e11ecca93057784f76f03876151e8f8 -DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.2.1.mod 403 BLAKE2B 1f6b768b530eedeb17d97fb568df5a39f5d71fc75c5851b0a07b2cd6dff1884c5d42a4b19eb7ec5677699c4f99858b9d7301ec8fdb02b36ae6d401bc38c17a4c SHA512 fe961ef0875e1251f0387a7b1a49e41d7ccd1150e01d383c6893f020c8b0f403d87a407e47d96b498b92e61ec93cc5e1da681e35e586b3d63b4c54d1d4dd685d DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.3.0.mod 375 BLAKE2B fdacadbb6c23350ffa04e625324420df9b523d9fe5bccd8bd1d8f6d592d7ef5a2b4620c1d16c78bbbbbba2716f3edd015cc16ae5b0c3c31e5959ed12143ff3b2 SHA512 e98ebe9ff7f5f5c893ce7a54c12b3d5b86ae1f99a5117875bfb78aa2b59d9e9a95bd54e45e1a16e8bdfa79f38192626f49366a0ea4e36a25681e7448b544b144 DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.6.0.mod 568 BLAKE2B b9afafc90713d607700297bf306b19e65ab9e250e4dd8c4cb437fabdc08fe1f7551e334245950107a6f52eb2c0db5ee62967efdb9037c89a49b102737614efef SHA512 3c53048eb63a00ce6a692d95f285790f7eca72e554262acfbaf8a30122efbc9767bc09abf3d6c16acea65c81e4a94c862fb8b627135711d92f89566cdec67d8c DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.7.1.mod 569 BLAKE2B 0c975c1c48f40792b02fd8756be3b6bc044ca05725ae179445a858baed4861011ba76051aa25fb10be23c6cf14738cb9cab928418be49d8ad85211d398089ec8 SHA512 6fe81bf3c591058f2ff968b3c6656766d9d3fd74c8577b3e7cfac17e463392eed3268248237d252c98751b2f97bc7c48a8db15bfc3fbcd4afbbaca0e2970819b -DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.7.1.zip 226158 BLAKE2B 899457f410f559d70cac7131e9c6057bfd749964b8b133943635b0ee78a12485d933718569d085f51dd34f831114c2f74986818536cf21ad642dac793b00390a SHA512 5c4d5e70be8984c9eea4211e06e1f9478fea4ee4cc227167b9a99d87fa773e060e42aa4866eaed39e58a251821840643d5117b12006a6809902daa08cca14b2b DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.9.0.mod 377 BLAKE2B 51ba08b9e8ab65c350bc60bf337cf786426ad6e51d2548f5358622b41608b7cec408d264ef87810da60f9ef0a7e6ca972cf048d0d5c1fb5df748f0e342d75cc6 SHA512 f325dde1f371b028a8f9e3a1464e8f90982aca72a9c262a3eab8edf752110fb1fbca55650ac48e7575a5e5ba98b371df47f2178ede11faeaafd68b0d27515641 DIST github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20180712105110-5c3871d89910.mod 42 BLAKE2B 5519896b44b7bc3089a8965dc61aae63745c64ba1a390d3fff1202be7f8dd34f59862c04b49e377d6616a93a0341662becce65d431d445703a160ba49eda208b SHA512 c84dfe43954b19c1e4ac5ff8738e79db469f3bc1dc55e69b12503d0a5cf125cc74f4797ddbfe64b2a1bd1e2940575c32678671d51f67161c4f5b53b2a85ac46a DIST github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190115171406-56726106282f.mod 42 BLAKE2B 5519896b44b7bc3089a8965dc61aae63745c64ba1a390d3fff1202be7f8dd34f59862c04b49e377d6616a93a0341662becce65d431d445703a160ba49eda208b SHA512 c84dfe43954b19c1e4ac5ff8738e79db469f3bc1dc55e69b12503d0a5cf125cc74f4797ddbfe64b2a1bd1e2940575c32678671d51f67161c4f5b53b2a85ac46a @@ -1362,10 +1346,8 @@ DIST github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.2.0.zip 13785 BLAKE2B 2cd4 DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20180801064454-c7de2306084e.mod 36 BLAKE2B 39120b6af83d45857c990115ff52d8828278a9ce158b01621d8dcc517c23ff139532a2c2e53ec97616f0c65a2e0db3ede7c5fe59eb33be277e2c60650362b232 SHA512 1b262da0100655c3a56c0e551866491b81d2b88fd5fed9cc43a57bce3634c88c82c798ed1a823237011f6be68b5f0e1fe8284526cd68204851de30a44fc34fbf DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181126121408-4724e9255275.mod 36 BLAKE2B 39120b6af83d45857c990115ff52d8828278a9ce158b01621d8dcc517c23ff139532a2c2e53ec97616f0c65a2e0db3ede7c5fe59eb33be277e2c60650362b232 SHA512 1b262da0100655c3a56c0e551866491b81d2b88fd5fed9cc43a57bce3634c88c82c798ed1a823237011f6be68b5f0e1fe8284526cd68204851de30a44fc34fbf DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.10.0.mod 817 BLAKE2B b4cabfb93633359c6ac6dcd400484e6162bc6b609bf0edfc4a82a2cc0137edef114d0d3e9c55bc47d1abd906d9ac00f9d84f07ee7072452c570ba9f98118f4b2 SHA512 7e1b17c424c8ec889d0efb0f5a171043ac0fffb48725144836d8ac635c036e877e65f34f75055359747142051afd00374cec9e39911175adddca2c50fde4c893 -DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.10.0.zip 163523 BLAKE2B 6d31ee2f8495605c967a41b12da3e854dadf4666641fa8a324f9926d1e965cb2693e390065f34892876c2eae5c1909b5bae8c11e484dd948b7c80983c8adb551 SHA512 74273a10b05fc2e0ea263ba57a52783c147e1f0ee6a1156879c387d0823f90d2c0072b5eea4325116fa621de0af1d5c2ba19e5dc188315c60ecdf74ff8ddcc99 DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.15.0.mod 739 BLAKE2B 6a475498d76be0ec42814e1d5a932c707711b9538e8507afaa36a3ee6d26b78392f750e9553f960cd9768f3ba6a88b3d8c338b102ba48260c91b0f5b48e1cb06 SHA512 5d321367c7b93f913cb524c688dc515dfe28a0cd712665b61ac12dfebac8a67fd19ba578f8a3666b557b41670eb9f3cc718fb93ca413851552efd695859b7c4f DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.18.0.mod 739 BLAKE2B 6a475498d76be0ec42814e1d5a932c707711b9538e8507afaa36a3ee6d26b78392f750e9553f960cd9768f3ba6a88b3d8c338b102ba48260c91b0f5b48e1cb06 SHA512 5d321367c7b93f913cb524c688dc515dfe28a0cd712665b61ac12dfebac8a67fd19ba578f8a3666b557b41670eb9f3cc718fb93ca413851552efd695859b7c4f -DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.18.0.zip 180122 BLAKE2B 3642e3d3c5efd36fb2b91f9839fec53456701ee525eaff659704e029c04bc5ce4af8eb6b52cde95f58fc13183bd83c5e396075862542fcd5a445f2653ef3b45c SHA512 04822cb324c1f82ff9738648c28d7162fa7816baf0d58770e127a446bd11e980da42f58f26721388a72fc6bab8f67add0e228553c945633ceb4e34586db2f32b DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.2.0.mod 1223 BLAKE2B 969e069f2e210c2863b54504d62dec9ca606c485612ab1c42249e623a4bbde4e4ad0b41da30f83594b7efb4d4a44e0a68a5faa8c115263d73738773c35a98dab SHA512 02db8fa79cd8368060c72ba3925624c779bcc9e39817b6ed86ba143024959496db2c23c1aefe93a5d9f22b48e742072382e2ccaab430c1c9eae6254184e2358f DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.26.0.mod 794 BLAKE2B 91c9bb4469ac63bd98bdd1ce4d2f2cf3a233f62f6c30b1da0b2a94eb1215a975f3a19cf066c6bc5847fd1a642da6082b8377825987ab5ba21620c2ed9ef26af4 SHA512 05a0bd8a7de559925fc5ba7753d9fc80db41271fedfcd0ca3137f9620c68468c0bfb706e0b4915151657c74a5d64f52a5594736e19fa1421aa65124f551f0ddf DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.28.0.mod 583 BLAKE2B a104cd758a5cc7962ce174ce93e8cdcb0320f4bc20b21ed3579a201e85ac851322ce06087d4f5514317731f97903a3e118d1001eb3ebd614158c1f7de9113e3e SHA512 550dd35c6ce6d98886c4f73ad3afedca13e12e39ba3c0958a4cf05a92db92187787591d33ebdbde6d961a451c615bed95cb75ec36b3e91ce0f2b12805d82d248 @@ -1380,26 +1362,21 @@ DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181204211112-1dc9a6cbc91a. DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20190117184657-bf6a532e95b1.mod 36 BLAKE2B 3c6acbd1022261065a321c6f3cfa2946b58011f45fae9b98761397eb7e5e0984dae4ea34c4f837f798ab29ca8e26ed3f07771be10e500a99ce7e5e9f4c401b5c SHA512 05f032eba0c264b186936c2b9831624a01999972d4f1bba6aa15c452407eb10d402f1ac674eb41e2d24fa66e85ae2e56efd2326fc4ecc741169b9908d7935335 DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.11.mod 198 BLAKE2B 9b5c175c915db6a1fdf18f440acf348e395fd2059e1f44fb1fd556e7c2c6821cfa397f88d2123f681b41fe5c5689ebc58c7c75865ef63f7f1c61fd8d323d8117 SHA512 7a54bddb87350ba24423842fcf1cd8b031be427e9f689467503d8d6a876691b209a5d2ac33d848a977d2c3890284d816fe4f2fa9391642010c96c3c0d691efcb DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.2.mod 98 BLAKE2B 23576c142554e5a22a11d704cbff1bbaf1029518ceec7f04e22aa849763a7aa5e26ad1405a8cbc0d87097264a5fa7cfa3d655cad18148f5de6209a06580722d3 SHA512 0897ba1b7b4a32f206763327e138d3b460194097d19bedb8ee1bb6889b9d188afae9439178d1c2151fbe17b7d18545cd6cfebd050bade93cd39b435b35b6acdb -DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.5.mod 136 BLAKE2B 49b2b47ca2cb64a1522a3719c1b46dc6f44d3122d3a05ea475dab88e89336aae3f396082f4de0f89400a0e8db85208446582a226238a701fb92c155a2e85fef8 SHA512 fbbbd57eff765585e67074e5c278d7d3077289c3d13c306147d6c3efb98232ff317ad92464ba768fc3d921b4a09cb3f3ff5c5480c89a01ec821bc86e5dca82f1 -DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.6.mod 145 BLAKE2B 8c6ed8a28b2f2fa7e97cfcb545ff7604eeb5802bf301ecfd574c1bd5bbd59172479a55c9f42f42a13a85daeb77e730dcf5cdb78aa9b7c499f3ded0584163d75b SHA512 0d285b677b209f7973ddf036b2f2463aacd060e58db9a0721e85d40d513f8befe3605677dca1040fe9dce006e3d5d3246d876224f05c45757505696122a3153c DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.8.mod 145 BLAKE2B 8c6ed8a28b2f2fa7e97cfcb545ff7604eeb5802bf301ecfd574c1bd5bbd59172479a55c9f42f42a13a85daeb77e730dcf5cdb78aa9b7c499f3ded0584163d75b SHA512 0d285b677b209f7973ddf036b2f2463aacd060e58db9a0721e85d40d513f8befe3605677dca1040fe9dce006e3d5d3246d876224f05c45757505696122a3153c DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.1.3.mod 198 BLAKE2B 9b5c175c915db6a1fdf18f440acf348e395fd2059e1f44fb1fd556e7c2c6821cfa397f88d2123f681b41fe5c5689ebc58c7c75865ef63f7f1c61fd8d323d8117 SHA512 7a54bddb87350ba24423842fcf1cd8b031be427e9f689467503d8d6a876691b209a5d2ac33d848a977d2c3890284d816fe4f2fa9391642010c96c3c0d691efcb -DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.1.3.zip 262428 BLAKE2B 6334337329e564dfddb576464864b53d4da3cd7c0988cb6b0eeefd3ea9141f36429f09c1f75d11560dc12e23751fe5c52a4c7d46cec0ed3454fd3684562bad72 SHA512 8dc2a0f05fea67aa9a64d2e91807cd9fc111be3ad4fcde2b8f53757ed38a478467f5edf68f990d124e1019cdcfef133cbd0278600df8abdc1c0971808d729956 DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.2.0.mod 198 BLAKE2B 9b5c175c915db6a1fdf18f440acf348e395fd2059e1f44fb1fd556e7c2c6821cfa397f88d2123f681b41fe5c5689ebc58c7c75865ef63f7f1c61fd8d323d8117 SHA512 7a54bddb87350ba24423842fcf1cd8b031be427e9f689467503d8d6a876691b209a5d2ac33d848a977d2c3890284d816fe4f2fa9391642010c96c3c0d691efcb DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.6.0.mod 198 BLAKE2B 954749eeaffd58f7885eff94ed89b9c933b2506dce66db05c8aa640fc7e8ff21032d855776ad091c86d43b77bd9e2d1db3cfa7b176f2984ea66c4a49b4373d9c SHA512 539fdd264ff10a459bf00eefdfcd2d3d079426cbcce7c4ecd27e1191d6392e0451804bddd5a39f7279e3c91e63a40ed882ebe1bcce7e71913d6109b7b6ba403b -DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.6.0.zip 282768 BLAKE2B 22c62ac51bb14578571aa93f0acdecb984ca370b4617122078b28b8ec5ab4ac8cbd6e986d60335d5f9848028f51f94d8fcdae3d8b428c8d3c8196d97cb2f04db SHA512 1b73a550dfdda98e41da9ace048b230ba05bfe7518cec7b5f877c11afa58bdf9d53ad25fa848e316fcb5b25ff6eabb0a2d2688c1cfbd9642a8670b72c3f90a92 DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.7.3.mod 198 BLAKE2B 954749eeaffd58f7885eff94ed89b9c933b2506dce66db05c8aa640fc7e8ff21032d855776ad091c86d43b77bd9e2d1db3cfa7b176f2984ea66c4a49b4373d9c SHA512 539fdd264ff10a459bf00eefdfcd2d3d079426cbcce7c4ecd27e1191d6392e0451804bddd5a39f7279e3c91e63a40ed882ebe1bcce7e71913d6109b7b6ba403b DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.7.3.zip 300924 BLAKE2B 986ae7378c18369c4c5448edd5a34e7b5b3f24a885069ad32b0b23366bd17484cf56d359950a4d9635ca93457a10b6dd87d470ecb1c8fdf7a3082903de72cd1f SHA512 f5c15caf8831c777f218a258ab186dff4c7fc34b2e04667695ba637e75d9039db18dd055c02aecdfbdaad71fb78e8e1308c4b520ef032d405ed6dba8acaf7d31 -DIST github.com%2Fprometheus%2Fstatsd_exporter%2F@v%2Fv0.15.0.mod 460 BLAKE2B 5d83d3f75e58cf74e0272459a5771b3814fbaf0c3bbcda38161b15a3ab41f152f41f8577a6a1e31c65221300305920a6ed67f13112712a4b4ae9c2cab7b3c6e2 SHA512 f3d1cdfe9ed6844efd812ace747fcefe3a62001c4f0d2d02437967de51aa400b110a7eefe81d29fb6431c064beb3bf5a53a7265793edf1801c502456b458ab94 -DIST github.com%2Fprometheus%2Fstatsd_exporter%2F@v%2Fv0.15.0.zip 114767 BLAKE2B 60204c3f45c8910b1b32f5191a6070453d3d407e2a0013b7fb2bf8ad0174ef8d21e729a685f3190bd9fd23724d4ae01868fbe2b238c7bad0f574c6a621e295af SHA512 9101f10a043715cb354778f9bfa5286cbf85cb6776203d1a09c640ee84a4b25f4c45db4c2b098f6e8a7db199fa4deffe90bb9281f3af1c13edf344150798cd13 DIST github.com%2Fprometheus%2Fstatsd_exporter%2F@v%2Fv0.20.0.mod 652 BLAKE2B aaabd20c603092d749f40df440b0d13af0cb95cf2f4db72159ddfa4f88e9128e6729fc398893b3e850bc738894d3d0f3ef51eed8e4dce690dc83b2932fa80e37 SHA512 ce965f2951c1c660f1a29053cee3ea9de04b6d6b7076df43d0957ed5b23c4eb16b6a278a1d786ea9b1e6deaf2a06c2779772d1b3926ef47dd2361df775470ac2 -DIST github.com%2Fprometheus%2Fstatsd_exporter%2F@v%2Fv0.20.0.zip 148541 BLAKE2B afe304ecec0360d1970b79fd91b0598bba5172161680b78f147cc81c588569f16d91ad5d1f493161d7e4666ae700823f1fd44918c46e7963a45ba76582505668 SHA512 372cd1b7ba8349cd3a285271f5cdb528865e2c9b23bc823c70a9bdb356fc28c1bbe8b9e5882d259464963c51cf28e3dba71dccc999ee25057a29ed0db79a7198 DIST github.com%2Fprometheus%2Fstatsd_exporter%2F@v%2Fv0.21.0.mod 352 BLAKE2B 6cd3ecb9ef4bbf54d931a6e0e434c1f15331abc369698276a6f039685aa3b412e75cdd696fec8a3df67ff0d99c98a28eed94200f673ccaff1408359c0c393963 SHA512 e3d8c3f22295d13a58bf5dde961f7d2510ddf71e9f7aaf0a48d96a07c39caf867de1c2e059537a4d555fb9ddbd16bfc8f61a0128de915210afb7c6405f1faa63 DIST github.com%2Fprometheus%2Fstatsd_exporter%2F@v%2Fv0.21.0.zip 149493 BLAKE2B 623e0983d92b1136d219d4dcf64ecd1f26d41ad1f8fec688e0527101f000b34d1e7d206ceee51846bd38fc22a511441b713480e8185955c8bfa8b2ecb6f5c825 SHA512 83b81720e0a4380de0d50061c14ed5767e82bdc287bbebf9be393116f2b7d5c57b6e1b03397458c1cea65e3ea25f976fcd01d4679e4fa105c29757b51da87a9a DIST github.com%2Frcrowley%2Fgo-metrics%2F@v%2Fv0.0.0-20181016184325-3113b8401b8a.mod 38 BLAKE2B 091e64943724001796bfb662a26443a681d4db705219a1d7601c350b94105caa1584c62a4befd1aa0c634268867c84bacc79e235d5a8b416f6a8aa8e12192261 SHA512 f22213d29e8a0914fc947e08d8c85dbcab835cd7587e45cf5458a1cff074359fcb187ab47bdfd933c8937e393975a29e872b744ad61295fb1dee3783877e81df DIST github.com%2Frogpeppe%2Ffastuuid%2F@v%2Fv0.0.0-20150106093220-6724a57986af.mod 36 BLAKE2B 6faef3be0b5f137ecc89a7875bed1f576d144f11623905c04cc44f93812b80f3e5b56f05ddb3343848e7fde7fc439f49627f4fbd10730b1e9c2c9153a2d3067c SHA512 8cedf150caf05299c5b9f8b4fcaa17e4771c613fa06bac434586048ffee22ba9501e0fa540da90a3a24f3e4f662c9517571a23a0353fbb29c881d6d6c26d5f1d DIST github.com%2Frogpeppe%2Ffastuuid%2F@v%2Fv1.2.0.mod 45 BLAKE2B 6fe371f17a31bcd132ac67cb50052f6f3874c9f62e2d67f48d52d241026fd21e58ca9abdc15fd53cb949f79e7d40dd0c289af3849da3d4d9ff75b491e8235c10 SHA512 ea2e9a81d7720b4e11129fbdd4772be224b6e1267157c29b9d33813b6f4ae905e43c3840cf1ade6ff5f73bd22c103430a0bc882355c16715e124b442652cd4da DIST github.com%2Frogpeppe%2Fgo-internal%2F@v%2Fv1.3.0.mod 73 BLAKE2B 21e3545a4518c64daac1cf36e47a2c8e1fc8ab7402372f2e871052d0dd9d83fc2aa44babb2f8751180cb66dcd2af82ed202afbf5ad3a219c4562da23ae8ce185 SHA512 4fd07ae7c00bcc135cc10a0b34ab102a893ed8ea4708f9d38da52f98b09fb66144f970ffd8795476fd6625b25c9e48390a5b1c5c99bd0c8d536a94201dc96613 +DIST github.com%2Frogpeppe%2Fgo-internal%2F@v%2Fv1.6.1.mod 82 BLAKE2B 3b7ef0a383ee9e7e64ba74f92d717687cacdcb0e7a57f76872cfbe77ec1c526ab97a8695a2819cf986c51a4561794391e5d532cc591f6ddc2141b5559d3cec9c SHA512 d08f8ca2d93c0d97d5947ed3d221fff67e774e810d7fc9c93bd25bdc446190fc5590776a3e6b159fde2b97c3355921235fb6c8b8623b7f2090102a7f1ca1a6bc +DIST github.com%2Frogpeppe%2Fgo-internal%2F@v%2Fv1.6.1.zip 196352 BLAKE2B 21cdadeb4e6f7967a11175c4d14ac5aadc0d0d20092f8b909c569d7710482e44652bd50d3da5ec7eeeec74e455c3184d579d47072a3249bf51a0f946114dca1d SHA512 5d600066c02c99d5b483d323190548234d55b80c740cefd9ae288c3b76fc1b5eb8d24271ce6ea027edc652ab7e975483e3420eb4ff21812687218cfab741edd3 DIST github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.mod 26 BLAKE2B 8b06c3629b4e4371ae833fd22ee446fb963e300c42e4a92fb215f10500a826df54285a3d9718546fceef0e47f949034d0de0bf8aa9ca49150cd2d58e8272b1e0 SHA512 306c53774adbaefecb2283f1d90c11b088d9a45a29215ea7c627ec6d97027192bf5fe99a3cb473415ab47764802859ce9878e83ef38fdc4a87b4c7b0c5226a71 DIST github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.zip 19727 BLAKE2B 013a8f40bcdf2d1ca9cef088fd6cc2ffbdd9bd452d3514fbfe80f4cd5f7ef2e27f08ac9ccc575ac567649060137ee1d97af33fa5962cb79d53094439948f931e SHA512 533e6e55dbd95f9f79d794ac847b1db90c0b4515e9fd1d8d3d003a991ce8315012c3f8eb8a943f8772434b1e20b34562ef02630e472d31d8485e7c8125a47fb4 DIST github.com%2Frussross%2Fblackfriday%2F@v%2Fv1.5.2.mod 39 BLAKE2B 6d577028361a97eeb7070517fb59bc801499e5b93cb97da563e41b91ab1443583510a259283bd01777ebd435934f27212c15ed32cb5422d6d711697a7c714579 SHA512 d9e6796c9e0a1b870a32c313e22555a090e85919007d50ed4dcbcd3ccbfb90a3ab98e9f3e2d41bd32196e3d5fd57c62e6d47aa65e79efd3d05b7d73ae9bfda7a @@ -1434,11 +1411,10 @@ DIST github.com%2Fshurcoo!l%2Fusers%2F@v%2Fv0.0.0-20180125191416-49c67e49c537.mo DIST github.com%2Fshurcoo!l%2Fwebdavfs%2F@v%2Fv0.0.0-20170829043945-18c3829fa133.mod 36 BLAKE2B 9763cc748e6e6881be55c29f5454b49a5b1d87987456024636f5b0c9fdca4e80f5152fad35f8f15a757e97ca5fbcfefaeb59ed4772acf1c0f98bfcf2e0e4718d SHA512 db55dabf219a7b17fdff45db51fd93801df17516e6ca093af97475cd0bc731d108dcc5945695581b035bf410a95da1edf481dfe9b945935ec8c9bf19e081ac18 DIST github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.2.0.mod 393 BLAKE2B b9d712acd24d7a0605c74920733902a8eb1f9151fe0b0c575f01e2f821705ca7323f854c5b88d5bc534ccc9155571c083d4f53c6f6892879c829146bd95729f3 SHA512 c1621afd4618d1027b2d89a8e9653d18dabe098a7004b376ca2be63955ab783879540a890ab1324c2560dae9e6f3198dacc32d5fb0afd4b5a779d29a8c28f035 DIST github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.2.mod 337 BLAKE2B 94ce7d2e23281061ee0ac0b1be2f8c3439c86e62c56ecf556a81123d57d819b1e0e95ec3b7c6425f13abaaa1683942b7a3d0bb8ad489577284b2a6063c777b37 SHA512 38a79599dbd09661614d54fc92149fe581575b7833e89dd73a3f754fafa4bc549c6c9078753ab8e2a85ce2be3ab81e528e29b6d19e7c329e0cb0f74896d2e418 -DIST github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.2.zip 58627 BLAKE2B f4276f0095188324c06e4412303ac19e3006b18823985e26ca49b2de54ef58cade626b3d2439f5f2a29c47618420b890951f94e5a4801dbaad4c3294f6555a4e SHA512 3bf6be07dd9a97bde938309857e16dc425587c100e35b2acd1a6f11a9ac196238b0844abbaded43fcc01be0664efa15b64f159f6259322043e3046e7d361dc20 DIST github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.6.0.mod 301 BLAKE2B 5322be7914862368eba07f521c046dbd7580edafd47ac633116b8c9f4b61526d0d63df11ba6894223590a1ffcf4bf478c394a335c305010ca9fc18107d4e61b7 SHA512 8fe5a437a5f3f8c1ce0aff067ee261a946d946d7640aa5acf7c34b9c8c4ee65128a6421aa38bbb1feeba1339b356952ad58b4bad98f1c89ac455d94e86684a8c -DIST github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.6.0.zip 65802 BLAKE2B e0487985824efba7ee61c5a73df7b591d625dcda32f833ae276191cd82bec8f3db30cc2ba217d80cb56af1436b8954fcd22ed3f861c6c7fcb4a94818357bbde3 SHA512 abd13a98d10b6c996918712443edacf97ba5fcb9ece7615f59458a583130f68920dd313533ff0d8c84c6011fd2c4d221783b1250e3250b569a6ead9d7c02f7a7 DIST github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv0.0.0-20180927180507-b2de0cb4f26d.mod 43 BLAKE2B ea265a40bcaaba6e4401504643cb9bc2f775a23792b1802d6c1b665121c49db7d4d850ba03c31087fbd6f344b08349ce00a106e430c8690b8016c95318cf3973 SHA512 222b0edcf745e14eb775eac28668dfa0c52051cbf302ec441b58d75846fc2570a0fc2e616cbec68f6312a1648fd7e6997b6597b160b1a7f84c1c500a42e93e6d DIST github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.0.mod 52 BLAKE2B 3986b09ee44d8abc94fc0348107b410db374fccd11d77b9b0b7790b376a0f79b53bb3c70537d8d68b336ec007774fdb248237b6867b1a5c1802216073592fb0c SHA512 ae6455f8889d8aeea4b555e5c34c9583ffc5990e1772e75e5f6376d9e4d7d9e5f540ed0b04bcf142523347dfc21ae20a57d6de089718877d7db4387d9dc62319 +DIST github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.0.zip 120718 BLAKE2B 4caa06b2d4c8c61d2688000ea73b7203e52a9f4318d4ce03be8c524389b719870db5fe61ef431131372d1ae1752d5f14b20f4c62faef5ccc630f92f66e746790 SHA512 60eb1355065dfa54084b5c59b88c98f872a94c75541cff15cdaec5cec915f280156d398823abf578853cb54360c3f20e98c090f6e109d1a94f018e88bf7d139b DIST github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.1.mod 52 BLAKE2B 3986b09ee44d8abc94fc0348107b410db374fccd11d77b9b0b7790b376a0f79b53bb3c70537d8d68b336ec007774fdb248237b6867b1a5c1802216073592fb0c SHA512 ae6455f8889d8aeea4b555e5c34c9583ffc5990e1772e75e5f6376d9e4d7d9e5f540ed0b04bcf142523347dfc21ae20a57d6de089718877d7db4387d9dc62319 DIST github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.1.zip 121005 BLAKE2B 96eaf62f63fba6a88b185762f0940b41b0775ac5e5e76f9268b796b8dc1aadbd9fd9827ccc82c65c5a54de4f9df6e24a58be4d09ac17365d67fd7c985a17028e SHA512 5f38713c2b92ac95a93d592c37f3ed0315ff9e563379944008fdf465b353bdf1f688a9e949ad4e0f67a2268af50d86e6e0da2785492cf3671408f3a5b638fd3b DIST github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190222223459-a17d461953aa.mod 246 BLAKE2B 1f831472c97f821af45c0fde298f22ac4ecc8332a2273bb3bcb6b94ba578b97703292baede7838d341f5c3df46e4cfe8d1dd10444056e8ac8f92af8f571c199a SHA512 85ef875e586f0fb710078b39c6e2ab28ee7b2c894c5d0031a1c4e1b62c39106ba54c70d3a9e21698003ec4aec9b3702301229d9d8de2957d958cff58e221fed3 @@ -1494,6 +1470,8 @@ DIST github.com%2Fviant%2Ftoolbox%2F@v%2Fv0.24.0.mod 32 BLAKE2B da1ff9607ba3c4e6 DIST github.com%2Fwangjia184%2Fsortedset%2F@v%2Fv0.0.0-20160527075905-f5d03557ba30.mod 39 BLAKE2B 2294b23592934abc3f2980317744c287e11f8409885c12667cd7cf52520e2475ad0624c9dedfc55936ffbd374a91cf900ee4a26c9786237f1bce2e0242ea15b6 SHA512 48dc4c7db3e05f5ff67f17a4e9e28baa901804205a27a6cb48edadf796a81f7a0d7094d513e87bc85bf724b5c02d1530f1cebc389742d91317b970b80a2dda39 DIST github.com%2Fwarpfork%2Fgo-testmark%2F@v%2Fv0.3.0.mod 48 BLAKE2B 6416514d543b377eb1408be4142ec017f49764f90fb70c0289f48bf804c2dde161f84e732c72eaa751db1d691cf8989ba89e86f424ac070fd04c3f212fcaff54 SHA512 58d5845413b59ac65716aeb25677aef37e1a0e8b4dca03c8dab24f2095f1f6327c96228c4a656e43fb8928442cc1d26c6c881baccedb7b29f5593c2711c84a98 DIST github.com%2Fwarpfork%2Fgo-testmark%2F@v%2Fv0.3.0.zip 16028 BLAKE2B 4efe0eb351184a1e7513485192919fb228b0c6c9086c391e994eb7bccd30203909df3933f39a0ed6ee393a3e2f57491a2f040a07ac15026954d8f6cdb54ca10d SHA512 d917f1363829f190b27ed7cfdfa5ffb00c78ca1bcfae2cadf8fcec16a99ff27bc3badb851c0d96ab6e2c3875712bd97f8a68b35ea7aefcdd2fb85781a8c84e1f +DIST github.com%2Fwarpfork%2Fgo-testmark%2F@v%2Fv0.9.0.mod 48 BLAKE2B 6416514d543b377eb1408be4142ec017f49764f90fb70c0289f48bf804c2dde161f84e732c72eaa751db1d691cf8989ba89e86f424ac070fd04c3f212fcaff54 SHA512 58d5845413b59ac65716aeb25677aef37e1a0e8b4dca03c8dab24f2095f1f6327c96228c4a656e43fb8928442cc1d26c6c881baccedb7b29f5593c2711c84a98 +DIST github.com%2Fwarpfork%2Fgo-testmark%2F@v%2Fv0.9.0.zip 31588 BLAKE2B 3d83cb5d2a780a502d04d741b6b46c3c658e8f521dde9e147ce1c85d328acdcbaaf14ed199b7e094f6febca4ef86d810ea6c8cb93ec2ea6e71340f7dee0a79e2 SHA512 037a881cc9962a2bc3c3da8e39a061031ee2d19644c9ef27e523490f53733c3ef1fd1eb80f0315380b82dbaee97c6c51a002bcec6c77b2652529ea30788f2b30 DIST github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20180510122957-5ad1f5abf436.mod 35 BLAKE2B 93145db80f6a2b30ae7b81d94b17c38a8a7dc1e56a45d99138c269c1fa4bc314d798eab6a55efa287650c0c07f9cc275cfbbf947e460adaa55574b2746c54ff7 SHA512 a5bf81af8bf2123aec3d1e16448f5ccbe2e8b40efcac12c97daede604549315963b59102f99c518cc2cfd00763ad92fcf45bce697d14853119ffbc81a04678fa DIST github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20190328234359-8b3e70f8e830.mod 35 BLAKE2B 93145db80f6a2b30ae7b81d94b17c38a8a7dc1e56a45d99138c269c1fa4bc314d798eab6a55efa287650c0c07f9cc275cfbbf947e460adaa55574b2746c54ff7 SHA512 a5bf81af8bf2123aec3d1e16448f5ccbe2e8b40efcac12c97daede604549315963b59102f99c518cc2cfd00763ad92fcf45bce697d14853119ffbc81a04678fa DIST github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20200122115046-b9ea61034e4a.mod 35 BLAKE2B 93145db80f6a2b30ae7b81d94b17c38a8a7dc1e56a45d99138c269c1fa4bc314d798eab6a55efa287650c0c07f9cc275cfbbf947e460adaa55574b2746c54ff7 SHA512 a5bf81af8bf2123aec3d1e16448f5ccbe2e8b40efcac12c97daede604549315963b59102f99c518cc2cfd00763ad92fcf45bce697d14853119ffbc81a04678fa @@ -1502,7 +1480,6 @@ DIST github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633 DIST github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.zip 9582 BLAKE2B a640f31282c54476b84b62f126a57091e07966bb4b984cfe3cc842843c60837ddc8666b82c67e442ce0b37525be89bb3cd0c5ad54b16688f3114212991666584 SHA512 60b7fb1406d2646facd62cb8af075323f8ad96398701298d137fc7f5a9c6965bc72da4fd93e3004de604a306218c62101758c4c5b2c6581d93648710f7b0a2bc DIST github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200123233031-1cdf64d27158.mod 184 BLAKE2B 4b582fb070ebc2e0ff91eb5e9ca5e018cda5089612862c53a39310ba169ce3fa89ded4c28484502dcf9a4e822d250faad1f6547878fb70e55525b7a7addf83a8 SHA512 081a51357b175ac03f790e15f6b6aa100da276a5491ecb703f582af4a4eecfc52e78a7e6a4aceb846049c3ec29ef0ea558a9c64d25960dc7e82ce5790781df4a DIST github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200710004633-5379fc63235d.mod 184 BLAKE2B cb24cd9adffc9c4f00d6ac2739b48d9148811ca993284cd5fa691683c2c535817189b8fa3e58b9be9be426467a37524f99215369fa7c91c4e68d103a8d7b8056 SHA512 8055648086df4a3f99db7d926d74550d863425854c2f30a2be0f80107af7d306e681ded38acef107dbf7169713053be2d39a428c9238c90b75d23f0086b5a157 -DIST github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200710004633-5379fc63235d.zip 22563 BLAKE2B c463a5e875f9c49d4520cc52edc83dc6c77e36d506d2a8608fa67840e9d02e19de4dd564eb7b7305eea8582e1e05166ebcadfb40aea08d6df580813439697016 SHA512 e010f8cfb042ee222fa14ee9358fdd84b4399551a2138d7a9df57c0695ba5e15a992efd01d37cd5c9bbfbc6a1ce4b56c2a577971e1fe7e98e9194a794c4fa84f DIST github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20210219115102-f37d292932f2.mod 184 BLAKE2B cb24cd9adffc9c4f00d6ac2739b48d9148811ca993284cd5fa691683c2c535817189b8fa3e58b9be9be426467a37524f99215369fa7c91c4e68d103a8d7b8056 SHA512 8055648086df4a3f99db7d926d74550d863425854c2f30a2be0f80107af7d306e681ded38acef107dbf7169713053be2d39a428c9238c90b75d23f0086b5a157 DIST github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20210219115102-f37d292932f2.zip 31467 BLAKE2B fa71f4632428a4bcd7091ecc810eb7fbae5ba4e49e73a03f8018c87cf1f23b42d1108cf531fc238868e7173d6cbb6c2e87baaad47275a62a425bbc5295f88109 SHA512 e330bd6e207297e1a07a275a9db075c075683d9d5d2c0893a074477fcbddaf493cab0b2a6170be7a882e9888063f9d8850c400eeb821e2954d216ca5b9a1e4fc DIST github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.mod 40 BLAKE2B 76c7f5e75dffd0bfaaad89b05e8145fd9a99efc6181f6affe3d818d2af7d7fe15c598d2605da386f055d303668b3c64aae8d794ccb63dbaa49d97840bf555de8 SHA512 46fc7096c5a933da10bb6d54f6a741a05461a4e3758a3a07d6e8aca82618e164671a8111f811818c739eb3f5d73d5574e00ab34f97e68d396d5f52d547a890f9 @@ -1520,8 +1497,6 @@ DIST github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9 DIST github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9.zip 15133 BLAKE2B ca6d9b5f0b139dfc138afd327d88c4c2d5a23b21ab3511b6bab3e6a2e07f63814861b680bda7768561afde5958d8971c6f87aebfda67369ccae93a25975b8120 SHA512 5faa02be71c2bf170f45fcd1e76cdb8b4f38593d04826e8931a1a29b81af41e7df5da226d7c937cb56950a95ea4888df584361b072c7972931305269e12e8e52 DIST github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.mod 49 BLAKE2B 2182f1e71111a9903588e6ead7b525b24628b73fab93e272db86f5a2040d66351202380dbff144a54d593f60e8f96edad9e81ffcc167638960ff86b8e2097d78 SHA512 c857a20a88d06d2695bf15467e27aca89d1df76b1d6521139d0506fe77f306e1fddf21f47cf3daf461ab9af3459bd0d17f8cce495ea3e69dc846848f81c8953b DIST github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.zip 4435 BLAKE2B f83f665de6150eaa23ce363d815453468b6711eca401c9bf66cee6d819b18b7de31520a4cb2d6ff44e9c2617045c95a91aeadb2a0293bfdc33a2547160485e69 SHA512 28145b76f87719f8321c0c0df6562f8b59bab8dddd7e9c1a201320a0a543bafd92ea1bb24b8cf97ea4ec56202ac6d132ce2a62b59e4805ebee11eb3aed03a584 -DIST github.com%2Fwhyrusleeping%2Ftar-utils%2F@v%2Fv0.0.0-20201201191210-20a61371de5b.mod 51 BLAKE2B 5ee4a5d94e1ac64437293285a9607dcdaebf276d789825dca0e2377cf14b262a0889c052848d8f999f3122845dd8ed31ee42984ea11bea4981606d0a7909544f SHA512 4c0492401f85b458ef25479806804f9718303655c7499661c3c74b1de8862e78a3f05a657da9cbac40377337914bc3b6157d2e12ac3fe8ce4c499eccc57abbd1 -DIST github.com%2Fwhyrusleeping%2Ftar-utils%2F@v%2Fv0.0.0-20201201191210-20a61371de5b.zip 5477 BLAKE2B 2e66b78dc06b980d352cff6f66be17a61985aaf7096b8998a195caeebd735109500974f8865e1e24fe769d095b2951b01dba17eee3310ff3161c774566b040cf SHA512 ac814ba07d45f6c8950ac227695d6a2e7cef6cfa2c3c3b3b2a5b8cc1f813b67ddd2e8b183a988ba764ae495fdc5ee2fdaca11f0da0a19e717cf9bd80890ffc54 DIST github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.mod 42 BLAKE2B dc7c21a0120a7ef307200408167c085b8d2de188e6734fd4e71a1024d7e246872a0f4876c9c185a75dcf1b52d43ecff640a7d88de883fee7edfc05020a9b017b SHA512 80a0b7bf1c99e43eb8ced124dc93d58f91124474f78b3570982bf90cf68529dc58d59210ce8d16eae4ac8e55a97dd9d4ddb7a5e426eda37d6a0966dfe654886f DIST github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.zip 3263 BLAKE2B cbee2850bfa95d4924cf4205abc701731a3501acec452a8e61daa5d858a5d26ec851455aae9496dd0cb6ae936fc1d4ed8db4944ec622d56ced23a108bed6c523 SHA512 e2c2760184d5e7e482f83835958b4fc8bf280a34aeebc9291293be4ec0f030206a8f499e219277d6bfb2b0c14998bf9375645ed990852ea05a9ed79ff0d778a8 DIST github.com%2Fx-cray%2Flogrus-prefixed-formatter%2F@v%2Fv0.5.2.mod 51 BLAKE2B 7534a111176a6c08207d0229dc8709e1fed08bebaa2e0f462ab190a2e1be3eaf7a47df9b27a75b6bf5952dddf751980c966ce38ff46509cc663c48213becf365 SHA512 7a7c4f4015880f15e35a156ee33d868b087806b6dd34a848efff19df73daf3a9546bfa1b93c73f4ebccf7eb31e10b7ca4ca84a54b8021694a7750919b08c4841 @@ -1533,8 +1508,7 @@ DIST github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.1.32.mod 41 BLAKE2B 44917ea3a6fc5339 DIST github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.2.1.mod 41 BLAKE2B 44917ea3a6fc533933ccd76d1594e19246c682d96311e030eeeeaeac3c126f6cd2c2de67ca410c89738918c5ab0594f1e9b2c2202c48f462c368ad31fb5feff6 SHA512 b7d81f5cbf1b55ebebcbb86ae89899ffec6fcd730144f1719947a76080f587d298d0e37a073a8768d7768ef64fc47b1673104335203a32a557f31e42a4e5a950 DIST github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.3.5.mod 41 BLAKE2B d7c63b68781b147d3baf10d81bce0539aaf0a046a70cd91958b59541dfb35107e01a73937b19de74504f42fe49983b46985a9635c45239e4d7a3e2cca2b85f72 SHA512 a6233a0864081261d4b9cda2d73cf37b236acada8f5fbc85b7b7978ccfbc3bd2949632f2fb67a7ba9db6eb43b41796df54460728379e0172082922820d6143a7 DIST go-ipfs-0.10.0.tar.gz 1925145 BLAKE2B a896570b1a9c9095db56fb0094647ccac388b103e44cb1a579c1250dbd3b06fc51fd6d40ea1bf3753170e85c8a938a77e49aede806f30556f5359b82b83ee3e9 SHA512 0296d4cf475920f32a5b49d52c9a67cc0fadf15fa730632c5dbff6d945877b87da5c82fb10f983cf5fa329b4582b1efece9d4eeacec6ebf5ad3fa1f21e52201d -DIST go-ipfs-0.8.0.tar.gz 1840636 BLAKE2B fcee266794ddd2fd80ea712ba3a0ad93124228236483855b503465828ccec6d4e8682efddbe6ffe93fb4da12941c011233456714b432ed938cd4cc84ddd22697 SHA512 b8b21852cf433c225a0d7e820ba5ac97a54abffb5ad228635632d7a2bec02c5c113b639355fbad741d04bc482655e0b8846d2a08bc088ace680f9a50670875bf -DIST go-ipfs-0.9.1.tar.gz 1876934 BLAKE2B df9746556af52dc083745c702004d8ca3be1bb9a5f5de37a073a9e0ef707d50d26dd1eb7f4c33b58a534d1b7c4d7f1b0bde66810e77b1e5ca6989a15d4508f46 SHA512 bbd3e4607f0f73d72d1ab1c67023a4a96c31bb336a050c034208a8a214d6992b818e5cf26199e7c9cfc5890f1992b3948738bc30284038b8fbf34fbdcf776a81 +DIST go-ipfs-0.11.0.tar.gz 2107525 BLAKE2B 64b8762b7671e55199f0fc209cbfa477023f1a50ff34beb11c22fbecf06b7982eaddcae1dc61b11b2179895a42c3ea2f038f7b2966dada49c84bbe13cd5ce303 SHA512 82232b465c68d3e626c53a23a9601fabc2ad723bf6e8aa9bb9581b8b16c13c3fb6344ac382c0cfff8a306c052b40226f61e62211fa4d08d474f2ade7f4504c8b DIST go.etcd.io%2Fbbolt%2F@v%2Fv1.3.3.mod 24 BLAKE2B f23f0532ce6fece605e76cd16e5f9a1fbf40657f26b2aa6a135bf300a232ffe8eaa9161f93d2845312b10ccb6dd5c4cfea40a2256b6481787ce9ddca7555b0fc SHA512 8988baa04517a19f905b323768f98690b19ce302d54da4648bf72baa2766c8ea8362efaf1c8dd2f02a82fb9c76e72f32373fd04cf48ff133804b6b251bd48529 DIST go.etcd.io%2Fetcd%2F@v%2Fv0.0.0-20191023171146-3cf2f69b5738.mod 2182 BLAKE2B 024744c8c4b0f296f32ce1af2407eae0eb760a443d43e2a1824254c9b2aace62966a2f0f5b5dbfb0cdaf66f2f00740ab653a2b429cc9aadeb3e48421dd6e180b SHA512 904249febd483a4504d49a1b769ded804042c34acd6b7f76503af9f43c76c53063888a7d0e15ee457107cf688108d2bff057330d9d44548b2a30979336370f09 DIST go.opencensus.io%2F@v%2Fv0.18.0.mod 1118 BLAKE2B 55892f4e07819a81da5ad96866ff71d2195b51051b5786e11d1e7badca1804f8e7dc3231dc17f99c9d4d00df45e7825ea389a30be8fd0f0670e9620b551efb97 SHA512 6992b5459b8f831b93b69588300374d1ee59e27056887687dd52baf61bb18c41e2ca75079cb17acc339a9d94da79bb697aa96e68af966abd73408a724ab70d2e @@ -1546,8 +1520,6 @@ DIST go.opencensus.io%2F@v%2Fv0.22.1.mod 442 BLAKE2B ad5fefb1dceb9f4d1abeb0fd286 DIST go.opencensus.io%2F@v%2Fv0.22.2.mod 478 BLAKE2B 534d5c63341897b7213d30ae225708b5465b0bc5efd7b42ecfdd7fd67fe6e8fb5ec7a20345b734d07fc2793b41a115dde74a1f80510f3970aaee8f6d4effd7b8 SHA512 62820051cdf582849bd310ca77bba4b2caef82c9e6bb27e7c2de6c3bb1be0af90443770971e893d0eb466832857190a9908633d069880cb1980120c14ef391c0 DIST go.opencensus.io%2F@v%2Fv0.22.3.mod 478 BLAKE2B 534d5c63341897b7213d30ae225708b5465b0bc5efd7b42ecfdd7fd67fe6e8fb5ec7a20345b734d07fc2793b41a115dde74a1f80510f3970aaee8f6d4effd7b8 SHA512 62820051cdf582849bd310ca77bba4b2caef82c9e6bb27e7c2de6c3bb1be0af90443770971e893d0eb466832857190a9908633d069880cb1980120c14ef391c0 DIST go.opencensus.io%2F@v%2Fv0.22.4.mod 478 BLAKE2B 534d5c63341897b7213d30ae225708b5465b0bc5efd7b42ecfdd7fd67fe6e8fb5ec7a20345b734d07fc2793b41a115dde74a1f80510f3970aaee8f6d4effd7b8 SHA512 62820051cdf582849bd310ca77bba4b2caef82c9e6bb27e7c2de6c3bb1be0af90443770971e893d0eb466832857190a9908633d069880cb1980120c14ef391c0 -DIST go.opencensus.io%2F@v%2Fv0.22.5.mod 478 BLAKE2B aa63f336c10d04557c0f24301afc55f32d5d9062c70a03307bf7b5b7626e7f2125be07c7b6900cec97e1af9429d4930bac4d67179d87575e90acaf68d7fc3ffe SHA512 e94311fef653435875bf2c670a9c19e0e1fa2d6761b9323115504d2acb154596818d5ec9d4f65c662e607f4089cbbb6be0cfef0bb41631260ff8474c759c1323 -DIST go.opencensus.io%2F@v%2Fv0.22.5.zip 304246 BLAKE2B e0fec87affb4467ce127e62d6e86dd371bd32d4b8a7193e5c3cc39f306e289f67f3026b43930a23b60f6c42367f29c28a0d31a146cf19c13a79fed0e961af9b6 SHA512 905c4a03641b7978a06132f43f9fb2402ef4fdbea7438ca8e8524e48a142c0ff00656abc9857c7bf64bf0de159e7d3f972c3dac1cdf7f608afd3ba7506b8518b DIST go.opencensus.io%2F@v%2Fv0.23.0.mod 300 BLAKE2B 768900ce7738c5e1de5c550f1dadf600bae434c89eec337e532e50542487226c79bd113e2b8223c63c241be631ebf5b177441b1b583317425f850a0efc6a02bb SHA512 67849dda4a765e79351214a3641bf601dcdb404f83fd48cde5c6b4fd7249868567424b9f70e0bdf041f6e50f6fcb82239600be8f62253835e4c7c8a17c8d8871 DIST go.opencensus.io%2F@v%2Fv0.23.0.zip 309862 BLAKE2B cc1876f2670ad970a82ad2b58cac621086428e29145ec62f9917902100236471547339be24e2656fd5c3d6ed4b2a10861edb5879e85c0bb9308b0b334df0f4d3 SHA512 90ec312a3ef194251f06ca8c6535b97b0303b72c55cdb602f6f33b1c691188fd5289e4c7323d01d5c66b15411b28a4fea4bc817c41fad6a7d206448fbfa498c9 DIST go.opentelemetry.io%2Fotel%2F@v%2Fv0.20.0.mod 1800 BLAKE2B e2005eaddd67d04b79f8295f1bf4d0018106f36cfe8a697a23ee1ac6767faad43b48a87b8fd0412c813139977f7188db008bd0c278fcfc0aa1000d5260487ae0 SHA512 0c44b58671f37f097def825346d69f0f0288e81926075b4fdb970e74757e333d22a8f552657ecbb152145e27277aeeaeeb2d09122de5fb1d1e284b1e93e68bed @@ -1563,40 +1535,42 @@ DIST go.uber.org%2Fatomic%2F@v%2Fv1.3.2.mod 26 BLAKE2B 00521092f85fc8940d69a5885 DIST go.uber.org%2Fatomic%2F@v%2Fv1.4.0.mod 26 BLAKE2B 00521092f85fc8940d69a5885423e84d8e6987a29749d886be3f40c230e563b55d96779ccd2efb99e939167c93067e8d37117750cf2567fc49e70bce9e847d07 SHA512 4c66fd56c35d6d25a3091f83a2d3872ba395092c10519e052aaccf3edca281fb874a46e86e7a7294b4f42a5d5a51d3cc0f066081e5ab945288a48ac223bc19e6 DIST go.uber.org%2Fatomic%2F@v%2Fv1.5.0.mod 252 BLAKE2B d5019d6264ec35aa5c7c85d6c42130027213590c6dca568099f9c3b7c02fea9abdc969dccdc2d8d3f8abd0ce4c95727ec3f6f8dfbd2d4c1c75d4462e356181ac SHA512 15aae0e0950c9812700ba4bab0a19050c30398511df8e29fcfe496927fae3aa228761a796f150dd766377e5768beed842f06ece285e8b0e094a59288e1b86e23 DIST go.uber.org%2Fatomic%2F@v%2Fv1.6.0.mod 252 BLAKE2B d5019d6264ec35aa5c7c85d6c42130027213590c6dca568099f9c3b7c02fea9abdc969dccdc2d8d3f8abd0ce4c95727ec3f6f8dfbd2d4c1c75d4462e356181ac SHA512 15aae0e0950c9812700ba4bab0a19050c30398511df8e29fcfe496927fae3aa228761a796f150dd766377e5768beed842f06ece285e8b0e094a59288e1b86e23 -DIST go.uber.org%2Fatomic%2F@v%2Fv1.6.0.zip 19110 BLAKE2B 749dab9cbf012066f0d8eb694b6592fd4d1819dd3b27052a76940502d65900b39820091e683c1c8561f4b65262dade55db6be331b1ba8517c22ef7aa39ade990 SHA512 21b8036b73a07887db6ffb620557794241c085e01be44e45c93ffdb2aa6b47783151f37fc4023bf847e091e1150466e84a67394070d945cc4a35a771d278f61f DIST go.uber.org%2Fatomic%2F@v%2Fv1.7.0.mod 131 BLAKE2B 0abc8845d865fa3a1e96e938a9df81733f6d658b39592df46f26eb3292431b0db554eb5db00671f12471cc3c0e454bdf227215c0f9adb182493b5c146a12e3ee SHA512 ac727a2635d02ba4d12c9af7a9ca2d27c0f1bbdb2f2ef797a2852cf569d33cced35be8ce3e95e2ff3b13a0085b723622656ddb8731c055719fbf62cf10caa4df -DIST go.uber.org%2Fatomic%2F@v%2Fv1.7.0.zip 53254 BLAKE2B 55083a93da944305baacb592cc1145f191412b4fa0a98ff3f4180484d7a3bf4dc65561d71670b8a462126f10ea82a3ca2846f73bacde8c9d8c485e895b329598 SHA512 127df97ad28854e4db92b6ef8f147c50eecf49e6a3f70dd0524325f24aa6bfe977127513443cd8926589587654212acfa4cb8f153e2290b8b27aaa09dd846368 DIST go.uber.org%2Fatomic%2F@v%2Fv1.9.0.mod 131 BLAKE2B 0abc8845d865fa3a1e96e938a9df81733f6d658b39592df46f26eb3292431b0db554eb5db00671f12471cc3c0e454bdf227215c0f9adb182493b5c146a12e3ee SHA512 ac727a2635d02ba4d12c9af7a9ca2d27c0f1bbdb2f2ef797a2852cf569d33cced35be8ce3e95e2ff3b13a0085b723622656ddb8731c055719fbf62cf10caa4df DIST go.uber.org%2Fatomic%2F@v%2Fv1.9.0.zip 63866 BLAKE2B ee1a2e2435fb60c580eebf13b18688995f839766e63d494d9ac90efa04ac7c0b46132f6e723276c58217ac9c1a25ecedf87eb01350e9d4f0000091df581b6585 SHA512 d131ebe8ca70a134c7117410f990817c266ca49e0d87b95ee1b7cb1aad9f869c72c25da2e880cb70be2eefe3fad5009d37127dd3ee95d07ab2540aded1baf8ce DIST go.uber.org%2Fdig%2F@v%2Fv1.10.0.mod 202 BLAKE2B fe07962afcbe21701aacde26366721a54a871f93c0313b4ea11717b4dec60c6a182065060c7c46ef57c63663e5567701e07254ba7ea787c4477f33f31a5004cf SHA512 1ccbae01f57503a0d215e26f856df8951d7b63f53f1986cf80e98810b88107ddc856e18f9655af9494ce35ce98431da978270ed66f311894f228d3ac1dc87975 DIST go.uber.org%2Fdig%2F@v%2Fv1.10.0.zip 97120 BLAKE2B 0a6820e91989a769927e30f7869c460ecde8899edf182254220583c0eb1102f5415103c0ac18a25030dd75e6b7f3d2c31e09885eb497061d70048b7f05f24a3e SHA512 74c5b818f867e22c1cb6fdf42553c76c6b8099239389dc5400e91b7642c66846590da9e43bfedc500bafa1534e4bd1f1efe21e935a130aa15fccb4c1eae0d47b +DIST go.uber.org%2Fdig%2F@v%2Fv1.12.0.mod 202 BLAKE2B fe07962afcbe21701aacde26366721a54a871f93c0313b4ea11717b4dec60c6a182065060c7c46ef57c63663e5567701e07254ba7ea787c4477f33f31a5004cf SHA512 1ccbae01f57503a0d215e26f856df8951d7b63f53f1986cf80e98810b88107ddc856e18f9655af9494ce35ce98431da978270ed66f311894f228d3ac1dc87975 +DIST go.uber.org%2Fdig%2F@v%2Fv1.12.0.zip 99761 BLAKE2B 477e74a8b9a0b5c2853459a4ebfe826f114591f31a35616ca49acf804650de59bd2e78cbb14ff75d7d43f4fd7b250225703782ae02258b9cd23ce6938ddf8349 SHA512 4064ff53815c1b9da195992b476081324b68615f59e2272f21de41bfb7ff9d8f9b387ff285a0c0169c8ba6648eb5cd503cad4829defa0a0907169e52101a2971 DIST go.uber.org%2Ffx%2F@v%2Fv1.13.1.mod 283 BLAKE2B 39decf1f0c077a91b1e1d0eec80d2657c7eab2d1240ed27537c1c78ea1e5fc7557264602a5bb2f50c0345c3b8c89cc959f6a3066c5a9a731bff476906b9e4209 SHA512 ef5dc2a339c5caea21bb39b3f34dd8338dfbf95b1aec57dc71b3d1edb3a8bd559a6fc930a12e57224b05174bb2e5a23031fe96d8f5f5bf42c5de666f9e8a96f2 DIST go.uber.org%2Ffx%2F@v%2Fv1.13.1.zip 85580 BLAKE2B 99bbd6b3e14e1d96b6ef5005a97cf47fda5cdb10c15b81775e1f632cf4f5bcd10b4443674b228dd72a5bcaf6361dec757143bb6340e5d89af3308b3ce11305d7 SHA512 efb4a540d5bb19ab44cb5e8bde2230f1798e66e9890bdb164373ce699fa9b18c1db35cde83650ade214382b8838872ace97cd853bfdfda93466488519b5a0a42 +DIST go.uber.org%2Ffx%2F@v%2Fv1.15.0.mod 240 BLAKE2B 926e6ac2c693b77db9cc2e416f37884d819098cba72fb1a001a215b540c3ae9d15cd694b3111b6880830404be506504d032feec2633c34468f244c50d627f998 SHA512 465986b2c2487911fbcce252a4acf9891ed1c75035d0030e094d6b094bd835a4d2b18e9fbfccd8be3b2d4ef9493654d5703c75afefa21e2990bff43a2996e223 +DIST go.uber.org%2Ffx%2F@v%2Fv1.15.0.zip 122971 BLAKE2B bff782cba730d3244f0d114e23b8ae42d07bdfaf11e1fb65936625ce41823376457e78f2431096b8e51ae253f5da236f8e34419cdfc71db9c24ffde470bcbe5c SHA512 174a9ae54e4acd3701f90dad65a97fecf8c03522cf1457d031c12eee2749c8380b4dc1419c9b3dc9c9a2987bd6225f4213812d66338e5283125dd106e0f863e0 DIST go.uber.org%2Fgoleak%2F@v%2Fv0.10.0.mod 26 BLAKE2B fab0da84b238a586768d6a17570b79be5d12b4c2853a3f56d38a5795f971fc5d9c3aa67a69deee511a17bd1ff380a6e91c49ac0e1f74ae88f1a4f21e6e8d958d SHA512 3486b791eda341ef0be103eef291246079ccf8799b50277bdabc75a7a57d0ac196b452e28fa72493e500055b49a4f7651a634f741b7c66ba61640b196b8f7bf4 DIST go.uber.org%2Fgoleak%2F@v%2Fv1.0.0.mod 312 BLAKE2B 16bf4900b2afadc331814e16a34fa8cae0cfdc78c7ea9704312f121e166c93b7811db3604f6c167fc526faefdd1eb0ffca1dd09581094bfea4847fe0f62ecd91 SHA512 8814a6b8138027c366f3ebeea9033a71019990faf1cb613d75a25498a3a74d61fa2ba662302254150370a49a2a6f56da5c54889d4465117cf8afed4ec6cd9f63 -DIST go.uber.org%2Fgoleak%2F@v%2Fv1.0.0.zip 24023 BLAKE2B 4e847da3c0de521f65e74beb03b24f9f3707abf1ccc6740b18e9109a28dd0300effc7ec181546b5cae7a8fdd5e5358b753d69e0a17ce5f18151e6e2c6c930ff9 SHA512 d8bb8553e96f2c7e4feb404db453a35c1ad42590f36a6e294f238282c8c02bbae2e8f524767341ac20ca6d864b58c46572c3e2236c24cb8d10c710528f18161e DIST go.uber.org%2Fgoleak%2F@v%2Fv1.1.10.mod 312 BLAKE2B 16bf4900b2afadc331814e16a34fa8cae0cfdc78c7ea9704312f121e166c93b7811db3604f6c167fc526faefdd1eb0ffca1dd09581094bfea4847fe0f62ecd91 SHA512 8814a6b8138027c366f3ebeea9033a71019990faf1cb613d75a25498a3a74d61fa2ba662302254150370a49a2a6f56da5c54889d4465117cf8afed4ec6cd9f63 DIST go.uber.org%2Fgoleak%2F@v%2Fv1.1.10.zip 24823 BLAKE2B 25394ce97a80093bcc7113c651d95fc383863a5efbb47825d053890ee2946f04ba4b9c4bb708458183b91f195133d22fb4bde840a25b6150c1c6a756ef417fd5 SHA512 cad58d0a0f37a7ba9ce7fc5d4598d511eda4bc675689f968b1d02c4b2e95d15976b6aae9d4b8655d2aa85e255308414e474fa6d42e4f49b31092e2b943648b36 +DIST go.uber.org%2Fgoleak%2F@v%2Fv1.1.11-0.20210813005559-691160354723.mod 284 BLAKE2B 3ef25f15822611fdc9331dc3e01912d0b4f1a5326f157e8bec0835748776b6ed3f47b41ed96bf75575421c1bfcf300f5376098fc08b7155f811464dd8071bd2e SHA512 e2f99355e2fbcc20a9b535f7d72c96ce5ebe22989ba50a94f71d6a054d5da4e91e27401ecc82a3830eed3bad4d9e5b91dfc2968bc21c31e5f73830734749df7c +DIST go.uber.org%2Fgoleak%2F@v%2Fv1.1.11.mod 284 BLAKE2B 3ef25f15822611fdc9331dc3e01912d0b4f1a5326f157e8bec0835748776b6ed3f47b41ed96bf75575421c1bfcf300f5376098fc08b7155f811464dd8071bd2e SHA512 e2f99355e2fbcc20a9b535f7d72c96ce5ebe22989ba50a94f71d6a054d5da4e91e27401ecc82a3830eed3bad4d9e5b91dfc2968bc21c31e5f73830734749df7c +DIST go.uber.org%2Fgoleak%2F@v%2Fv1.1.11.zip 26282 BLAKE2B 534af53592bcd40ce91c9e5703a3a40081e520ae88c3812995728807a6141b9aea090a8a20843bf56b82e0ae9c20c5ed2e1ba5ed6af61dd3ee6da7c33f14901e SHA512 8a5daa358bf073c32a1f2bd405fa8b0cffe5257db2dac9fb42d1f1c7fc8a14d38e218e269d70c1a3339012c5ac76b9b1e1b2de6d985c0e3a98e0a4d96fdb6ef3 DIST go.uber.org%2Fmultierr%2F@v%2Fv1.1.0.mod 28 BLAKE2B 4f0c4b42b00093024ef494b1b0a07896ec41eb140fb953affc085921181eab44bab0baa38ab559b9e36e022acf5cb9ebad5ddcc7303f33982d9012e9e150cb03 SHA512 7939dfe977dd42ac3ca8b91824a73046222ac9bed4f9cbcf0f2d332727b92a094540a56dfb19d095df6d5917b30cec86a6e9e1b082581049fb05bb7bb10106a4 DIST go.uber.org%2Fmultierr%2F@v%2Fv1.3.0.mod 324 BLAKE2B 48b4bfac55f83ef9b78680d5354431cb8fa66139bb3e2f81dfb2861c8c2bd0731572372178c8499f8de7f3e7bd8d34f23f5b51935214eb008d52cda1e80953ce SHA512 9060d8bf8fd7a14d2a32656b1e086de1b3ec5658041ea0127fb2f68570c01059854137ce213d5ed648673c6f1843ae467facf647a4c7cd6ff44165eab575d30d DIST go.uber.org%2Fmultierr%2F@v%2Fv1.4.0.mod 324 BLAKE2B 48b4bfac55f83ef9b78680d5354431cb8fa66139bb3e2f81dfb2861c8c2bd0731572372178c8499f8de7f3e7bd8d34f23f5b51935214eb008d52cda1e80953ce SHA512 9060d8bf8fd7a14d2a32656b1e086de1b3ec5658041ea0127fb2f68570c01059854137ce213d5ed648673c6f1843ae467facf647a4c7cd6ff44165eab575d30d DIST go.uber.org%2Fmultierr%2F@v%2Fv1.5.0.mod 324 BLAKE2B 46301f4e5db74421da813b0c2d3d178417435ede42a1857da3d3af84b5ba353f10cad25fd48b777325dc33edd05f0a17b019a9f37c4e13f28e7ca5ee833c0d5a SHA512 aa82aeb1b0559b9c9b2585b8d584d9be60b6d6aa48e9613cec7ca440e267b93b2eaf67e3e88fc2faca68062792f3f6c9b03d080b6f13dc7f967e1b403521a909 -DIST go.uber.org%2Fmultierr%2F@v%2Fv1.5.0.zip 20218 BLAKE2B 35528c5c70a5f9fc80cee48c0d983b0fa9b23ce5e8273742db3a5678b9d0a56bfb93cc904c0a8678114d114af5cbde5e818240751904873bdca4d7ac87cade58 SHA512 4a52ab2241ca171cce47c0ab5dbcb8f57d6cb0355c5d372d75822ee866536c4943538543fd7926846085d4a91b5d154e54865f32e9c3a8ac485b41edf217bdde DIST go.uber.org%2Fmultierr%2F@v%2Fv1.6.0.mod 113 BLAKE2B 9c82de4ac4a30a4f5ef4881d70b75dc7433664ee90632c6d4dcd1594f3c08082aada1cea4740d38b79ea7753abe47cbba9a173051577c2be869a45ac1e90902a SHA512 850531fa2e156bb78b5a66f4afe89148f048e90ad6753308f4d36aa886f5bd179d2dd5ca67c99cb98976ced5aa6b14e4e463bb27f0d002b8a0e1814fc5316873 -DIST go.uber.org%2Fmultierr%2F@v%2Fv1.6.0.zip 17500 BLAKE2B 5d8607a8fde2c57caeb30459232e9d33bcb9c8cb3d1f046f5714510467ddecb6f82180959ec7d28c15053615390ea2ab114ee472988b6ccfc80de7247e74b0c9 SHA512 ab8d76e47875c4435d00d346ab4f9a04f570711f9e03d7eec23abe6a8d29dc49c4538150397da95e89276dc9ae617b8ce90b90422694b38d03b7773127bfd8e5 DIST go.uber.org%2Fmultierr%2F@v%2Fv1.7.0.mod 178 BLAKE2B ccb41b805d264349ce64c3bf1293fb5e560416dc78c8dd9a7102855064a14a7576def3392fb86a3d874f8407499785f8229efbfaf8ae3ecb8df5cd823c916946 SHA512 da9af93e5b480a20e2d91d0e4d3d6763a938075a3f51ced10347e5d137e3b595b82c1abfc7d40874185c5fc012c52f949aab1398ced770eb006af3967385ce05 DIST go.uber.org%2Fmultierr%2F@v%2Fv1.7.0.zip 20319 BLAKE2B 673be96a4c54cb91c0185785bcfcaf0e442a4b47ecf8a4cf43d23f4e1846ea5db444a7d956ab692ef802b096aba618ccb5fc6e2373134aa96c133205873ab5af SHA512 96bfea215b8a65377ea681fce81caef623d51d846dc7403702d3cb3c72fa1eb40ecda0364f01403f51547abeb465643793f621c42b110509e0449532a6f24656 DIST go.uber.org%2Ftools%2F@v%2Fv0.0.0-20190618225709-2cfd321de3ee.mod 25 BLAKE2B 233f108e33b587684ea189f873a869f028f02d9fee0eea04183b8d5baa445c5f76bbe2b497f5cae24dbe1745d8b26d35f302b23d8b11b95bb7c62f54416548ad SHA512 0ee649ad9b6a2d478469ece9e6ad9b51fa00f002f7a4966068892cdae278680403637897d83a0a423effcb8bddce1d2f9316774cb5890609f6085b906394909f -DIST go.uber.org%2Ftools%2F@v%2Fv0.0.0-20190618225709-2cfd321de3ee.zip 27032 BLAKE2B 58b337663e7a5625521925deadcd0d686ccbaa7d04925852bee0ff1cf3ada22c078e9715930dd20858b16bf51632a4e4d7e76986b0092107bc07ad46d132840c SHA512 b0f1b10667e0e600a4ebca7b4cd9983a27c3ec5f2c54cd46eb055cc0a07504642bea7ccfd0e0f6e3d007422633506efe863817b7c7bc9d18eec3642c84b28f8c DIST go.uber.org%2Fzap%2F@v%2Fv1.10.0.mod 23 BLAKE2B c60cbd3c1e15e71a99909c113b100de3909740d9e0f939da800209ed1ccde49f77be7a8c22e045b9edc663859995859bc7ccd60bb6953846829ca3164115f3fa SHA512 263e322e5615c91e810fb9ba30a601508e1e3e418f87c7c74de962c341f207e703930f2ad41ae1bf7b2ad106831dc37b0b96637b816d130bddc7225d41911946 DIST go.uber.org%2Fzap%2F@v%2Fv1.13.0.mod 221 BLAKE2B 586c82887d6cf6582837fb495a46030e1c582b58305fc70c7b88a29e570610e693a298fa7d4eac80bc86231c7fe6f6e27d3fdb5afe084363eb918692a1ccbc59 SHA512 2a7413f6f83e66456c340536502d855772e6de433ca4be1a9cd1572caf5fba7cafc7d377ef529324b5bd8af97830c9eae75768f7c45d4676b455e3959acc82c1 DIST go.uber.org%2Fzap%2F@v%2Fv1.14.1.mod 257 BLAKE2B 2e5fab0b1a188fb7fffa1c9ca0799fa286f74732ceb0f45a904a3620f636af45d8b30d199cbb54ca46114aaffeeaf66bfa04715abe02711d6af46bbdba9bd6dd SHA512 4922fb6e20d2f5d2fa00888b8d644c51e1b558edb69b9f7d70a883314c3e971b6f8fc707b072aa0602d4c451ca0f20983796b65edcb737e5090dda1ffed0c757 DIST go.uber.org%2Fzap%2F@v%2Fv1.15.0.mod 257 BLAKE2B 2e5fab0b1a188fb7fffa1c9ca0799fa286f74732ceb0f45a904a3620f636af45d8b30d199cbb54ca46114aaffeeaf66bfa04715abe02711d6af46bbdba9bd6dd SHA512 4922fb6e20d2f5d2fa00888b8d644c51e1b558edb69b9f7d70a883314c3e971b6f8fc707b072aa0602d4c451ca0f20983796b65edcb737e5090dda1ffed0c757 DIST go.uber.org%2Fzap%2F@v%2Fv1.16.0.mod 282 BLAKE2B cd8f8b009c9a5c34381fa6946d29e228ba21595e3e5ac25eab1f2546a30b616ec885ddc5659a363856b9112a7c114088702b9c0f5f844e4bd180676dd6f696d1 SHA512 96c2bd0ba8c620be099d5bf69e5fa91309538ff29fe26836a6f74a9db5b9d7d00d3bb372222860744bd6644c89dc1ed7fef56daecedad92ed0cba5cdaa1e4c95 -DIST go.uber.org%2Fzap%2F@v%2Fv1.16.0.zip 231211 BLAKE2B 3a325fbc884563de82d57f4c4060dd01c236317a4e075c3bad03664a19a9e56587dff4fd8a5fbc60b581ee719239b1d45eb1cc424c35acefc84999ab85cd33eb SHA512 da2e30804aead70f6a865de5f5774bba955aa3728a67a322e22413641c75abffffd830f1e5968d6ba241c9012708758a1f1a3629d435954f20602fa9b435c909 DIST go.uber.org%2Fzap%2F@v%2Fv1.18.1.mod 322 BLAKE2B ab54fc54cb7c1e1e6b5d8fe1bbd3d19be4377d07c24d3c34dae35aaaed88411749d531cb81e86239bdd0f626bd5caf7c4d3d5ca0ff06063b52184a8af380cb97 SHA512 13030c97a9e0119342c1473ea7b25557511fda6eb4646f6df8694ae3b2efa168053f57fefae375add65f924325371fdd98a82e44f976eb8e8f29e34ce0aee82a DIST go.uber.org%2Fzap%2F@v%2Fv1.19.0.mod 322 BLAKE2B ab54fc54cb7c1e1e6b5d8fe1bbd3d19be4377d07c24d3c34dae35aaaed88411749d531cb81e86239bdd0f626bd5caf7c4d3d5ca0ff06063b52184a8af380cb97 SHA512 13030c97a9e0119342c1473ea7b25557511fda6eb4646f6df8694ae3b2efa168053f57fefae375add65f924325371fdd98a82e44f976eb8e8f29e34ce0aee82a DIST go.uber.org%2Fzap%2F@v%2Fv1.19.0.zip 252247 BLAKE2B 26640b154861b39c2704592310b523f60024a9cf0281de8618ddb5361cee6e2235ce95695881930d87c1d83d6a59073b46f2cbd36c0c340434dab88dece1bcc9 SHA512 9631c54a67de5e12fb7aed1eb0b8a434b3a8b71c42ddee8c09b2d968e71184936f93534e8848d5a4f58d229c64244885bbd1de97b142126b73a19a00b02812f7 +DIST go.uber.org%2Fzap%2F@v%2Fv1.19.1.mod 352 BLAKE2B 6a3f2e220d0e6f8da614ae9d9cd903a39e314a9b4bbe2332da595880c5f919eae30a7605532e89fbf74fca56bc3660acfa9dced5c5ffcabd50e5642ded674d42 SHA512 37751322e72b3b5f9546be30aaf56efba6ff592faac146cefced60b47429844a8406cdc996dee8793a2196cbfc19c4e1316468d65e8fd34fb39f968d10ede469 +DIST go.uber.org%2Fzap%2F@v%2Fv1.19.1.zip 253269 BLAKE2B 524cb1620889caf356c54c41e67015b7b61f706bb7431b44cead9c68ebc0f915c913e655021dd53064068123000079eb2943444e5755507b3d0a94bcdab29027 SHA512 3514068d45228238f67c7b04f70ac532cc9e8f111d4ff94999d5eeb8d59234fc75c79125f27fa34c52deb9a2bbf1f47448df5162c16281989d331be0f68926ae DIST go4.org%2F@v%2Fv0.0.0-20180809161055-417644f6feb5.mod 15 BLAKE2B 00f2fbcebe2e9f068ba7e7dc4da2bf2e66f09203415957a1dcf8d5ca6aee422579cbaf2efdb4383985742c6e71d41029a8c68c20a074819666d2db732cf1ed13 SHA512 5bccd8605a1e1d8381adc2f52e27c600732590e7dfe261521b149fb6519693e1124e471c61bb7e6bad8f683d684c7a652f5f11ecc766c84286a51e3837cea6af DIST go4.org%2F@v%2Fv0.0.0-20200411211856-f5505b9728dd.mod 359 BLAKE2B 14270eca5aea654a78b7d57482d207f8d0fd8318c0e6238edcf88a4f2701620ffa8ebb01e5c359cf6ba60b7fbda37b849e30a8e769e1bbb427770985a805a1ce SHA512 68ffa09ea935e7a98a7e8d1986c0bdcd2b157949ef288c7c7c27804700db139c4959c5f68ac5bf1108bc30e4b47e42ef75e3a3922bb74a937f1be08386138724 DIST go4.org%2F@v%2Fv0.0.0-20200411211856-f5505b9728dd.zip 215180 BLAKE2B 5bfe47160e59c2470e605da29f1e1042303e253edcfac69720525a2f596c56366bcc5027ad0bed4c1c75ccc0042380f621d3fa6518afd3e531e14976978ce8b1 SHA512 602ea6b4caf08fd892dfad710d6831997ec019312e374348c52a0c141e2a288ab127f8af1301c9a444712208dd14199b655ef5272a2ebc4149b80bf920683e51 @@ -1621,22 +1595,20 @@ DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190618222545-ea8f1a30c443.mod 146 B DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190701094942-4def268fd1a4.mod 146 BLAKE2B 6fe18cbe4eb6c3f6c26a4d2f9f309c48eb9ea59017125179cbfd61bb1e62395515c8cb286e1139fbcf54d37dcb2baa1a2f98dcfbcb6178b7f7df3b51929ff5c5 SHA512 f40c7b620b28b5bdc6ce92d43768af71b5869e7f0eb7872dd0f2751eed2bd15a17f7af26bf2dc5c6f7e6b816a174d010bfd22b3f8f5dd72f22dc4e4357dea842 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191011191535-87dc89f01550.mod 146 BLAKE2B 6fe18cbe4eb6c3f6c26a4d2f9f309c48eb9ea59017125179cbfd61bb1e62395515c8cb286e1139fbcf54d37dcb2baa1a2f98dcfbcb6178b7f7df3b51929ff5c5 SHA512 f40c7b620b28b5bdc6ce92d43768af71b5869e7f0eb7872dd0f2751eed2bd15a17f7af26bf2dc5c6f7e6b816a174d010bfd22b3f8f5dd72f22dc4e4357dea842 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200115085410-6d4e4cb37c7d.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200117160349-530e935923ad.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200221231518-2aa609cf4a9d.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200423211502-4bdfaf469ed5.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200510223506-06a226fb4e37.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200602180216-279210d13fed.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200820211705-5c72a883971a.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201221181555-eec23a3978ad.mod 209 BLAKE2B ce8c2a54376fa42fbd394e92db1f08d4c639eb7b5e1b33ba41c8a6ad212ccaf4bc7a7c761c43449177761b06296cce60aed17b0f542978a892b1de054b23286d SHA512 d43d530154c2fda6d171696efbe118c4c021d4f3cb5d8ac9262465e0cc906257330a489f6b950465196bf30c91afeb4d4946b3aada3dc182b5c7307a8e702fc7 -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201221181555-eec23a3978ad.zip 1864231 BLAKE2B a7261951977aa8143153915d72e608ef263a760de7b4977a11d0d2ead32f88ad370b993ada6344556616343a700a93edce3294df354f93d51214cfe888b97836 SHA512 1b7237562a92560aedb2527d8242b46c5a421488f638c0049812ceed87144828ca682bc4eeb87869db947479ac9e1350e5abbd31e1ff3e53734d4ea25bf5c27d DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210220033148-5ea612d1eb83.mod 209 BLAKE2B ce8c2a54376fa42fbd394e92db1f08d4c639eb7b5e1b33ba41c8a6ad212ccaf4bc7a7c761c43449177761b06296cce60aed17b0f542978a892b1de054b23286d SHA512 d43d530154c2fda6d171696efbe118c4c021d4f3cb5d8ac9262465e0cc906257330a489f6b950465196bf30c91afeb4d4946b3aada3dc182b5c7307a8e702fc7 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210322153248-0c34fe9e7dc2.mod 209 BLAKE2B ae212ac1167b75a96c3b74f33594fa85e980530886edcf3bb58fb5e077793d24e69d1015e8581caafcc78b2d41cc75e4e17e82b2d3f76f10058ff5a715f00641 SHA512 c2a45c244884d6ccc5c4f73b6b3852d28c9ed1d3acd4805ff36292681e5011284af42ab75ebf6274cda4cc3bcd426496515db7eaca2a529500c0e896190f26a8 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210506145944-38f3c27a63bf.mod 247 BLAKE2B 66c7bddf0c6300cb14884379a13eacf7ce4cbd1e86cdd94fbef5f67bbb27e263ecd4cc2c936b7f95751b7afadee561629014be9d997159c742be2e5ce7bf099d SHA512 36d6474a79deda7b8749681b46e682e0440d07b3e8930279c66a45c0d42a6f2c6dd75b7bc7c3cc1ef50cdeff988442630af904ff0f58bb2def5f49040ade16cc -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210506145944-38f3c27a63bf.zip 1874428 BLAKE2B bc63491e97e9a528a252723dd16ac8e79d7dda0a022be2f0b94ae68017f14759127bbc398b721efbca6f270ccf4ea7146cd267be68898369a81bb2368cc367e6 SHA512 203fa97ecc318bc5a6de3a79380d52863b7280eeb7e1509f092d04bc6c1d6f89e32b5c836622adbee2031f2482d4d63e0e2e2523fe1c610ce6eb08f338fcb523 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210513164829-c07d793c2f9a.mod 247 BLAKE2B 66c7bddf0c6300cb14884379a13eacf7ce4cbd1e86cdd94fbef5f67bbb27e263ecd4cc2c936b7f95751b7afadee561629014be9d997159c742be2e5ce7bf099d SHA512 36d6474a79deda7b8749681b46e682e0440d07b3e8930279c66a45c0d42a6f2c6dd75b7bc7c3cc1ef50cdeff988442630af904ff0f58bb2def5f49040ade16cc DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210813211128-0a44fdfbc16e.mod 247 BLAKE2B 20aabe045c2a6dd88b13c66106c962e31d3da87b33accf5085106d9e9c43fed4d5867909580ad37ea560d791e1a3243ddc2dff81ac6205f7fb949a46b0c3634d SHA512 32f94123c2845965432016800e6f051341f6d5d0af3678e367ac6c55022c68e86e929cc545a576d466f2533c235c29fb72542de75eae7419dfb5640cd80df3ef DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210813211128-0a44fdfbc16e.zip 1875913 BLAKE2B 91081f4364a6aa27bea7a7a730fa78ddfad45bf3da7f12be4deb3fbdb3f2ca020a1915c91494cf48479e87672f1b7418f41b25aa4f373d969a8b1c1255242c1f SHA512 11e1202dc8cd3762d91ed7b854cb33239ee81a87303a961eb77dcae710eeefc72e332036e1df9311defc1a303254e90a66a2b63543f6388a13c5397bf9777eb0 +DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210921155107-089bfa567519.mod 247 BLAKE2B 20aabe045c2a6dd88b13c66106c962e31d3da87b33accf5085106d9e9c43fed4d5867909580ad37ea560d791e1a3243ddc2dff81ac6205f7fb949a46b0c3634d SHA512 32f94123c2845965432016800e6f051341f6d5d0af3678e367ac6c55022c68e86e929cc545a576d466f2533c235c29fb72542de75eae7419dfb5640cd80df3ef +DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210921155107-089bfa567519.zip 1878482 BLAKE2B 0eef87d2e4c8998450fa976e54b3d00625faad61125a442e3c824763e803257061a05d9046e3c95659cb3a18f8c0f37bea529bcf53c79fc5f7034f1f6d9d1130 SHA512 c49fad474be5b84f99f2cf45970bf1bbdf02f4ed6c8c9d6aab8d672e49972059d4f6f0535bae7647b2d5c40c7a2168a20a0557e1cb29d30811b719f50aa6b226 DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190121172915-509febef88a4.mod 24 BLAKE2B 9615629f1bf7d58419f5b73842e19f6be3a8c8cefb217364917f1aaf68aec00de41d96700378b048d6cc385e154ed6d3db59256b4a00e9165bac7951cd0bcbab SHA512 9131017b8ab0c2362b74e0c010daeb849689025aa31cb464dc379b0e34d0fcdb66749329b111041127997440bac052249dab522ab27239858405c056e3ac5dbf DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190306152737-a1d7652674e8.mod 24 BLAKE2B 9615629f1bf7d58419f5b73842e19f6be3a8c8cefb217364917f1aaf68aec00de41d96700378b048d6cc385e154ed6d3db59256b4a00e9165bac7951cd0bcbab SHA512 9131017b8ab0c2362b74e0c010daeb849689025aa31cb464dc379b0e34d0fcdb66749329b111041127997440bac052249dab522ab27239858405c056e3ac5dbf DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190510132918-efd6b22b2522.mod 327 BLAKE2B 209bd1491b6099491fca7ccfd2fabb500b56112557b4b359819b5f9d18e1587b8b1551acab53ac6c222b66b825c4058ecd6adb1d886f1868b7b96ebbd5865eea SHA512 e16919da8b2302c45f8fab5f0d200f41c2c978ad31eab2b4db18310bfbe09079d738f682920ef6530f1d5f53359ddc3d4bf33fe5cefbcefd440212b31e72ef28 @@ -1671,7 +1643,6 @@ DIST golang.org%2Fx%2Fmod%2F@v%2Fv0.1.1-0.20191105210325-c90efee705ee.mod 159 BL DIST golang.org%2Fx%2Fmod%2F@v%2Fv0.1.1-0.20191107180719-034126e5016b.mod 159 BLAKE2B 7124b4e21f0b1ff142fe4cd5c57a22de7bc5b1c578e16e8661085d475d67573279c1ce3165e05a28c77a41eac43fe29b1d98854abdcc7b0b66167f82db652dd8 SHA512 5e225da646ef87b8bf435b745313187cecd1bd3e88660f8a90cd2a6fdcadbe8fc51f53edae4b3aa2357ad273a8e58034920bb61a1cd5898b95d3fe39f30ec648 DIST golang.org%2Fx%2Fmod%2F@v%2Fv0.2.0.mod 214 BLAKE2B 9a9c23e4a6fbf1e2168cc2559ab0eea14e2a1bbf32cab7eb95e276c3c1f2e06dadf6c58e39a4722211fb882e48f25a8de2969422590c62851292747f1da76b02 SHA512 16d72a943c436bf27c18ee65deb1e1a3b1283dcfcc76a49f01919df97f41ae6ef7c5fe7f95b5bb62cf6f6fee57eb9654ca27ec3bae448ebfe894f8d6d0101fa1 DIST golang.org%2Fx%2Fmod%2F@v%2Fv0.3.0.mod 214 BLAKE2B 9a9c23e4a6fbf1e2168cc2559ab0eea14e2a1bbf32cab7eb95e276c3c1f2e06dadf6c58e39a4722211fb882e48f25a8de2969422590c62851292747f1da76b02 SHA512 16d72a943c436bf27c18ee65deb1e1a3b1283dcfcc76a49f01919df97f41ae6ef7c5fe7f95b5bb62cf6f6fee57eb9654ca27ec3bae448ebfe894f8d6d0101fa1 -DIST golang.org%2Fx%2Fmod%2F@v%2Fv0.3.0.zip 128895 BLAKE2B c2543ab5e3e1eacc16790bcae51ef70962f035b9b95de3797a1fa1142726ec00c66e4e79b717e363fbc5dae3e91b79f05826d623f9251c0648437efaf007d018 SHA512 06f329247189a6a61e54902e9adf7f309b71818150f2ee43ca7ead80b8f03070edb31c4646b7a379b31e1a8aa81e15fcdb2d0e92f9375fcb4d5a8e2194b954e9 DIST golang.org%2Fx%2Fmod%2F@v%2Fv0.4.1.mod 214 BLAKE2B 9a9c23e4a6fbf1e2168cc2559ab0eea14e2a1bbf32cab7eb95e276c3c1f2e06dadf6c58e39a4722211fb882e48f25a8de2969422590c62851292747f1da76b02 SHA512 16d72a943c436bf27c18ee65deb1e1a3b1283dcfcc76a49f01919df97f41ae6ef7c5fe7f95b5bb62cf6f6fee57eb9654ca27ec3bae448ebfe894f8d6d0101fa1 DIST golang.org%2Fx%2Fmod%2F@v%2Fv0.4.2.mod 214 BLAKE2B 9a9c23e4a6fbf1e2168cc2559ab0eea14e2a1bbf32cab7eb95e276c3c1f2e06dadf6c58e39a4722211fb882e48f25a8de2969422590c62851292747f1da76b02 SHA512 16d72a943c436bf27c18ee65deb1e1a3b1283dcfcc76a49f01919df97f41ae6ef7c5fe7f95b5bb62cf6f6fee57eb9654ca27ec3bae448ebfe894f8d6d0101fa1 DIST golang.org%2Fx%2Fmod%2F@v%2Fv0.4.2.zip 141789 BLAKE2B dc517e61f7a9c895d827ff139a36b319c7dd335e85755dc394d01ceaf8b3ce07ef13201bf6d704c31895bf7d91c15acbc4ac75bc8cde065ab4f81839453e0c5c SHA512 6376ecdccd2eeaf828a2c1f560e116c003caf5e09fe68e94a37d193697c93b18bee14abbc06edca93ca57a924f9b270bbe1792df84a7bd66e3641ce6aecbc9b1 @@ -1721,7 +1692,6 @@ DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.mod 181 BLAK DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200822124328-c89045814202.mod 181 BLAKE2B 05d6754fa387bac4a6481ad34fb7b681064fc6443b3f70cba316fe2fd0896050e4a772fd8e1be655130a00bb5feaded4725ffea1c5dd6ba55ba55315aaae34d2 SHA512 54d242da2536da38e292b62a955b3961f7b0a9789fe36c5f7ae93577eeac734a6e5bac21a657cf71d488395278cd7683db538e16a9c853835277a800a9d43471 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200904194848-62affa334b73.mod 181 BLAKE2B 05d6754fa387bac4a6481ad34fb7b681064fc6443b3f70cba316fe2fd0896050e4a772fd8e1be655130a00bb5feaded4725ffea1c5dd6ba55ba55315aaae34d2 SHA512 54d242da2536da38e292b62a955b3961f7b0a9789fe36c5f7ae93577eeac734a6e5bac21a657cf71d488395278cd7683db538e16a9c853835277a800a9d43471 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201021035429-f5854403a974.mod 181 BLAKE2B 3d3ddd23252ae7c54121211421c04a53076d3c347a9511c24494ded58863b0e96b2fefbdd10ee783bb3c0089cca1af91358701ef709fbd52a2c2d1fdec011939 SHA512 098a7d7eadb99bc1eb8695f1d86e1ed2ec2f5f625045f3ed77648d4ef7047818cfc449d46c8a6ccf285f95956baf228c1c57d6e281da1f63f67cfa0f93ca4230 -DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201021035429-f5854403a974.zip 1503642 BLAKE2B 459cd4c9e103f489e029f1d7a4073b9af288c7feb34a7290a4b2c430d7cef6d8d8f85904d13e2549dc64ce47b9b3741c3082c46827988f085d3b32fa44eb81a3 SHA512 3f81ba470596bf5801cb9c80cb3ad84b61ae8d9b7a43d43b6c81bad14a2f7c9f08609a3205811ef7b4bf67d06f3474a7cacf6b42c06b5c9c88082f68082db67d DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201110031124-69a78807bb2b.mod 181 BLAKE2B 3d3ddd23252ae7c54121211421c04a53076d3c347a9511c24494ded58863b0e96b2fefbdd10ee783bb3c0089cca1af91358701ef709fbd52a2c2d1fdec011939 SHA512 098a7d7eadb99bc1eb8695f1d86e1ed2ec2f5f625045f3ed77648d4ef7047818cfc449d46c8a6ccf285f95956baf228c1c57d6e281da1f63f67cfa0f93ca4230 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210119194325-5f4716e94777.mod 179 BLAKE2B 509f289757a1f923d7b423a77cc3f1ddb08a2ee3eedb8f5f3869c2011a86121e79f02a34fb73076255e6973c8d66ca47b4690c34d7d3a5d33e1dbd04c4ea092c SHA512 f8ad754f922057fe78b5497cc77089a5eedc774800b2728a3ccd74cc82d83ba1ff00cc2d28110d5535623b733af7e34616f2fe127e68a936b9551395487ec146 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210226172049-e18ecbb05110.mod 179 BLAKE2B 509f289757a1f923d7b423a77cc3f1ddb08a2ee3eedb8f5f3869c2011a86121e79f02a34fb73076255e6973c8d66ca47b4690c34d7d3a5d33e1dbd04c4ea092c SHA512 f8ad754f922057fe78b5497cc77089a5eedc774800b2728a3ccd74cc82d83ba1ff00cc2d28110d5535623b733af7e34616f2fe127e68a936b9551395487ec146 @@ -1729,7 +1699,7 @@ DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210316092652-d523dce5a7f4.mod 179 BLAK DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210405180319-a5a99cb37ef4.mod 179 BLAKE2B d4f0ad22973a6e0a06b186e217dedbea3abb1800b259c56a29da9075c36808160620b42b0a485127f713760b24b4d9d6d9a61119c5739927340436bac307f5c4 SHA512 f48731641ffad3b90daf0a8bb79fdfc607c076961dbda1c51e71eab787dca0681e5984ffce048bd655ceb56052fa64426b30b32e6ee32957c92418a16d1c9f06 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210423184538-5f58ad60dda6.mod 179 BLAKE2B 48e3d89e20ae78bf2300c3004911d5247c6a682b66e213cb0bb23e516b52d75215bcffc85a1f8cfeef888775b8eaf7c90f850bca034e49218c1f93e6aec6a7ff SHA512 98c9784c584e8141a9a51bfa8e4b361f3b8a62b83a922ee4fc02e0da396250d6d4d0ccd2a8ac6d1dda8e445859d09760010296191e95b86e15088425a2989b0c DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210428140749-89ef3d95e781.mod 179 BLAKE2B 48e3d89e20ae78bf2300c3004911d5247c6a682b66e213cb0bb23e516b52d75215bcffc85a1f8cfeef888775b8eaf7c90f850bca034e49218c1f93e6aec6a7ff SHA512 98c9784c584e8141a9a51bfa8e4b361f3b8a62b83a922ee4fc02e0da396250d6d4d0ccd2a8ac6d1dda8e445859d09760010296191e95b86e15088425a2989b0c -DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210428140749-89ef3d95e781.zip 1557827 BLAKE2B 65969f3f9638c2ed7d5a36d862bcef3cf15d0046371faee37dc4da6848c197d2be4fbd132fe7ad9b2c40948c88b1665430be8d50522f3d01ea81f7e9c9a23ca4 SHA512 d6252d06c32f8edb41add604a696721717a817f2b372d528065ef78ab8caac395f9efb8948a153f9dd10b22c3505766c43edef42ff7bcd950352e8d7aa2152a1 +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210505024714-0287a6fb4125.mod 179 BLAKE2B a505fef7e073e6305a5a8b8c3494942da61a944af095abe6caa2774152b7427437d74405967eeb6b38b114a14f0e09e72d00de2a6eba1f4694293a08daaa826b SHA512 a1c24164598eb8a5e5005b0df0cf9b3efd285c90efe6472a0474907f368166c243942765f182d8cc65f23159cd0a8b52c547ab14ee67c4261f768e31d05ed5e5 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210525063256-abc453219eb5.mod 179 BLAKE2B a505fef7e073e6305a5a8b8c3494942da61a944af095abe6caa2774152b7427437d74405967eeb6b38b114a14f0e09e72d00de2a6eba1f4694293a08daaa826b SHA512 a1c24164598eb8a5e5005b0df0cf9b3efd285c90efe6472a0474907f368166c243942765f182d8cc65f23159cd0a8b52c547ab14ee67c4261f768e31d05ed5e5 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210813160813-60bc85c4be6d.mod 179 BLAKE2B a505fef7e073e6305a5a8b8c3494942da61a944af095abe6caa2774152b7427437d74405967eeb6b38b114a14f0e09e72d00de2a6eba1f4694293a08daaa826b SHA512 a1c24164598eb8a5e5005b0df0cf9b3efd285c90efe6472a0474907f368166c243942765f182d8cc65f23159cd0a8b52c547ab14ee67c4261f768e31d05ed5e5 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210813160813-60bc85c4be6d.zip 1569434 BLAKE2B ec6e0c47cdd5b0115e6dadc7d12843955a674049747ae93dfb86f9fc691b223db80b17536051d9ad9385c729d88da354297dabbbf05d84ade886ee3a9ff8276c SHA512 f40a677cc24328c4e448cab36e70f6b3a51b72e949485f0394a87b2c6bbfbdedde491ff70cb8046f23b228194bb7c7eccea7c15c6c7290160504d01f955fda29 @@ -1740,7 +1710,6 @@ DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20190226205417-e64efc72b421.mod 233 B DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20190604053449-0f29369cfe45.mod 233 BLAKE2B 5a1feba7e2d9703a864889f35f70eb18d30f9c0179a1425b0f4cddf17b03d2d187ba36346243a97820ae45e03a136ac26aedfefa09c0c7bf6cbd246eddf36c50 SHA512 9e91ec99aeb8b639d63fde3cc38f750d0a29d4a05864595beec0de0667ef9193007d89cb899b1d5ba44f0675121b2cff1e09b86bad4331378a66e15ef2f4e26b DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20191202225959-858c2ad4c8b6.mod 233 BLAKE2B 5a1feba7e2d9703a864889f35f70eb18d30f9c0179a1425b0f4cddf17b03d2d187ba36346243a97820ae45e03a136ac26aedfefa09c0c7bf6cbd246eddf36c50 SHA512 9e91ec99aeb8b639d63fde3cc38f750d0a29d4a05864595beec0de0667ef9193007d89cb899b1d5ba44f0675121b2cff1e09b86bad4331378a66e15ef2f4e26b DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20200107190931-bf48bf16ab8d.mod 233 BLAKE2B 5a1feba7e2d9703a864889f35f70eb18d30f9c0179a1425b0f4cddf17b03d2d187ba36346243a97820ae45e03a136ac26aedfefa09c0c7bf6cbd246eddf36c50 SHA512 9e91ec99aeb8b639d63fde3cc38f750d0a29d4a05864595beec0de0667ef9193007d89cb899b1d5ba44f0675121b2cff1e09b86bad4331378a66e15ef2f4e26b -DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20200107190931-bf48bf16ab8d.zip 84373 BLAKE2B 39bd0256afae566a53bb0b7b95adf0416653fd003bf5312c7a316a2d7c3e5d1fa25fd08bdbcdf75df45a56116fea54dcb1bf9b68b07d15d3a909e072f8f9fa06 SHA512 10a924e5fb556c2726795462c91fe7086472d6baab511ac21c1fb3c137e5a3e0db55f9ce8fe1952566d887225e3528ec8b747136f8984163acf71e869a0d8c58 DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20210514164344-f6687ab2804c.mod 167 BLAKE2B 3b982295c2a92ffd5db60660c7558fbe2c133d1bcd654a697366b942fe40ca76f8ecc2acdad15215886792a61b941b2c49871f5659b31cc06aa6212a8eb91cf0 SHA512 0e23b4599eafa0468fd16b635497549e36a217e052244aa2cee251f7c432e7fd8f10b4aa60649f4695850e79f4206e6be7c386cebe4bbf7b85bf58a311aef732 DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20210514164344-f6687ab2804c.zip 130280 BLAKE2B 059657166d467838c995726802e70dd5b8937ce28d20e13551e26ac1ad82f95b5e2e43eafe1dca541b532599e634b82c490b5308b3d73fa643da8d67b8a85619 SHA512 24239f223b233ab07c98dca5db08f569230403e564843f043fc7bddc82fd4ffd21c1e576bd97f4a1c1b462e47c9275cb59707a003c4f68b7b2af477b2c6f204b DIST golang.org%2Fx%2Fperf%2F@v%2Fv0.0.0-20180704124530-6e6d33e29852.mod 25 BLAKE2B 1f8cdb1bffe6a24b9ec7efc36b1f874d1949b34c1555db9cec96a5b0408931e9cb6629770bbf734a2348c5208ac055bc31034b6892b936ec6e60c47b1dbdbda2 SHA512 482a9cd9650c6ed60700e635b05ef1a9ba9d412adb3e6824015511dbc55aedfce3ad4636d195b76d393452b578c022df7bfe6ae868cceca5db1a8b9f08aa29cf @@ -1754,7 +1723,6 @@ DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20200317015054-43a5402ce75a.mod 25 BLAK DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20200625203802-6e8e738ad208.mod 25 BLAKE2B 01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2 SHA512 a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0 DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20201020160332-67f06af15bc9.mod 25 BLAKE2B 01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2 SHA512 a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0 DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20201207232520-09787c993a3a.mod 25 BLAKE2B 01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2 SHA512 a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0 -DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20201207232520-09787c993a3a.zip 28673 BLAKE2B d5a34f311e12038daf9c89b646bc5caf5566c08fc563fe2af3d113596d77cfe759942e35314e5b595c5704920d12b273ac30de865256b406287868d827d28938 SHA512 443917030bd593bf9ba4fee7748b5d9f15c82b7cbb21a586fc9a326de9c4f8fd8a7caf29131b0c8cf9fbf6a1363fdc7c8dd2ab897b569d3adaacfb55ad0d4601 DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20210220032951-036812b2e83c.mod 25 BLAKE2B 01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2 SHA512 a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0 DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20210220032951-036812b2e83c.zip 28693 BLAKE2B 3d6a34fa6da642f5ca71c930bd69a41439013f20ee60dde5d4dfab4bf688f1edb150a0477cb006670424c6c59e90d4bac9e5eb34f9fb4c518d903dfd26fb6cb7 SHA512 48b983589bd682ff9275c47733ec73637ebb5e58e1bca0c7744101229237d5cb34170efab63db0061aec857052cce9ef03c3497702b90a86287e6be88e1b33aa DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180823144017-11551d06cbcc.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c @@ -1792,9 +1760,7 @@ DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190904154756-749cb33beabd.mod 33 BLAKE DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190924154521-2837fb4f24fe.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191001151750-bb3f8db39f24.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191005200804-aed5e4c7ecf9.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191010194322-b09406accb47.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191113165036-4c7a9d0fe056.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191120155948-bd437916bb0e.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191204072324-ce4227a45e2e.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191206220618-eeba5f6aabab.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab @@ -1826,7 +1792,6 @@ DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201119102817-f84b799fce68.mod 33 BLAKE DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201214210602-f9fddec55a1e.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210112080510-489259a85091.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210124154548-22da62e12c0c.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210124154548-22da62e12c0c.zip 1549338 BLAKE2B 94514181eb8c63293bcc8586586ed12574ed1aeb1f64247ec4953c4a591d8cfff3f32f8cb919eea69b67ee0b6edf406d65b7676dc27db2fea86549148f372127 SHA512 8ac070589db0adff74a784cf233ff80bfafbca77d840fc13f8f5c03e66bd62c960248e13aeee5d6b401282c913adc5d42ab3e4eef64ed199700c953500309ad4 DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210303074136-134d130e1a04.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210309074719-68d13333faf2.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210315160823-c6e025ad8005.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab @@ -1836,14 +1801,16 @@ DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210423082822-04245dca01da.mod 33 BLAKE DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210426080607-c94f62235c83.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210510120138-977fb7262007.mod 33 BLAKE2B b74677ab15ab6b31640d71b052db667b0fb585ed6d1044e26bc5e4cf8da90e1ede81f8876babea843dd322b8b707189138e70c24d13d931f1f6dd04978ac222c SHA512 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655 DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210511113859-b0526f3d8744.mod 33 BLAKE2B b74677ab15ab6b31640d71b052db667b0fb585ed6d1044e26bc5e4cf8da90e1ede81f8876babea843dd322b8b707189138e70c24d13d931f1f6dd04978ac222c SHA512 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655 -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210511113859-b0526f3d8744.zip 1634357 BLAKE2B a30240d51cb13049e8705df0160afff8fdc3707d2287e32261b5d909e60e02af13e292be839c3731ec3ed75dc3215d809d21ac53d46d5118ce928ad3ec6a2488 SHA512 79105ca14bd2eadd6351300b7adb954129597309246e1a2e8dcd8ca512113e576c3198c28441069bfa6f4ffc4fb4072e86ff679ae4b168dd52a6c36af8698612 DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210514084401-e8d321eab015.mod 33 BLAKE2B b74677ab15ab6b31640d71b052db667b0fb585ed6d1044e26bc5e4cf8da90e1ede81f8876babea843dd322b8b707189138e70c24d13d931f1f6dd04978ac222c SHA512 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655 DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210603081109-ebe580a85c40.mod 33 BLAKE2B b74677ab15ab6b31640d71b052db667b0fb585ed6d1044e26bc5e4cf8da90e1ede81f8876babea843dd322b8b707189138e70c24d13d931f1f6dd04978ac222c SHA512 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655 DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210615035016-665e8c7367d1.mod 33 BLAKE2B b74677ab15ab6b31640d71b052db667b0fb585ed6d1044e26bc5e4cf8da90e1ede81f8876babea843dd322b8b707189138e70c24d13d931f1f6dd04978ac222c SHA512 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655 +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210630005230-0f9fa26af87c.mod 33 BLAKE2B b74677ab15ab6b31640d71b052db667b0fb585ed6d1044e26bc5e4cf8da90e1ede81f8876babea843dd322b8b707189138e70c24d13d931f1f6dd04978ac222c SHA512 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655 DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210816183151-1e6c022a8912.mod 33 BLAKE2B b74677ab15ab6b31640d71b052db667b0fb585ed6d1044e26bc5e4cf8da90e1ede81f8876babea843dd322b8b707189138e70c24d13d931f1f6dd04978ac222c SHA512 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655 DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210816183151-1e6c022a8912.zip 1649597 BLAKE2B 5b841fbad5d193dc0c494f12b9d788de280e895188ce43274961b4ded0f77b35e4cde2157e096e1262cd68f1b4b17b0c6766b10f25c498bf0d5f3d7a1ee54b99 SHA512 7d5cab16c856191e3ca2d5c3121f9c72cc9e04064891d0542351f4e98b2bc374dddc7b15bfc7d4dc53eb73888bdaba787823f25d366aa988599b442a5c5268fe +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210903071746-97244b99971b.mod 33 BLAKE2B b74677ab15ab6b31640d71b052db667b0fb585ed6d1044e26bc5e4cf8da90e1ede81f8876babea843dd322b8b707189138e70c24d13d931f1f6dd04978ac222c SHA512 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655 +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20211025112917-711f33c9992c.mod 33 BLAKE2B b74677ab15ab6b31640d71b052db667b0fb585ed6d1044e26bc5e4cf8da90e1ede81f8876babea843dd322b8b707189138e70c24d13d931f1f6dd04978ac222c SHA512 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655 +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20211025112917-711f33c9992c.zip 1666982 BLAKE2B 9893fc65e7d9150c4c385b4a664bd4456e245c27ed1059340667e08921f23bfa69a6f1993bffdc4e215f1f657a0e9ae67456b9b2a7c95dabf67f8657145ce7f7 SHA512 c7a3922feea85191375acf29b5badfae3657f800a54e5b1b5ab3d6b1b71b4ee2b9898fb31ee594917d92c868d0770e194916faabe8bc74762b01ec4c78f93040 DIST golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201117132131-f5c789dd3221.mod 95 BLAKE2B d86fb6e63016a8645cdec646a8ea85e1ab94e8be82123ebbe037124f353f21474e3396a64dc5f18299dc97c395759914a737699097f371c16806cc8b1e0eee64 SHA512 3295d1778ba3160c8360d99fbc648bbb4356fadd7947466f8b2f493a3c4c406515033268cf3525bdf50430b0cc31169838b5d3223842c7b1cd881e155744506e -DIST golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201117132131-f5c789dd3221.zip 23282 BLAKE2B 9bfaf8ea78b49038403d7a49abdfa9ab6cfc4fc2d71e693a15368da8cbdcd99437898f72f8a240ec7484a7f2a11405258e4cd17bab00aaaed291e2a1d1566e3f SHA512 fa88149897dd4470a7e36683de33db945e219819ce74f39f384cad03db8fd6829d47e2711dec895fafa7aa24d576dffc7cb8594a499cb1e66abeada196d502be DIST golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201126162022-7de9c90e9dd1.mod 95 BLAKE2B 8385688f2081360fc2694f05d128ff0c587ef131e1b5757a942d9335870200e06545318afb1a7d1f059d060f51fe94fc16a48a1d7ec31a9a83e07b3c93f34ce3 SHA512 a3401e3d20dc1aaaebbf3c296a783668003f2182ed77ec830431f97339e07eda1859fe8c3c7fdfb0125b3ed331d23208519df520f86e20c1a05c822b3d766b08 DIST golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201126162022-7de9c90e9dd1.zip 23281 BLAKE2B b2fedb31c347f2b5b8bc3c0311f5078ab84359736379206227bd7ad4378cffb67f39cf078707a7095ecfac3c243bbac54b64cf41375a4261fbc9af9887d134de SHA512 267fab133c0ae306a1f484d17a9c3bc7bafb1ae77df3412ea4047de34a940b6425524a93b7b41d010cbf32160482fa3a370f93654e4ff73b6d11e45463bc185a DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.0.0-20170915032832-14c0d48ead0c.mod 25 BLAKE2B 31009af0fdcd0f8730c9985287e6e364ec4e5183e57e92560dbc80a2010eced51b8a90f01a82b49384268c8a0adbf69d179c205d3f68e0eb459169d2ea9528f0 SHA512 ca081ef7cccd7bbedc6843fbe0c452352661a07e1298cd02ff338ed79d807c6401d613a3cf20011189d2f98a794ffa410547b3e352eb58a6f0a84822285d391d @@ -1851,9 +1818,7 @@ DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod 25 BLAKE2B 31009af0fdcd0f8730c99852 DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.1-0.20180807135948-17ff2d5776d2.mod 25 BLAKE2B 31009af0fdcd0f8730c9985287e6e364ec4e5183e57e92560dbc80a2010eced51b8a90f01a82b49384268c8a0adbf69d179c205d3f68e0eb459169d2ea9528f0 SHA512 ca081ef7cccd7bbedc6843fbe0c452352661a07e1298cd02ff338ed79d807c6401d613a3cf20011189d2f98a794ffa410547b3e352eb58a6f0a84822285d391d DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.mod 88 BLAKE2B f3dd520e0e4e9b57feab62ecabb9169f37f1ce49b2846b949f9266f807767d38f55e4aa8ea006229c6f81cfc1e2c9dc0d1e3c186235e416dfb90fe7e04751d07 SHA512 d9361afb453b10c9d02787568ec33ea4c97a115899c6b3d1a1246547a749244e9218475ae5ae9f741d9b355260d2d3c33852673e805fcdd5f26f3ca40f035884 DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.mod 97 BLAKE2B ed93c1d43f199d8cbd43cb25edac5de569cb78773d7f3232d59a0a4de6d174c5c100db2b02ca42c51f3e17e0f5e781ba9b5641a512b0dc72dcfaa5f6bd7d451b SHA512 f3f68808ccf5223453f765f59db1ef551b2130069eb83518878961c2d4a2044f9049f8d49df6e67699fcd2645cf90b84d35626590b2cfbca302fcf0eac76dc8b -DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.zip 8010747 BLAKE2B 78d999113a75f84966ffd23356e7cf60811b614754936851f197e547657cb6ff40acd074593c9cb6a2ae39ba625b36731c2fc0bc4b2b5ff68a2d377a6c7192db SHA512 024719305765ca737b225fec6268f84fc4c7d17c04e31eadfacafbb24a5f30af61920f4633e95d74dd2a266de40d1d2d13587881a3c22829ffeafb01fd75959f DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.6.mod 97 BLAKE2B ed93c1d43f199d8cbd43cb25edac5de569cb78773d7f3232d59a0a4de6d174c5c100db2b02ca42c51f3e17e0f5e781ba9b5641a512b0dc72dcfaa5f6bd7d451b SHA512 f3f68808ccf5223453f765f59db1ef551b2130069eb83518878961c2d4a2044f9049f8d49df6e67699fcd2645cf90b84d35626590b2cfbca302fcf0eac76dc8b -DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.6.zip 8610726 BLAKE2B 78870544de29f5cd9216befa8822c2387654c3987e09994dccf55d210ad7c517edb93bddcc68bd981f2c083a4ec5e012d558b0164901e2d74f6f447e75edfadf SHA512 494d58f2bc02819ec24d8e55f668a06694568e63bc4b41064a7e44aefcb2778c74983fc9126b50277845da8e6739e83fc1334aed989981e8e53b869878803d17 DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.7.mod 97 BLAKE2B cba29395bf9693152732776bde498cfd90a27c053feb5d1ca655e5e792ff68b9cd0a519bdff559450491e918a171c8a4fdbd4c0b4bcc9b578182f63ca37754db SHA512 e77211a503c35d8b6c392fc1b44daed580659b997673cd312ae8e579d1d715d7a53f8f0f0dd2d4dedbc6c5ca5ab7e3d52269a6536a42824cce267c89eb29cbbd DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.7.zip 8610883 BLAKE2B 768763b6da537c25448ff274da90261ad33a527e58a5749108d9d889b326051f7bb86a64ffea0a8dc2850260223a8b60ada4615290a9ba1b9a0725bb03c3323c SHA512 fb5d646d5f23fbb33acfe486714d647d7da091fc47cc7ec805afa4f78b070ed3ccc0022428f4672280ff85a7b4d8af3543647647f00ce62f2f3a18a6d425f863 DIST golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20180412165947-fbb02b2291d2.mod 25 BLAKE2B ba9e31cf2a4ab0f78a5c67d78026c2ef9571bcff7c820ce212637c8360420af274bfc47cb14bbc3df24457a4d3acb5dee38448a848abbd4e82232bef05b6b2e9 SHA512 6e51811c33b84ddd4a7548013579204266e466bd2e87aa9b6e34892570aa09c607ffa806f8a420474e26ca0e277ab23c81bb07b0ebf2c3b6ed193014c1bc37a7 @@ -1914,13 +1879,13 @@ DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200619180055-7c47624df98f.mod 271 BL DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200729194436-6467de6f59a7.mod 271 BLAKE2B 0db774e0a6eb6f5a689dec79257cf2571c5897939c1a313284797523b817ac950ac5c5a6a5ce9ce013d21bd436e2856771ccda706e31bb300788f0c67cf31473 SHA512 8eaf3fcaae282863d851f958000614a0ac6e8fd57847a842dde206a5f18cad1b492b5600e3f183be7d31944823015610682f5007df531005717b94980e9189c0 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200804011535-6c149bb5ef0d.mod 271 BLAKE2B 0db774e0a6eb6f5a689dec79257cf2571c5897939c1a313284797523b817ac950ac5c5a6a5ce9ce013d21bd436e2856771ccda706e31bb300788f0c67cf31473 SHA512 8eaf3fcaae282863d851f958000614a0ac6e8fd57847a842dde206a5f18cad1b492b5600e3f183be7d31944823015610682f5007df531005717b94980e9189c0 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200825202427-b303f430e36d.mod 271 BLAKE2B 0db774e0a6eb6f5a689dec79257cf2571c5897939c1a313284797523b817ac950ac5c5a6a5ce9ce013d21bd436e2856771ccda706e31bb300788f0c67cf31473 SHA512 8eaf3fcaae282863d851f958000614a0ac6e8fd57847a842dde206a5f18cad1b492b5600e3f183be7d31944823015610682f5007df531005717b94980e9189c0 -DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200827010519-17fd2f27a9e3.mod 271 BLAKE2B 0db774e0a6eb6f5a689dec79257cf2571c5897939c1a313284797523b817ac950ac5c5a6a5ce9ce013d21bd436e2856771ccda706e31bb300788f0c67cf31473 SHA512 8eaf3fcaae282863d851f958000614a0ac6e8fd57847a842dde206a5f18cad1b492b5600e3f183be7d31944823015610682f5007df531005717b94980e9189c0 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20201224043029-2b0845dc783e.mod 270 BLAKE2B e62694003f3e6a15a1494d429bb8d7388cbdeac1d09d28cb20244ca09eeb72b706a2c244d9cf77d7b3ff2b15a193fe35f411e9f5c34ff46a9c42abf813178730 SHA512 749bf78130d1fe8da6c022ea7f5fa65e66cd010cd4ea8278bcfdef116acc52d4d632e46a4a3070ddb7d775ef23b39e78724dbbab36e635ced32058174cbcd052 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20210106214847-113979e3529a.mod 270 BLAKE2B e62694003f3e6a15a1494d429bb8d7388cbdeac1d09d28cb20244ca09eeb72b706a2c244d9cf77d7b3ff2b15a193fe35f411e9f5c34ff46a9c42abf813178730 SHA512 749bf78130d1fe8da6c022ea7f5fa65e66cd010cd4ea8278bcfdef116acc52d4d632e46a4a3070ddb7d775ef23b39e78724dbbab36e635ced32058174cbcd052 -DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20210106214847-113979e3529a.zip 3360420 BLAKE2B 8292263b751ee7d31e19e81f0d579d777d055ad5ef2528c41015d021d200674c5f189252053a59ead0306907d4c23b07b38145c06c00094364b4a833a873a6e8 SHA512 f8c20e84c403c84de01d202c1b8e68e10483d6db36a06e3271412aa5843649cbd3bc70c5980b254101783e29314d679c5b11b8a0d2ee156cd149b7ad46da20be DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.1.1-0.20210225150353-54dc8c5edb56.mod 323 BLAKE2B f73b278de777b65f7dc950c2ab415ed5bab41e49fb69e5295f1ed459b89cc4b187a567845d059a6e04188a0727932e06f852f06739ac00b32586bec1b4d2be2e SHA512 30ccdf0111de87fd56000c0e1d4d8879cf340418df7bdda0c26cdf6808dce38b6ef5b9e2cfd92c0e92cc414f594d2c054dcc6bb246cb81d617cff846b960ed90 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.1.1.mod 323 BLAKE2B db1fc72e77cc95fbe79c62b179628f8e6e130846832146af32f604bd063c6610a6a8cebd1f166294ad4adae451c6760a0988e431846e35d25ad741920e06e839 SHA512 6fa4c11d23d3c08fed7331586d9e8da5299602dc97e861d74ce68f248c2e8b1d9ba5e55d2acbb96eaa3e1484f9d287b7d8c2f0e96f75109c957bfee88776996f DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.1.1.zip 3430655 BLAKE2B 0e1cd589418400190ec2ceb2743cc24e33b7a38d100236803d2f2013247c606b06ca23800c5f0febc31f4b25ddf912c483204045e32019ad9828d766625770eb SHA512 103a8f8af03efd9c4ad0a49a29422f451730b1c963cd4bc9209795fc66a0a20e381c3f664bee1ff89a2fa19962c57c72cdc35ad1a54f07ec008198bed34c2dab +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.1.5.mod 323 BLAKE2B db1fc72e77cc95fbe79c62b179628f8e6e130846832146af32f604bd063c6610a6a8cebd1f166294ad4adae451c6760a0988e431846e35d25ad741920e06e839 SHA512 6fa4c11d23d3c08fed7331586d9e8da5299602dc97e861d74ce68f248c2e8b1d9ba5e55d2acbb96eaa3e1484f9d287b7d8c2f0e96f75109c957bfee88776996f +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.1.5.zip 3513755 BLAKE2B 2537e470673cbca85684cb2896fe567db4b16cfd2d9b94570fdfd9a56d20eca550a7b22d8290d89a84281c02077790528d351e99c1f5dff223d867ab0e951f06 SHA512 3cedcd8d219cedd2f55e462cff9e235e3650f92d5a6dac4a44b9920a1431899a73ef41e2f07370c27d909000ce21c9a20a8b29d732471b59e4cb6777565081b8 DIST golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190717185122-a985d3407aa7.mod 37 BLAKE2B 7449be81e1998a6439070de1a0ddf5bfd1e4971c90c2e358590a9c1c41128bfc1daa42a9bbc3709506df2442ec8420e6354343a095c837be46335c180083f28a SHA512 659d18a7a3a1be45ff6dc9e7475276b82ee7f11c47d39b0c237d7f872836a1dbdfff0902f21d6cd8093663997865da92e3e5a4acf1ad6129f972dc5e667b4f05 DIST golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191011141410-1b5146add898.mod 37 BLAKE2B 7449be81e1998a6439070de1a0ddf5bfd1e4971c90c2e358590a9c1c41128bfc1daa42a9bbc3709506df2442ec8420e6354343a095c837be46335c180083f28a SHA512 659d18a7a3a1be45ff6dc9e7475276b82ee7f11c47d39b0c237d7f872836a1dbdfff0902f21d6cd8093663997865da92e3e5a4acf1ad6129f972dc5e667b4f05 DIST golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.mod 37 BLAKE2B 7449be81e1998a6439070de1a0ddf5bfd1e4971c90c2e358590a9c1c41128bfc1daa42a9bbc3709506df2442ec8420e6354343a095c837be46335c180083f28a SHA512 659d18a7a3a1be45ff6dc9e7475276b82ee7f11c47d39b0c237d7f872836a1dbdfff0902f21d6cd8093663997865da92e3e5a4acf1ad6129f972dc5e667b4f05 @@ -1953,7 +1918,6 @@ DIST google.golang.org%2Fappengine%2F@v%2Fv1.4.0.mod 162 BLAKE2B 21c4d160665b6a8 DIST google.golang.org%2Fappengine%2F@v%2Fv1.5.0.mod 162 BLAKE2B 21c4d160665b6a87101d2aec39d2f7faef9a66f6be50f7293706686022f808b131c9ce7ddfcba6c2b6d27d15f9414101650436a2403f156a0368de2bce72e482 SHA512 60fb2454326103e4905f79f23a25320cb2c0035b7a0e3c228af845ed7dae23014efb81685f29805303edf277e8b1a2d9a7530b8f3a1a8e57caa1a85edeb52475 DIST google.golang.org%2Fappengine%2F@v%2Fv1.6.1.mod 362 BLAKE2B 2d6d24186c2748c4d8f559feb269b351d4260c9c0e0b9342377f23af9e5ecc02fc7f84f7be299aedb0da1b1a6d6d67c3271a826b776bb7cc034256550479a0f5 SHA512 e3c391dfcc5f14fdc5430d7a1d239d4ebec89399b17851e4d7643b8c0c70077aaec3a1bc1a8dd5e3320d8bc6e1562a26e3fe1121d75ce578f37f5d2e84a4ddf6 DIST google.golang.org%2Fappengine%2F@v%2Fv1.6.5.mod 171 BLAKE2B 09b1ead1721eaa1dab7106f0206fd6f1c1509ddd07f70d7a23f73a1c047b9b33b41bae2519d2ba7e5c6ca632a9082483080dbffe0af3c371934f2ceab9ad334c SHA512 f99bba4e696291aae951ea3865a1cbaf0ba2df7cde4f86e942b2e5f5a4dfc6dfde95c74e52ff31ba69f2aa2a838d21843343b2203c732279eede5936b92d7c8c -DIST google.golang.org%2Fappengine%2F@v%2Fv1.6.5.zip 417678 BLAKE2B cdb4e693ed5fb2bb77ed1ce0e0b1b25dbc3648c00554ade874ce28fffd5824f487fac744f9f2cb0920aad2c94a82024e1d233d1663887f0681790488a3af6f3c SHA512 1ffe3894d8fd004f6c28916e06d8e64708c20321ff914e82d05c50ce4c62b76bcd93e74e45871f7adc779791240ef8e25df08fdaaf2abdce20a3640d8964bb28 DIST google.golang.org%2Fappengine%2F@v%2Fv1.6.6.mod 171 BLAKE2B 09b1ead1721eaa1dab7106f0206fd6f1c1509ddd07f70d7a23f73a1c047b9b33b41bae2519d2ba7e5c6ca632a9082483080dbffe0af3c371934f2ceab9ad334c SHA512 f99bba4e696291aae951ea3865a1cbaf0ba2df7cde4f86e942b2e5f5a4dfc6dfde95c74e52ff31ba69f2aa2a838d21843343b2203c732279eede5936b92d7c8c DIST google.golang.org%2Fappengine%2F@v%2Fv1.6.6.zip 417793 BLAKE2B 7219518f67d83fad94a863f889af4c3a28a48b60fced31f33a3026c00bccfb6319060c5ff4712fed598824b5bf1448b0981fc21a6755855e91ce53b4026db062 SHA512 26520c7bbc5ec3c02dc86e5882ffae74b040f0600aa99832cb08cead5d3cd5c21a32d6df332c2c74a76b6c2a684141720b4fce874a07241412bc01837784b115 DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180817151627-c66870c02cf8.mod 34 BLAKE2B cd6cb61b9f55a3c1e8b33588e98e62c9c27613ac20fb039cd70c9ecbe41c34d11d80246290ab73a9faf3ec809a15fc00267654b0eb00dbf23fe5c9758c705d9c SHA512 1c29af2b4f8b54234f09dfbfad120b4b11d4fe67e9578b0553412f1587cac2fa2bfe5537fbf15e6d52dcb04332413231c250c3c460b04e64326d2eaed3102464 @@ -1987,7 +1951,6 @@ DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200511104702-f5ebc3bea380.mod DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200513103714-09dca8ec2884.mod 287 BLAKE2B ac895df309c4c2533900f7ff3aaecd59bf883fad6fde8fc7ffef9928fc8f18402fb2198bb3f0b75e876adb7d5d0e37073fc251d149245847ebdd95de1cdf6cd3 SHA512 44dc287d4a33c4225229768c59d1b9e61b51fdc27b1745a8161b17bdef4499cb08ebc565c56caa01673317cbef46cb228ac69b9ada7d4bac870b22eddf5a2977 DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200515170657-fc4c6c6a6587.mod 323 BLAKE2B 76123f14f32c6702557406271ddd9e0304f0c9d5bb53c2b503a0a1ca74892da8a685270b6463faf7fe746f7398080f8364afc94b6f7ac8ba1170d645328ce5ca SHA512 67bb03661d5b872932d9a18ee7edc2908612a31db6391a8797e1cfa9aec45c6a3643b7943c4157db60f7e7aa235368a844c5e1fb382fa705074fc721c855a441 DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200526211855-cb27e3aa2013.mod 353 BLAKE2B 7e159067adb934153bc2a45c1a091ea85083c9e52927db8aba3e7ef9e13f984dd738aaf3890e85f7daf86afdab8e5717775250715285c0edc05625a544664cd2 SHA512 17266a643d974e2fae18e7055986002b9705bd2a7fb1e3cd3664fe6dbefbc7a04aef6900146c1e1c3ed84bea8b4d1bda4d6c355af2cda013c01f19eed57568d5 -DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200526211855-cb27e3aa2013.zip 13763150 BLAKE2B 461f4a0d169af83c296b39d3810d5f5ab0eec4d685c5eac8eda9514dc7ae30863a7cf56e3ae928787a17a702bf5fa07effb8e3c30cac707a110192eed8c32491 SHA512 68ded4c09531d5f0c11cf58f0bd54746fb122922363b7c4c31e29d5912de0156805084878d0d32cd69df95b337f3fad45f6409b09bcd9bd8ebefb60ab2d91d4c DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200618031413-b414f8b61790.mod 323 BLAKE2B 264c38a1d0b5dec10ed5c1d4a073c68817dd538b602446ea3db3b53569f14dc1bd88250b6bc14656c5206d23e17858b986188fe0c217bf8853c76121d999b08f SHA512 ab15d32d1f044b9b5806dcf075f3cc4e32f2c79e9a273e5dd30848b6ebb26d71270627536f34010cfe23c130badcb02e5b6f306a1cc1f73ba76bb86bc5ba21b5 DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200729003335-053ba62fc06f.mod 268 BLAKE2B 4ac4227310c12e7064866c6e3426900fe2e4befb661fd8dd11e47aa93df4a46e678e0dbf64d3df054da44446491c701a205a315e634752b57ccdcda3a9e7c12a SHA512 48f7000353b4c00c042daa550777df9a5031abfd49bc837d11ddd6a843fe05dd79063b423fda6d4ef1f5d42e9824349da341b35b49a9aa56249a6ef7d9d66200 DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200804131852-c06518451d9c.mod 268 BLAKE2B 4ac4227310c12e7064866c6e3426900fe2e4befb661fd8dd11e47aa93df4a46e678e0dbf64d3df054da44446491c701a205a315e634752b57ccdcda3a9e7c12a SHA512 48f7000353b4c00c042daa550777df9a5031abfd49bc837d11ddd6a843fe05dd79063b423fda6d4ef1f5d42e9824349da341b35b49a9aa56249a6ef7d9d66200 @@ -2014,10 +1977,8 @@ DIST google.golang.org%2Fgrpc%2F@v%2Fv1.29.1.mod 542 BLAKE2B d2411d4096489755e1a DIST google.golang.org%2Fgrpc%2F@v%2Fv1.30.0.mod 511 BLAKE2B 94c30e556883cd2f7149d49865821ebebbb0858d6a78ab03471b876dd57294308437ecafc7122f894310c5aa3558d18c9402ce54a62f666232a3a6bcb5bb8a24 SHA512 a41ca5b114ddc35287b79e63133b1e753dc9baf5e993dd08045c9400a91a741cfab96dad0870c0ae835226031ba3eae11bbb48df814b9613308be63a0d70b603 DIST google.golang.org%2Fgrpc%2F@v%2Fv1.31.0.mod 511 BLAKE2B 94c30e556883cd2f7149d49865821ebebbb0858d6a78ab03471b876dd57294308437ecafc7122f894310c5aa3558d18c9402ce54a62f666232a3a6bcb5bb8a24 SHA512 a41ca5b114ddc35287b79e63133b1e753dc9baf5e993dd08045c9400a91a741cfab96dad0870c0ae835226031ba3eae11bbb48df814b9613308be63a0d70b603 DIST google.golang.org%2Fgrpc%2F@v%2Fv1.31.1.mod 511 BLAKE2B 94c30e556883cd2f7149d49865821ebebbb0858d6a78ab03471b876dd57294308437ecafc7122f894310c5aa3558d18c9402ce54a62f666232a3a6bcb5bb8a24 SHA512 a41ca5b114ddc35287b79e63133b1e753dc9baf5e993dd08045c9400a91a741cfab96dad0870c0ae835226031ba3eae11bbb48df814b9613308be63a0d70b603 -DIST google.golang.org%2Fgrpc%2F@v%2Fv1.31.1.zip 1219303 BLAKE2B b68b50b8901c49456fe4e6f55e25ea0ddd9294b729b9191c6b0d75a73894e3fb852903eccddea083729be5b04bcdf9e7434fbb3b0a84c5302fdb3206cbf4da49 SHA512 f8ba6649bf1bf9619b45afac841184aa4b335c878940af368c343aa4d161d42ada823d2a238e4c81eeb2c8d1a2780215e1582517de22578428084a1d52de753f DIST google.golang.org%2Fgrpc%2F@v%2Fv1.33.1.mod 542 BLAKE2B e4b2b7b1fa60a14dbc498ae1ba77dfe6056d4f990c8b699323802ca3f5c31896c498d907c766b49c093d0c89edf7d57604daac7f64a543fc5e0745e7b6fd1bc2 SHA512 4e4f309652556a76b4dcd3bc14b32c69d8aac9dde500456d1d9f9f4c773a5aeaa19061f29f5148f7e815c0c5dd0ba377470975d004b0b73213206e7d5aeb89df DIST google.golang.org%2Fgrpc%2F@v%2Fv1.33.2.mod 578 BLAKE2B db5963bd3e0da1108af3ae72d613cc24fbe23c0569e137ff8c4ba94e393b2b574612e0133a263e8a264cf781469983363a8f147a7f0d9e0f21ed4831772565a0 SHA512 3c04e477a21db637ce07078cb89ad236db3151ca0fe474eab32c326e7e849b41abfa873045d2214bc95e34ebec7767a68f9d5a9828ef286abb4636a14677c479 -DIST google.golang.org%2Fgrpc%2F@v%2Fv1.33.2.zip 1360328 BLAKE2B 09032b3d1e7204f83d1a7d74f636e45d7dccf773e962a63d58cfc505315e20697acaba7e374f2b03ef5f31f37dd81acb28397c5ec3fdf5750061cd9c4aed34fd SHA512 3f70e3a88f9688fe1d17c7851809051a35d3556204ca7664ceb440f96715db284cd5b5fb62b95aa69a11c3835679aff5566e838954bbb73a6a760143504eb2f9 DIST google.golang.org%2Fgrpc%2F@v%2Fv1.36.0.mod 608 BLAKE2B 01e491f455fd8b3faf2dabdc8ba3e343c67461f3c58621a9c63575940474e3b4346e4eb1c8f260e78f3ca7cfecddf54f7656f590665d3596e6af1391974b284f SHA512 33faa853ccdf8c52a82c9c44e4b5f2dae76e5cc2c1e8227036f8f5fe7f1b496066fa72a379714491c6d2ac14e0ea8fe5419dc0a1626f9e60933b897903377b45 DIST google.golang.org%2Fgrpc%2F@v%2Fv1.40.0.mod 642 BLAKE2B 71e24b8446f8230b4763b0123b77f3b770e3989e00ffd680999016ad9dde0286f79bba7aba82b35e7d43a0683f8d74e74198876b648e75bc6b5e9d322ca05331 SHA512 718a4678722359c59fb9aff2b44d00d62524a5931220eb2fb7ea32a36aa443fdeb882ce157e5a99e2a7b1817dfc97c5e3f619559e6b723a3aba1274c4b75d28d DIST google.golang.org%2Fgrpc%2F@v%2Fv1.40.0.zip 1605734 BLAKE2B f9bd8fdc8c07572c9874b17186769e7b1d25e55b0ca1f1e25c1fea3d2f5ba0bdb56c2fb074f3f3bb79e94f697f1e7bc77a9c31e790fa6c7817c139aae3cd3625 SHA512 f7174cb178412fb7e209d61f85f4572c67a2de32cb186ebcf0f4743c5c895db78e13541fa27abbead881ff7bc45c9db68c304e243979c314233302acd3d6e732 @@ -2031,18 +1992,14 @@ DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.23.0.mod 123 BLAKE2B 1c4e918b0eba97f DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.23.1-0.20200526195155-81db48ad09cc.mod 123 BLAKE2B 1c4e918b0eba97f6cbf2766da4d81d59be965582a63fcb5d876194d0e57575bfc91ed40418bd435b7cb13f244c44acbe00821098b52b6d64111a4f812e4a5909 SHA512 dab1668079153e90bea3913c9aae022543d17d61e275e3d0e2ba7dfda3dd8f82642bcfd1e4d4add2b8f4fed342efd66ee6c7d7fe1e65e67e4e62f2d0ffd2387c DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.24.0.mod 186 BLAKE2B ac72ab4b58c29ea036b52ea6972dba93b3ff95ceea9b476355b14bc335bfb99ac350101e70ec678bfb6656157679f3dd42a200a1531b982ad9c995c5063ad541 SHA512 d9197910537264ba24d95110f470ce2b057b795e7244bcae423ea922a8eb4f2c89df3b6dceb58e71cc7ba1f68ccaa3dfa78d7c26d63f5949d4014b8df336512c DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.25.0.mod 186 BLAKE2B 7df4a9ba66d7fcfc40d73332ba6fcece38a38ffef4e9686fe7887272cdc81904438cfdd0e733224058289d24ee23efe087ed9a2b4f2dc31e7213bc3038ed9512 SHA512 1b0e5543fcdbca876b51ed261aa7b8abf09e985e4622111d46378893b7a2bbad882135fc1eb26ebbf97078800f6ad9f2983dd11c62a8aaa2ab1a4f0774585e65 -DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.25.0.zip 1543881 BLAKE2B 2f556bdf8ed16bde9e6ecc8fc7339578c719ed0ec73ee426caa75b672ff5fcc442ea7dfed7f737900c98d5a5afc014b9e44b1b7f0f8147edb4627f3b390814c2 SHA512 29073698d91f0bd9d37cba38102b19e6223ea362f6eb331bb186670a0549391eaf856855d2978f70861e775af0a1f678a7669754862c9247edb0a682992debc7 DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.26.0-rc.1.mod 83 BLAKE2B 0e4901ba1d4e31ef22f0f978ee7b7d926ac2cd3a1cb5d8d8a81a33e02f9dc81aad6508280d65659862c3a9bc0667c334cb6cd8c0c532d5fdb3735a415c2a5eca SHA512 a7b2aad691925341e3d1f6d1d1453b68386902a4e2e1c0deb406bc157d04328c5519a01ce938a33a6e358cbd9dc0c2f862c9822bde5314d2eb9d416d7bf789d2 DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.26.0.mod 123 BLAKE2B 73f875413489557d8f0bbcd665c06356b900f87e2cd9ef0ee5aba218a3a910842912d36dc9e653afa538c99cc723d28327a8bec6eac1f6bd93277d70fa891339 SHA512 d618524aca1cb3e525060bb66b0c8f06c9ad6be5389be228d265dbcdb368442f4f0a7e98f8c9082916b2579d77e627a550904f0b1c058b7d5e45eb7ceb77c2e0 -DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.26.0.zip 1557709 BLAKE2B bc672854cc46d48461bf28395c5be02fe99ff9da1d23e212078e549bf3e2beeaf953cc185e059c73a374f3e2662cb81fd6c3ff53472934964b8461f370b51a78 SHA512 de309c033d05be35503d6073e14ead585db4e6b75d478a674a37f93c7757e914c67bad446cf7ce04ccd49659d1ab2f9a024ee639a7536480ef92bb6b8b52dfdb DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.27.1.mod 123 BLAKE2B 73f875413489557d8f0bbcd665c06356b900f87e2cd9ef0ee5aba218a3a910842912d36dc9e653afa538c99cc723d28327a8bec6eac1f6bd93277d70fa891339 SHA512 d618524aca1cb3e525060bb66b0c8f06c9ad6be5389be228d265dbcdb368442f4f0a7e98f8c9082916b2579d77e627a550904f0b1c058b7d5e45eb7ceb77c2e0 DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.27.1.zip 1572746 BLAKE2B 372a55a68ec03bf9367368d85088a51267228a63a1fc04777dc435a5e9a6c46495f5dae27f82f3f5cf6effa41d6bc9c0a49fe1678f94d435b2516b952d24a484 SHA512 0a27f0189b04291bcd96a52a84e4ebbac6424c02e1d899655d0ecf1592150290144f5e6c8ef81c6a2f0c43db5cbda7d383119a027ef9aed8cf5e623495001077 DIST gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.mod 38 BLAKE2B e7781691d8c15b764ef6c89fcdf20e69fc28d46e8df2703b6fdc342247595c10ed25e3cc5b30cd29b81c57837f5685e4122e1b2c218a51fffbb1567c85b0835a SHA512 585188d3a75067e6b7d8a8321959fe7df80c6a19f8668a87f0d1b8687c4d2cefc039167446f6d02f7eeeb147371bc7a673348213bcb07f4d90bebc0ccf9f2015 -DIST gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.zip 59626 BLAKE2B 5fb595a10b7068bd2e4baea5fb28eb84f1f00960ca5ea964cd1812800ba8a34e62b3b71554dcfbdd727d5478eb5d91a00bd2bb7e89086929275e15e9261bdf2c SHA512 cdfbb32c7280c5405c4df41f00fa8b4ab2966285898a122a20f3c5f07a9e87095542be12efc09a67e4d90baa1fe51cd41f06733db7617949634409ea20e58dce DIST gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod 25 BLAKE2B 6470f3d94700c4d8b3176d692bdb91646750f2c6a866ff2ef4183aff1de01f024a8757f97b4626ec0355092e5f25e7ded91cd5be845f627d107c58b1daf400d7 SHA512 9ac0f80ef05881387cb2f48f81560f3207fe586ea16495383662e6d62e43d93fac01dfe72e1d0063d3ab065331dab3a8098d7da4f1830ba1aff6f27f8e1bc1b2 DIST gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20180628173108-788fd7840127.mod 25 BLAKE2B 6470f3d94700c4d8b3176d692bdb91646750f2c6a866ff2ef4183aff1de01f024a8757f97b4626ec0355092e5f25e7ded91cd5be845f627d107c58b1daf400d7 SHA512 9ac0f80ef05881387cb2f48f81560f3207fe586ea16495383662e6d62e43d93fac01dfe72e1d0063d3ab065331dab3a8098d7da4f1830ba1aff6f27f8e1bc1b2 DIST gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.mod 25 BLAKE2B 6470f3d94700c4d8b3176d692bdb91646750f2c6a866ff2ef4183aff1de01f024a8757f97b4626ec0355092e5f25e7ded91cd5be845f627d107c58b1daf400d7 SHA512 9ac0f80ef05881387cb2f48f81560f3207fe586ea16495383662e6d62e43d93fac01dfe72e1d0063d3ab065331dab3a8098d7da4f1830ba1aff6f27f8e1bc1b2 -DIST gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.zip 41481 BLAKE2B b952f04dc8d4717c839de5a5b7780ec2434915d11f897cc759647f71073dd3df717e1195ff2f4f804457195886c63620b342a089fc489f5deafa9c928708d4bb SHA512 40a523fc1dcc36677a0dc0e626313d44a308fa2ad5eedf7b616470ae2972dd8f5b78c18384efffa65d58391e60b704ed35db5557a5dce8362ae45204f64b721d DIST gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20201130134442-10cb98267c6c.mod 71 BLAKE2B 0a639f084a90d74b70232aeeaf4be7b5bb421913a30b3b97d97186022dcd1d1dacfb07eb7681369fb408793b8c7233ccc92caa77451f24371c64ce81e7c0a8fd SHA512 a2f9fd465e2e0c735ca80e04f2002e31cad434c5a3771a3adcdc7f9502f0caa7b27a5f17ec2cd95bcb214e12ac1200a78139db063d4384b864bd290cb6815e87 DIST gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20201130134442-10cb98267c6c.zip 42835 BLAKE2B 84e1f37c859e0d7ec5adc4cbbd4561186446e6bb75dabbfa73e44f44f7d21c2b14e97daac56bf65d2acbfa9c8a338ef8c23d75bbfcf26e01bdd87c3880c4a6e9 SHA512 b69b95251b63b6fd0ed1953dae01edefa52126e2168246bc2cdf067879ae5f830df4e610da45f5ac5aa4789f70d79da8a9bfa7af5b3786ef8f1e665a8b397e02 DIST gopkg.in%2Fcheggaaa%2Fpb.v1%2F@v%2Fv1.0.25.mod 31 BLAKE2B 1a4baffd98c62173795d54bc25845b710fe8391726fc5d67cd6025131f783a3d94cd474299d72f5f077dc529203dcdf7a069268dc30fa39d9b3f7fab566df45b SHA512 b8685a6e649de49671d079375ba2132a467bb015a29a7182744caa9464f5e7ac72a952b10faf04e5b6d745ec955b565dc03cbc4ca9849d23ebd5303a12f18401 @@ -2051,6 +2008,8 @@ DIST gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.mod 28 BLAKE2B ee2514c386f6cb3ff4a9b82 DIST gopkg.in%2Fgcfg.v1%2F@v%2Fv1.2.3.mod 24 BLAKE2B 2e460175791185a1eeaec63e12c62c4151b0dd57c9f1e21a2849d834d762c928c843b59a0ec9a2000e8bcf6e86a4c3cea4895c40b99451148e9e4ccd95ffa815 SHA512 cb839ecb3ad2ea4ac9f449a9a0a71dddd03b6988321ccd655cad1d66e042fe2618c635a8ce5ee6a96c5944a12053ef658fc13e54aeb69a5649523f5cd0252252 DIST gopkg.in%2Finf.v0%2F@v%2Fv0.9.1.mod 23 BLAKE2B 7e865218970f4a4fa06035c7474ea6a854843051fafd593b393007eb606d813e7817d2444697c68a3c63ce44d57b2f7bd47348ae6e4481bd11f43ed6ace64e5a SHA512 cb350a878f5cb581d62859e605c732ff92a0b92295c28eb17f17768845feef85c1838bda755ff952a8c939f6a46e9cbf5dd77b6e278adf8197a418111e2f98dc DIST gopkg.in%2Fresty.v1%2F@v%2Fv1.12.0.mod 86 BLAKE2B a2c81f0cabd00084e6e52de82e9ba9a5bdf42d45123b7a58ebe4baa07b41631498c7590535884282869c4947b4f4f9ea0f41bfd28c1c7bbd516ea5631f207e30 SHA512 84c11a71dfd5f94cbcc79aaa8d387600ea3eec89cdb44bc63e55daad5700dc20aa719ce7a5c960cf97900231bedd118afbd93c408aec449e68ed5d8c5641ff57 +DIST gopkg.in%2Fsquare%2Fgo-jose.v2%2F@v%2Fv2.5.1.mod 34 BLAKE2B 618a69c0e95948b23d494ad15cc5572b4d0cd35929ae65433b179b7482b70ae86167346300267b20c48814313278e1ff43e92935899d1405e7561d6c994e2f15 SHA512 a9022561a9dfe5056793fe3dc81625b8093eb32c67c5cba0ab5d82348aa72f1deeca161603773369c4f02ef4e753c0f751819199b292326277a149546ae54e62 +DIST gopkg.in%2Fsquare%2Fgo-jose.v2%2F@v%2Fv2.5.1.zip 353844 BLAKE2B e4d24ee5a99951c19c32328d6eef3fd6c886338bc7189eec9e60c99fe89e5728b3f00824d0f321bbc921738a40900d8d90ab4d9879e8efee529ed4273df0c2a1 SHA512 7ec385824affaaa72aca2b5af052dc7e941a24b1712e0e1945fe6276df3b02ca9eaaf79fdc0888e398aaf10ce3b261f0d23b2c6485184e6a6587e1d04f1c8742 DIST gopkg.in%2Fsrc-d%2Fgo-cli.v0%2F@v%2Fv0.0.0-20181105080154-d492247bbc0d.mod 32 BLAKE2B 40bb1cf8ef2371bc1a621ab77476799c673675de3e4a6aa969eefa017c056ca25eb57a71b929562942f0d2447924a6bcaedbadabbad99e018ba6935229b1c9dc SHA512 97aee49958d807f34c5cbb7f2c4885e68908535c83b20b130d46cb3ae80803d6348c98de23b259d7b8cf8fb8fc2d8fa7d3f3a43292c5c88d49874765b7743f4f DIST gopkg.in%2Fsrc-d%2Fgo-log.v1%2F@v%2Fv1.0.1.mod 32 BLAKE2B efd3316a0eadc32b60898b0819b45fe8a116b779da7dcfed7ffe11279244af9cb91e783279cf4a6f61d17835016988f2bc2863915726416add7aa91949e9e3c3 SHA512 00ad96b64c5be6c85131ed4d0917a066fe4d2accf35e3e78d74e5304b35ab7268932ec023746927ba267a614bb4c4973e6a3d62f34e2dcf170a303d1f7c37078 DIST gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.mod 24 BLAKE2B 24a0c476e6590543f1b46175c4f0e036498afd9af616f6e204cac280e61cc10454e0c2a54fe10b9a7a306715ab966a5822ad78626c6cf20c2c78aac02598c922 SHA512 b147b03cabc4666519b94f4d9c7d9fefdea45810e3e35a9b3d303dba491d486fe03c0d5969a6186adbb9c75665e4f3e9811c7bf4ce72c46280b053611c198c41 @@ -2064,11 +2023,9 @@ DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.4.mod 95 BLAKE2B adb3684980f1d8e6c23444e9102 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.5.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.8.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 -DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.zip 80765 BLAKE2B d6d8bfba5082aabb1a247add43b21ffa058b58fef60e8efbf973b724273cda2496ef0c9b226ad14bfea17f141f077d3bd98dfe3dbcf3c2938fd64570abd662b2 SHA512 2a89b2bce856cc11f3b71edec9e538048acf07f6aabbe27236b663b284c086c5862f086734e58727e9db8912a113fea51f72dad1a45a9e85860764f9c27b19d2 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.4.0.mod 95 BLAKE2B 888532a43aa7569fc03a62d78507081f30342eb4be40c01252683b16cd3658dd7b30d5f8a071dffe2c05f57bbee3afbc1ee4324c471788c633a878d498ff7d57 SHA512 2790882fbfa812468b9b3443630b1f1ee67a968eb20da8e4a1bfd410e4b516a8a7e77c07414b64f17e11e2151161b85d019e172cc833a45b19e66d4c70f89f82 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.4.0.zip 81183 BLAKE2B 0e3222d715fe7e9e8e9a10abad817f75bdd095f9af250d6bdf1ee2881930c739111de8b526175c9204995c48e0ade9852541a7f22b0ce1261f473986a2739182 SHA512 d6f4ac547609c943adfc6b518ff03ac09da566ba2b29466abe8f6db3d5a41ae7e5c187068dce4e77271905b1aa88497ca49a43bb9bbf9c94011b7ccf1b4b2f42 DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.mod 95 BLAKE2B fbb87f0644ec9da5d4386358d23cdb15b0d23e8212e712f16f338455a3a0ad19fbfd63e92c955c359237ddfa8bb76d6d08280eead24d321668431891eca1e8ab SHA512 307ca9123efc577ca04828996ee9d8edbb51794ccb4b8d9f169ba689e7276aa5f6ae106a04b22b7fab853ffacfebcbf74468b64eaefd57445864c1fbc77fad9d -DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.zip 101467 BLAKE2B 8bb0aec8e693a4c0da59f1931e1fdcf6f94a236faba149d5af91e87284f39c693d20be65248eecde739cb555e371804fa6c723a56c69e6d02a347ba908e968b1 SHA512 bee7757d760f5ba1b9f7523af358652a5cb65f2b0064da097f78450871b2636efcbab0298a9871bbb3ce8012bf95a155949251d4f61464dde510097b936b47a8 DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20210107192922-496545a6307b.mod 95 BLAKE2B fbb87f0644ec9da5d4386358d23cdb15b0d23e8212e712f16f338455a3a0ad19fbfd63e92c955c359237ddfa8bb76d6d08280eead24d321668431891eca1e8ab SHA512 307ca9123efc577ca04828996ee9d8edbb51794ccb4b8d9f169ba689e7276aa5f6ae106a04b22b7fab853ffacfebcbf74468b64eaefd57445864c1fbc77fad9d DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20210107192922-496545a6307b.zip 105245 BLAKE2B f0bcfd9d097905364d9c2b032b92a8aad64b63e0942eb864759b156eb97ac58769fbc035acf4ba57bd55db1b6596499ddc6d36e6d2e5cc584c2a465256ca3a73 SHA512 f9c0400f1f5590d7185ae3fdac7adf1787a5f5198e52ebd02841b7df5113c5e34de6a66fa01b2f5735be4b21190dffb46e9d8b084ad5c00ebd99599a39ff73db DIST grpc.go4.org%2F@v%2Fv0.0.0-20170609214715-11d0a25b4919.mod 20 BLAKE2B e14762111ddcb60b4b0d52ea4ef58dd26501463483aebf674713b6cca9a2a7a000c77f212c0fc0764ae69891b0c307c97bcdbc3bfb1f3fa5032582689bcefb89 SHA512 2a842877eb3d9f5d1a51864053d1dcafc6f74cf834cf597d1c167da6040a3842d409f4bb8ceaec80049ec0f70c4b42603016bee64539616e2f988160c5409afd @@ -2078,9 +2035,12 @@ DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190106161140-3f1c8253044a.mod 26 BLA DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190418001031-e561f6794a2a.mod 26 BLAKE2B db6cc87a17bed88b955e6b36a17568930239c94a969211b02c2d5acc70386fbea63ac44365a0d3241e900125bd64644d698d8f1bdcabc3e6cf99c47259c63df5 SHA512 d00ae74b24e7fb3ff351ff68b88e59636153bbcf92b36e81e91556e3e75a7ccfb08ce471f757f92fd7612378944de3d7309c73923812e2df6a26b74e999ca9ce DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190523083050-ea95bdfd59fc.mod 26 BLAKE2B db6cc87a17bed88b955e6b36a17568930239c94a969211b02c2d5acc70386fbea63ac44365a0d3241e900125bd64644d698d8f1bdcabc3e6cf99c47259c63df5 SHA512 d00ae74b24e7fb3ff351ff68b88e59636153bbcf92b36e81e91556e3e75a7ccfb08ce471f757f92fd7612378944de3d7309c73923812e2df6a26b74e999ca9ce DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.mod 300 BLAKE2B 3e3f5a2be0918cbaacd5e43e59fcc6c7c6999645f0c9214cd5a522c31d34b6d3dad61e3ddae8ccdb2f3f0d90b406c047802ee3d9d54dc40fe6eff9cd35620792 SHA512 0c8aa788d0c03d6d049f0dd7468d0f81ce2131ccedd5a5a3a18362b7d30eef7ef325277844eefe4b707b1ad71c6f83a44e110b7af7b98e05406d347237a7bafb -DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.zip 506912 BLAKE2B a38cb31fd8df49dae4ff187e67704b5586ba78a0dcfe5afa3b820f0ac80f7e12ba4bdb705caa97c6be85407fe97599d1244d2f56f0e9e36554ba43289d9f21d8 SHA512 3285ab90762ee6b771c95e1c842ab308f04ac366ddfa693040c49d8951bb01db33994eb69c2c9dfd6ab2b379b29cbfe31558ca6b6aafe3feea1e693b2a36d0cb DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2020.1.3.mod 300 BLAKE2B 3aa707c72ce7e402cc1765fed30253eb87e9e87aecc8096130e973623f53ded2a7572ca3d464e4db9de524cd651b3aa8fbc9fa0ef6bdc4eb9670b4d8652f4dfc SHA512 d814675e448688f6a506397bedb262fb2583c913ec1f8ca9ffc11206bdcd7e1f4ee3c561aee366eb2cdaede8c522a6f58f116236f3033bc7e91ec139bdd140f9 DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2020.1.4.mod 300 BLAKE2B 3aa707c72ce7e402cc1765fed30253eb87e9e87aecc8096130e973623f53ded2a7572ca3d464e4db9de524cd651b3aa8fbc9fa0ef6bdc4eb9670b4d8652f4dfc SHA512 d814675e448688f6a506397bedb262fb2583c913ec1f8ca9ffc11206bdcd7e1f4ee3c561aee366eb2cdaede8c522a6f58f116236f3033bc7e91ec139bdd140f9 +DIST lukechampine.com%2Fblake3%2F@v%2Fv1.1.6.mod 86 BLAKE2B 9afa092f61a6f8e69a9ffffcedc76044c8222bba684927e68a9c97ba5942c5b38a2f610d753f8d2d1ed934ad5eeffe27048efd1e725ab45b5c5b724a4ae5b9c4 SHA512 bb11e2c9913c0027964ad97cdad9483df4e8e4fc611f4d517002b072608eb4b249bf446b3905497fae7c7ec7887f03f23fadfa7a766901fa46d131c3d979e4bf +DIST lukechampine.com%2Fblake3%2F@v%2Fv1.1.6.zip 33952 BLAKE2B 51d5efaccaef52a4c2224de12ec246e69db2fed4ed866ee15c4f099585a2b0634090471998e1ba1ba5123c741decd780b9820dab6d980447ca03db21b15c3061 SHA512 541ef1320856a8bebb196c55235d970f9a311da8754535b30399966ee6e03dade60c948bf208d0f3069cdd1ad4c81c01ac53b58e144be63336b08146fbb7e252 +DIST pgregory.net%2Frapid%2F@v%2Fv0.4.7.mod 35 BLAKE2B 64ae268a9cd6646b1fe0276dcf4cf5244c186ab10e0a97c6482f64a49603007a7195a2e78aee967df65f99d4a24d0ebf83c8db59798220d165bb7298e143df94 SHA512 f2d99ae39addbdf939b02677ce9c464decd2b9923fa04c9a07918f3f5ed5dc3abad36142e44b355ebd3429c0c46488501e399f0e7a7db253e302fa29cb1f294c +DIST pgregory.net%2Frapid%2F@v%2Fv0.4.7.zip 101824 BLAKE2B bc2cadba0fe5199fa3848797596231c2de08497ddd5a2c5c20ad5fcf83bbe20ddd994cced28b7e608909450edcf881dfa816889a47e4799a3dfe5d7d47b00073 SHA512 3b2655ea3a1ddc71976fd5a47eed93a3b17a325765362465389e5eda7aff0baa8b215b67713ce410ed553fca5a62d9bd9d2d78fd729d4aaa8d450ee906dbe7ef DIST rsc.io%2Fbinaryregexp%2F@v%2Fv0.2.0.mod 36 BLAKE2B 61110bed2b9e99e0250cf6e8b842257202c89b3462edf9368b73cab29f9dbd4dcc66c3e290a1d6329b7d62321eecc52082a8c4c0797eac743a29a8a00910a93f SHA512 db50ff677b0bdccbc1a1ad3df7c5cc76f2fcccf3ab99d08d1c2868440eb9b893fe89452f4286f7d42f2f16abf0f4acda67fe86e174dcfa730a743aafcc166774 DIST rsc.io%2Fquote%2Fv3%2F@v%2Fv3.1.0.mod 55 BLAKE2B f1f0ba35f0ffd200ed37c06b2025c1fd436e3fd857bd525b9295c0cbcade7e1f037e3f566124a7ef428384d50525426f0d40468c967e39bac6057174710e2566 SHA512 e6357ddd7d09692c60e59e6cb80469ade8284052cdd3ea520ec4dbcb42c1cabe045c599e43cce94bec022bd82e87a554ecac42f8c917cf2ff44daff9c1a147d5 DIST rsc.io%2Fsampler%2F@v%2Fv1.3.0.mod 88 BLAKE2B c2ac3c9619e396db470c9951dfc11cdacccd56ae09b3b353015ee7e5fbb023df288dbf48d81b44c309241d1ea89a2e0ee42ee1d17e536fcfa531aaee0e651ab7 SHA512 2137507eb25fbae419605e0cd6bca4cfa584110eebc276cd759a4dcb6f97e52928e5b2d9b276e76bcabcec3bbfc2c42f97fa29f54695d27fb00f9423e1638863 diff --git a/net-p2p/go-ipfs/go-ipfs-0.9.1.ebuild b/net-p2p/go-ipfs/go-ipfs-0.11.0.ebuild similarity index 80% rename from net-p2p/go-ipfs/go-ipfs-0.9.1.ebuild rename to net-p2p/go-ipfs/go-ipfs-0.11.0.ebuild index 21d34658b639..cc6a7fb4a68f 100644 --- a/net-p2p/go-ipfs/go-ipfs-0.9.1.ebuild +++ b/net-p2p/go-ipfs/go-ipfs-0.11.0.ebuild @@ -20,16 +20,32 @@ EGO_SUM=( "cloud.google.com/go v0.45.1/go.mod" "cloud.google.com/go v0.46.3/go.mod" "cloud.google.com/go v0.50.0/go.mod" + "cloud.google.com/go v0.52.0/go.mod" "cloud.google.com/go v0.53.0/go.mod" + "cloud.google.com/go v0.54.0/go.mod" + "cloud.google.com/go v0.56.0/go.mod" + "cloud.google.com/go v0.57.0/go.mod" + "cloud.google.com/go v0.62.0/go.mod" + "cloud.google.com/go v0.65.0/go.mod" "cloud.google.com/go/bigquery v1.0.1/go.mod" "cloud.google.com/go/bigquery v1.3.0/go.mod" + "cloud.google.com/go/bigquery v1.4.0/go.mod" + "cloud.google.com/go/bigquery v1.5.0/go.mod" + "cloud.google.com/go/bigquery v1.7.0/go.mod" + "cloud.google.com/go/bigquery v1.8.0/go.mod" "cloud.google.com/go/datastore v1.0.0/go.mod" + "cloud.google.com/go/datastore v1.1.0/go.mod" "cloud.google.com/go/pubsub v1.0.1/go.mod" "cloud.google.com/go/pubsub v1.1.0/go.mod" + "cloud.google.com/go/pubsub v1.2.0/go.mod" + "cloud.google.com/go/pubsub v1.3.1/go.mod" "cloud.google.com/go/storage v1.0.0/go.mod" "cloud.google.com/go/storage v1.5.0/go.mod" - "contrib.go.opencensus.io/exporter/prometheus v0.3.0" - "contrib.go.opencensus.io/exporter/prometheus v0.3.0/go.mod" + "cloud.google.com/go/storage v1.6.0/go.mod" + "cloud.google.com/go/storage v1.8.0/go.mod" + "cloud.google.com/go/storage v1.10.0/go.mod" + "contrib.go.opencensus.io/exporter/prometheus v0.4.0" + "contrib.go.opencensus.io/exporter/prometheus v0.4.0/go.mod" "dmitri.shuralyov.com/app/changes v0.0.0-20180602232624-0a106ad413e3/go.mod" "dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod" "dmitri.shuralyov.com/html/belt v0.0.0-20180602232347-f7d459c86be0/go.mod" @@ -40,7 +56,6 @@ EGO_SUM=( "github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod" "github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96" "github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96/go.mod" - "github.com/BurntSushi/toml v0.3.1" "github.com/BurntSushi/toml v0.3.1/go.mod" "github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod" "github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod" @@ -56,15 +71,16 @@ EGO_SUM=( "github.com/aead/siphash v1.0.1/go.mod" "github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5/go.mod" "github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod" - "github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751" "github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod" "github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod" "github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod" - "github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d" "github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod" + "github.com/alecthomas/units v0.0.0-20210927113745-59d0afb8317a" + "github.com/alecthomas/units v0.0.0-20210927113745-59d0afb8317a/go.mod" "github.com/alexbrainman/goissue34681 v0.0.0-20191006012335-3fc7a47baff5" "github.com/alexbrainman/goissue34681 v0.0.0-20191006012335-3fc7a47baff5/go.mod" "github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod" + "github.com/antihax/optional v1.0.0/go.mod" "github.com/apache/thrift v0.12.0/go.mod" "github.com/apache/thrift v0.13.0/go.mod" "github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod" @@ -76,8 +92,9 @@ EGO_SUM=( "github.com/aws/aws-sdk-go v1.27.0/go.mod" "github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod" "github.com/benbjohnson/clock v1.0.2/go.mod" - "github.com/benbjohnson/clock v1.0.3" "github.com/benbjohnson/clock v1.0.3/go.mod" + "github.com/benbjohnson/clock v1.1.0" + "github.com/benbjohnson/clock v1.1.0/go.mod" "github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod" "github.com/beorn7/perks v1.0.0/go.mod" "github.com/beorn7/perks v1.0.1" @@ -91,12 +108,14 @@ EGO_SUM=( "github.com/btcsuite/btcd v0.0.0-20190605094302-a0d1e3e36d50/go.mod" "github.com/btcsuite/btcd v0.0.0-20190824003749-130ea5bddde3/go.mod" "github.com/btcsuite/btcd v0.20.1-beta/go.mod" - "github.com/btcsuite/btcd v0.21.0-beta" "github.com/btcsuite/btcd v0.21.0-beta/go.mod" + "github.com/btcsuite/btcd v0.22.0-beta" + "github.com/btcsuite/btcd v0.22.0-beta/go.mod" "github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod" "github.com/btcsuite/btcutil v0.0.0-20190207003914-4c204d697803/go.mod" "github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod" "github.com/btcsuite/btcutil v1.0.2/go.mod" + "github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce/go.mod" "github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd/go.mod" "github.com/btcsuite/goleveldb v0.0.0-20160330041536-7834afc9e8cd/go.mod" "github.com/btcsuite/goleveldb v1.0.0/go.mod" @@ -109,6 +128,8 @@ EGO_SUM=( "github.com/cenkalti/backoff v2.2.1+incompatible" "github.com/cenkalti/backoff v2.2.1+incompatible/go.mod" "github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod" + "github.com/ceramicnetwork/go-dag-jose v0.1.0" + "github.com/ceramicnetwork/go-dag-jose v0.1.0/go.mod" "github.com/cespare/xxhash v1.1.0" "github.com/cespare/xxhash v1.1.0/go.mod" "github.com/cespare/xxhash/v2 v2.1.1" @@ -123,6 +144,8 @@ EGO_SUM=( "github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod" "github.com/client9/misspell v0.3.4/go.mod" "github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod" + "github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod" + "github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod" "github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod" "github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod" "github.com/coreos/etcd v3.3.10+incompatible/go.mod" @@ -135,14 +158,15 @@ EGO_SUM=( "github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d" "github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d/go.mod" "github.com/coreos/go-systemd/v22 v22.0.0/go.mod" - "github.com/coreos/go-systemd/v22 v22.3.1" - "github.com/coreos/go-systemd/v22 v22.3.1/go.mod" + "github.com/coreos/go-systemd/v22 v22.3.2" + "github.com/coreos/go-systemd/v22 v22.3.2/go.mod" "github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod" "github.com/cpuguy83/go-md2man v1.0.10/go.mod" "github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod" "github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3" "github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3/go.mod" "github.com/creack/pty v1.1.7/go.mod" + "github.com/creack/pty v1.1.9/go.mod" "github.com/cskr/pubsub v1.0.2" "github.com/cskr/pubsub v1.0.2/go.mod" "github.com/davecgh/go-spew v0.0.0-20171005155431-ecdeabc65495/go.mod" @@ -178,6 +202,8 @@ EGO_SUM=( "github.com/envoyproxy/go-control-plane v0.9.0/go.mod" "github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod" "github.com/envoyproxy/go-control-plane v0.9.4/go.mod" + "github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod" + "github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod" "github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod" "github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5" "github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5/go.mod" @@ -192,13 +218,15 @@ EGO_SUM=( "github.com/francoispqt/gojay v1.2.13/go.mod" "github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod" "github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod" - "github.com/frankban/quicktest v1.11.3" "github.com/frankban/quicktest v1.11.3/go.mod" + "github.com/frankban/quicktest v1.14.0" + "github.com/frankban/quicktest v1.14.0/go.mod" "github.com/fsnotify/fsnotify v1.4.7/go.mod" - "github.com/fsnotify/fsnotify v1.4.9" "github.com/fsnotify/fsnotify v1.4.9/go.mod" - "github.com/gabriel-vasile/mimetype v1.1.2" - "github.com/gabriel-vasile/mimetype v1.1.2/go.mod" + "github.com/fsnotify/fsnotify v1.5.1" + "github.com/fsnotify/fsnotify v1.5.1/go.mod" + "github.com/gabriel-vasile/mimetype v1.4.0" + "github.com/gabriel-vasile/mimetype v1.4.0/go.mod" "github.com/ghodss/yaml v1.0.0/go.mod" "github.com/gliderlabs/ssh v0.1.1/go.mod" "github.com/go-bindata/go-bindata/v3 v3.1.3" @@ -207,13 +235,18 @@ EGO_SUM=( "github.com/go-errors/errors v1.0.1/go.mod" "github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod" "github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod" + "github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod" "github.com/go-kit/kit v0.8.0/go.mod" "github.com/go-kit/kit v0.9.0/go.mod" "github.com/go-kit/kit v0.10.0/go.mod" + "github.com/go-kit/log v0.1.0" + "github.com/go-kit/log v0.1.0/go.mod" "github.com/go-logfmt/logfmt v0.3.0/go.mod" "github.com/go-logfmt/logfmt v0.4.0/go.mod" + "github.com/go-logfmt/logfmt v0.5.0" "github.com/go-logfmt/logfmt v0.5.0/go.mod" "github.com/go-sql-driver/mysql v1.4.0/go.mod" + "github.com/go-stack/stack v1.8.0" "github.com/go-stack/stack v1.8.0/go.mod" "github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0" "github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod" @@ -232,13 +265,16 @@ EGO_SUM=( "github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod" "github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9/go.mod" "github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod" - "github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e" "github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod" + "github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da" + "github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod" "github.com/golang/lint v0.0.0-20180702182130-06c8688daad7/go.mod" "github.com/golang/mock v1.1.1/go.mod" "github.com/golang/mock v1.2.0/go.mod" "github.com/golang/mock v1.3.1/go.mod" "github.com/golang/mock v1.4.0/go.mod" + "github.com/golang/mock v1.4.1/go.mod" + "github.com/golang/mock v1.4.3/go.mod" "github.com/golang/mock v1.4.4/go.mod" "github.com/golang/mock v1.6.0" "github.com/golang/mock v1.6.0/go.mod" @@ -247,6 +283,8 @@ EGO_SUM=( "github.com/golang/protobuf v1.3.1/go.mod" "github.com/golang/protobuf v1.3.2/go.mod" "github.com/golang/protobuf v1.3.3/go.mod" + "github.com/golang/protobuf v1.3.4/go.mod" + "github.com/golang/protobuf v1.3.5/go.mod" "github.com/golang/protobuf v1.4.0-rc.1/go.mod" "github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod" "github.com/golang/protobuf v1.4.0-rc.2/go.mod" @@ -266,36 +304,43 @@ EGO_SUM=( "github.com/google/go-cmp v0.3.0/go.mod" "github.com/google/go-cmp v0.3.1/go.mod" "github.com/google/go-cmp v0.4.0/go.mod" + "github.com/google/go-cmp v0.4.1/go.mod" "github.com/google/go-cmp v0.5.0/go.mod" + "github.com/google/go-cmp v0.5.1/go.mod" "github.com/google/go-cmp v0.5.3/go.mod" "github.com/google/go-cmp v0.5.4/go.mod" - "github.com/google/go-cmp v0.5.5" "github.com/google/go-cmp v0.5.5/go.mod" + "github.com/google/go-cmp v0.5.6" + "github.com/google/go-cmp v0.5.6/go.mod" "github.com/google/go-github v17.0.0+incompatible/go.mod" "github.com/google/go-querystring v1.0.0/go.mod" "github.com/google/gofuzz v1.0.0/go.mod" "github.com/google/gopacket v1.1.17/go.mod" - "github.com/google/gopacket v1.1.18/go.mod" "github.com/google/gopacket v1.1.19" "github.com/google/gopacket v1.1.19/go.mod" "github.com/google/martian v2.1.0+incompatible/go.mod" + "github.com/google/martian/v3 v3.0.0/go.mod" "github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod" "github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod" + "github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod" "github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod" + "github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod" + "github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod" + "github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod" "github.com/google/renameio v0.1.0/go.mod" "github.com/google/uuid v1.0.0/go.mod" "github.com/google/uuid v1.1.1/go.mod" "github.com/google/uuid v1.1.2/go.mod" - "github.com/google/uuid v1.2.0" "github.com/google/uuid v1.2.0/go.mod" + "github.com/google/uuid v1.3.0" + "github.com/google/uuid v1.3.0/go.mod" "github.com/googleapis/gax-go v2.0.0+incompatible/go.mod" "github.com/googleapis/gax-go/v2 v2.0.3/go.mod" "github.com/googleapis/gax-go/v2 v2.0.4/go.mod" "github.com/googleapis/gax-go/v2 v2.0.5/go.mod" "github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod" + "github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c" "github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c/go.mod" - "github.com/gopherjs/gopherjs v0.0.0-20190812055157-5d271430af9f" - "github.com/gopherjs/gopherjs v0.0.0-20190812055157-5d271430af9f/go.mod" "github.com/gorilla/context v1.1.1/go.mod" "github.com/gorilla/mux v1.6.2/go.mod" "github.com/gorilla/mux v1.7.3/go.mod" @@ -309,6 +354,7 @@ EGO_SUM=( "github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod" "github.com/grpc-ecosystem/grpc-gateway v1.5.0/go.mod" "github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod" + "github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod" "github.com/gxed/hashland/keccakpg v0.0.1/go.mod" "github.com/gxed/hashland/murmur3 v0.0.1/go.mod" "github.com/hannahhoward/cbor-gen-for v0.0.0-20200817222906-ea96cece81f1/go.mod" @@ -343,8 +389,9 @@ EGO_SUM=( "github.com/hashicorp/serf v0.8.2/go.mod" "github.com/hpcloud/tail v1.0.0/go.mod" "github.com/hudl/fargo v1.3.0/go.mod" - "github.com/huin/goupnp v1.0.0" "github.com/huin/goupnp v1.0.0/go.mod" + "github.com/huin/goupnp v1.0.2" + "github.com/huin/goupnp v1.0.2/go.mod" "github.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150/go.mod" "github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod" "github.com/inconshreveable/mousetrap v1.0.0/go.mod" @@ -352,45 +399,48 @@ EGO_SUM=( "github.com/ipfs/bbloom v0.0.1/go.mod" "github.com/ipfs/bbloom v0.0.4" "github.com/ipfs/bbloom v0.0.4/go.mod" + "github.com/ipfs/go-bitfield v1.0.0" + "github.com/ipfs/go-bitfield v1.0.0/go.mod" "github.com/ipfs/go-bitswap v0.0.9/go.mod" "github.com/ipfs/go-bitswap v0.1.0/go.mod" "github.com/ipfs/go-bitswap v0.1.2/go.mod" - "github.com/ipfs/go-bitswap v0.1.3/go.mod" "github.com/ipfs/go-bitswap v0.1.8/go.mod" - "github.com/ipfs/go-bitswap v0.3.4" "github.com/ipfs/go-bitswap v0.3.4/go.mod" + "github.com/ipfs/go-bitswap v0.5.1" + "github.com/ipfs/go-bitswap v0.5.1/go.mod" "github.com/ipfs/go-block-format v0.0.1/go.mod" "github.com/ipfs/go-block-format v0.0.2/go.mod" "github.com/ipfs/go-block-format v0.0.3" "github.com/ipfs/go-block-format v0.0.3/go.mod" "github.com/ipfs/go-blockservice v0.0.7/go.mod" "github.com/ipfs/go-blockservice v0.1.0/go.mod" - "github.com/ipfs/go-blockservice v0.1.1/go.mod" - "github.com/ipfs/go-blockservice v0.1.2/go.mod" - "github.com/ipfs/go-blockservice v0.1.3/go.mod" - "github.com/ipfs/go-blockservice v0.1.4" "github.com/ipfs/go-blockservice v0.1.4/go.mod" + "github.com/ipfs/go-blockservice v0.1.7/go.mod" + "github.com/ipfs/go-blockservice v0.2.1" + "github.com/ipfs/go-blockservice v0.2.1/go.mod" "github.com/ipfs/go-cid v0.0.1/go.mod" "github.com/ipfs/go-cid v0.0.2/go.mod" "github.com/ipfs/go-cid v0.0.3/go.mod" "github.com/ipfs/go-cid v0.0.4/go.mod" "github.com/ipfs/go-cid v0.0.5/go.mod" "github.com/ipfs/go-cid v0.0.6/go.mod" - "github.com/ipfs/go-cid v0.0.7" "github.com/ipfs/go-cid v0.0.7/go.mod" + "github.com/ipfs/go-cid v0.1.0" + "github.com/ipfs/go-cid v0.1.0/go.mod" "github.com/ipfs/go-cidutil v0.0.2" "github.com/ipfs/go-cidutil v0.0.2/go.mod" "github.com/ipfs/go-datastore v0.0.1/go.mod" "github.com/ipfs/go-datastore v0.0.5/go.mod" "github.com/ipfs/go-datastore v0.1.0/go.mod" "github.com/ipfs/go-datastore v0.1.1/go.mod" - "github.com/ipfs/go-datastore v0.3.0/go.mod" "github.com/ipfs/go-datastore v0.3.1/go.mod" "github.com/ipfs/go-datastore v0.4.0/go.mod" "github.com/ipfs/go-datastore v0.4.1/go.mod" "github.com/ipfs/go-datastore v0.4.4/go.mod" - "github.com/ipfs/go-datastore v0.4.5" "github.com/ipfs/go-datastore v0.4.5/go.mod" + "github.com/ipfs/go-datastore v0.5.0/go.mod" + "github.com/ipfs/go-datastore v0.5.1" + "github.com/ipfs/go-datastore v0.5.1/go.mod" "github.com/ipfs/go-detect-race v0.0.1" "github.com/ipfs/go-detect-race v0.0.1/go.mod" "github.com/ipfs/go-ds-badger v0.0.2/go.mod" @@ -398,28 +448,34 @@ EGO_SUM=( "github.com/ipfs/go-ds-badger v0.0.7/go.mod" "github.com/ipfs/go-ds-badger v0.2.1/go.mod" "github.com/ipfs/go-ds-badger v0.2.3/go.mod" - "github.com/ipfs/go-ds-badger v0.2.6" - "github.com/ipfs/go-ds-badger v0.2.6/go.mod" - "github.com/ipfs/go-ds-flatfs v0.4.5" - "github.com/ipfs/go-ds-flatfs v0.4.5/go.mod" + "github.com/ipfs/go-ds-badger v0.2.7/go.mod" + "github.com/ipfs/go-ds-badger v0.3.0" + "github.com/ipfs/go-ds-badger v0.3.0/go.mod" + "github.com/ipfs/go-ds-flatfs v0.5.1" + "github.com/ipfs/go-ds-flatfs v0.5.1/go.mod" "github.com/ipfs/go-ds-leveldb v0.0.1/go.mod" "github.com/ipfs/go-ds-leveldb v0.1.0/go.mod" "github.com/ipfs/go-ds-leveldb v0.4.1/go.mod" - "github.com/ipfs/go-ds-leveldb v0.4.2" "github.com/ipfs/go-ds-leveldb v0.4.2/go.mod" - "github.com/ipfs/go-ds-measure v0.1.0" - "github.com/ipfs/go-ds-measure v0.1.0/go.mod" - "github.com/ipfs/go-filestore v0.0.3" - "github.com/ipfs/go-filestore v0.0.3/go.mod" - "github.com/ipfs/go-fs-lock v0.0.6" - "github.com/ipfs/go-fs-lock v0.0.6/go.mod" - "github.com/ipfs/go-graphsync v0.8.0" - "github.com/ipfs/go-graphsync v0.8.0/go.mod" + "github.com/ipfs/go-ds-leveldb v0.5.0" + "github.com/ipfs/go-ds-leveldb v0.5.0/go.mod" + "github.com/ipfs/go-ds-measure v0.2.0" + "github.com/ipfs/go-ds-measure v0.2.0/go.mod" + "github.com/ipfs/go-fetcher v1.5.0/go.mod" + "github.com/ipfs/go-fetcher v1.6.1" + "github.com/ipfs/go-fetcher v1.6.1/go.mod" + "github.com/ipfs/go-filestore v0.1.0" + "github.com/ipfs/go-filestore v0.1.0/go.mod" + "github.com/ipfs/go-fs-lock v0.0.7" + "github.com/ipfs/go-fs-lock v0.0.7/go.mod" + "github.com/ipfs/go-graphsync v0.11.0" + "github.com/ipfs/go-graphsync v0.11.0/go.mod" "github.com/ipfs/go-ipfs-blockstore v0.0.1/go.mod" "github.com/ipfs/go-ipfs-blockstore v0.1.0/go.mod" "github.com/ipfs/go-ipfs-blockstore v0.1.4/go.mod" - "github.com/ipfs/go-ipfs-blockstore v0.1.6" "github.com/ipfs/go-ipfs-blockstore v0.1.6/go.mod" + "github.com/ipfs/go-ipfs-blockstore v0.2.1" + "github.com/ipfs/go-ipfs-blockstore v0.2.1/go.mod" "github.com/ipfs/go-ipfs-blocksutil v0.0.1" "github.com/ipfs/go-ipfs-blocksutil v0.0.1/go.mod" "github.com/ipfs/go-ipfs-chunker v0.0.1/go.mod" @@ -427,35 +483,39 @@ EGO_SUM=( "github.com/ipfs/go-ipfs-chunker v0.0.5/go.mod" "github.com/ipfs/go-ipfs-cmds v0.6.0" "github.com/ipfs/go-ipfs-cmds v0.6.0/go.mod" - "github.com/ipfs/go-ipfs-config v0.14.0" - "github.com/ipfs/go-ipfs-config v0.14.0/go.mod" + "github.com/ipfs/go-ipfs-config v0.18.0" + "github.com/ipfs/go-ipfs-config v0.18.0/go.mod" "github.com/ipfs/go-ipfs-delay v0.0.0-20181109222059-70721b86a9a8/go.mod" "github.com/ipfs/go-ipfs-delay v0.0.1" "github.com/ipfs/go-ipfs-delay v0.0.1/go.mod" "github.com/ipfs/go-ipfs-ds-help v0.0.1/go.mod" "github.com/ipfs/go-ipfs-ds-help v0.1.1" "github.com/ipfs/go-ipfs-ds-help v0.1.1/go.mod" - "github.com/ipfs/go-ipfs-exchange-interface v0.0.1" "github.com/ipfs/go-ipfs-exchange-interface v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-exchange-offline v0.0.1" + "github.com/ipfs/go-ipfs-exchange-interface v0.1.0" + "github.com/ipfs/go-ipfs-exchange-interface v0.1.0/go.mod" "github.com/ipfs/go-ipfs-exchange-offline v0.0.1/go.mod" + "github.com/ipfs/go-ipfs-exchange-offline v0.1.1" + "github.com/ipfs/go-ipfs-exchange-offline v0.1.1/go.mod" "github.com/ipfs/go-ipfs-files v0.0.3/go.mod" - "github.com/ipfs/go-ipfs-files v0.0.8" "github.com/ipfs/go-ipfs-files v0.0.8/go.mod" + "github.com/ipfs/go-ipfs-files v0.0.9" + "github.com/ipfs/go-ipfs-files v0.0.9/go.mod" "github.com/ipfs/go-ipfs-keystore v0.0.2" "github.com/ipfs/go-ipfs-keystore v0.0.2/go.mod" - "github.com/ipfs/go-ipfs-pinner v0.1.1" - "github.com/ipfs/go-ipfs-pinner v0.1.1/go.mod" + "github.com/ipfs/go-ipfs-pinner v0.2.1" + "github.com/ipfs/go-ipfs-pinner v0.2.1/go.mod" "github.com/ipfs/go-ipfs-posinfo v0.0.1" "github.com/ipfs/go-ipfs-posinfo v0.0.1/go.mod" "github.com/ipfs/go-ipfs-pq v0.0.1/go.mod" "github.com/ipfs/go-ipfs-pq v0.0.2" "github.com/ipfs/go-ipfs-pq v0.0.2/go.mod" - "github.com/ipfs/go-ipfs-provider v0.5.1" - "github.com/ipfs/go-ipfs-provider v0.5.1/go.mod" + "github.com/ipfs/go-ipfs-provider v0.7.1" + "github.com/ipfs/go-ipfs-provider v0.7.1/go.mod" "github.com/ipfs/go-ipfs-routing v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-routing v0.1.0" "github.com/ipfs/go-ipfs-routing v0.1.0/go.mod" + "github.com/ipfs/go-ipfs-routing v0.2.1" + "github.com/ipfs/go-ipfs-routing v0.2.1/go.mod" "github.com/ipfs/go-ipfs-util v0.0.1/go.mod" "github.com/ipfs/go-ipfs-util v0.0.2" "github.com/ipfs/go-ipfs-util v0.0.2/go.mod" @@ -468,67 +528,77 @@ EGO_SUM=( "github.com/ipfs/go-ipld-format v0.0.2/go.mod" "github.com/ipfs/go-ipld-format v0.2.0" "github.com/ipfs/go-ipld-format v0.2.0/go.mod" - "github.com/ipfs/go-ipld-git v0.0.4" - "github.com/ipfs/go-ipld-git v0.0.4/go.mod" - "github.com/ipfs/go-ipns v0.0.2/go.mod" - "github.com/ipfs/go-ipns v0.1.0" - "github.com/ipfs/go-ipns v0.1.0/go.mod" + "github.com/ipfs/go-ipld-git v0.1.1" + "github.com/ipfs/go-ipld-git v0.1.1/go.mod" + "github.com/ipfs/go-ipld-legacy v0.1.0" + "github.com/ipfs/go-ipld-legacy v0.1.0/go.mod" + "github.com/ipfs/go-ipns v0.1.2" + "github.com/ipfs/go-ipns v0.1.2/go.mod" "github.com/ipfs/go-log v0.0.1/go.mod" - "github.com/ipfs/go-log v1.0.1/go.mod" "github.com/ipfs/go-log v1.0.2/go.mod" "github.com/ipfs/go-log v1.0.3/go.mod" "github.com/ipfs/go-log v1.0.4/go.mod" "github.com/ipfs/go-log v1.0.5" "github.com/ipfs/go-log v1.0.5/go.mod" - "github.com/ipfs/go-log/v2 v2.0.1/go.mod" "github.com/ipfs/go-log/v2 v2.0.2/go.mod" "github.com/ipfs/go-log/v2 v2.0.3/go.mod" "github.com/ipfs/go-log/v2 v2.0.5/go.mod" "github.com/ipfs/go-log/v2 v2.1.1/go.mod" - "github.com/ipfs/go-log/v2 v2.1.3" "github.com/ipfs/go-log/v2 v2.1.3/go.mod" + "github.com/ipfs/go-log/v2 v2.3.0" + "github.com/ipfs/go-log/v2 v2.3.0/go.mod" "github.com/ipfs/go-merkledag v0.0.6/go.mod" - "github.com/ipfs/go-merkledag v0.1.0/go.mod" "github.com/ipfs/go-merkledag v0.2.3/go.mod" - "github.com/ipfs/go-merkledag v0.3.0/go.mod" - "github.com/ipfs/go-merkledag v0.3.1/go.mod" - "github.com/ipfs/go-merkledag v0.3.2" "github.com/ipfs/go-merkledag v0.3.2/go.mod" + "github.com/ipfs/go-merkledag v0.4.0/go.mod" + "github.com/ipfs/go-merkledag v0.5.1" + "github.com/ipfs/go-merkledag v0.5.1/go.mod" "github.com/ipfs/go-metrics-interface v0.0.1" "github.com/ipfs/go-metrics-interface v0.0.1/go.mod" "github.com/ipfs/go-metrics-prometheus v0.0.2" "github.com/ipfs/go-metrics-prometheus v0.0.2/go.mod" - "github.com/ipfs/go-mfs v0.1.2" - "github.com/ipfs/go-mfs v0.1.2/go.mod" - "github.com/ipfs/go-namesys v0.3.0" - "github.com/ipfs/go-namesys v0.3.0/go.mod" + "github.com/ipfs/go-mfs v0.2.1" + "github.com/ipfs/go-mfs v0.2.1/go.mod" + "github.com/ipfs/go-namesys v0.4.0" + "github.com/ipfs/go-namesys v0.4.0/go.mod" "github.com/ipfs/go-path v0.0.7/go.mod" - "github.com/ipfs/go-path v0.0.9" "github.com/ipfs/go-path v0.0.9/go.mod" + "github.com/ipfs/go-path v0.1.1/go.mod" + "github.com/ipfs/go-path v0.2.1" + "github.com/ipfs/go-path v0.2.1/go.mod" "github.com/ipfs/go-peertaskqueue v0.0.4/go.mod" "github.com/ipfs/go-peertaskqueue v0.1.0/go.mod" "github.com/ipfs/go-peertaskqueue v0.1.1/go.mod" - "github.com/ipfs/go-peertaskqueue v0.2.0" "github.com/ipfs/go-peertaskqueue v0.2.0/go.mod" + "github.com/ipfs/go-peertaskqueue v0.7.0" + "github.com/ipfs/go-peertaskqueue v0.7.0/go.mod" "github.com/ipfs/go-pinning-service-http-client v0.1.0" "github.com/ipfs/go-pinning-service-http-client v0.1.0/go.mod" - "github.com/ipfs/go-unixfs v0.1.0/go.mod" "github.com/ipfs/go-unixfs v0.2.4/go.mod" - "github.com/ipfs/go-unixfs v0.2.5" - "github.com/ipfs/go-unixfs v0.2.5/go.mod" + "github.com/ipfs/go-unixfs v0.3.1" + "github.com/ipfs/go-unixfs v0.3.1/go.mod" + "github.com/ipfs/go-unixfsnode v1.1.2/go.mod" + "github.com/ipfs/go-unixfsnode v1.1.3" + "github.com/ipfs/go-unixfsnode v1.1.3/go.mod" "github.com/ipfs/go-verifcid v0.0.1" "github.com/ipfs/go-verifcid v0.0.1/go.mod" - "github.com/ipfs/interface-go-ipfs-core v0.4.0" "github.com/ipfs/interface-go-ipfs-core v0.4.0/go.mod" - "github.com/ipfs/tar-utils v0.0.1" - "github.com/ipfs/tar-utils v0.0.1/go.mod" - "github.com/ipld/go-car v0.3.1" - "github.com/ipld/go-car v0.3.1/go.mod" - "github.com/ipld/go-codec-dagpb v1.2.0" + "github.com/ipfs/interface-go-ipfs-core v0.5.2" + "github.com/ipfs/interface-go-ipfs-core v0.5.2/go.mod" + "github.com/ipfs/tar-utils v0.0.2" + "github.com/ipfs/tar-utils v0.0.2/go.mod" + "github.com/ipld/go-car v0.3.2" + "github.com/ipld/go-car v0.3.2/go.mod" "github.com/ipld/go-codec-dagpb v1.2.0/go.mod" + "github.com/ipld/go-codec-dagpb v1.3.0" + "github.com/ipld/go-codec-dagpb v1.3.0/go.mod" "github.com/ipld/go-ipld-prime v0.9.0/go.mod" - "github.com/ipld/go-ipld-prime v0.9.1-0.20210324083106-dc342a9917db" "github.com/ipld/go-ipld-prime v0.9.1-0.20210324083106-dc342a9917db/go.mod" + "github.com/ipld/go-ipld-prime v0.11.0/go.mod" + "github.com/ipld/go-ipld-prime v0.12.3/go.mod" + "github.com/ipld/go-ipld-prime v0.14.1/go.mod" + "github.com/ipld/go-ipld-prime v0.14.2" + "github.com/ipld/go-ipld-prime v0.14.2/go.mod" "github.com/jackpal/gateway v1.0.5/go.mod" "github.com/jackpal/go-nat-pmp v1.0.1/go.mod" "github.com/jackpal/go-nat-pmp v1.0.2" @@ -555,8 +625,8 @@ EGO_SUM=( "github.com/json-iterator/go v1.1.6/go.mod" "github.com/json-iterator/go v1.1.7/go.mod" "github.com/json-iterator/go v1.1.8/go.mod" - "github.com/json-iterator/go v1.1.9/go.mod" "github.com/json-iterator/go v1.1.10/go.mod" + "github.com/json-iterator/go v1.1.11/go.mod" "github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod" "github.com/jstemmer/go-junit-report v0.9.1/go.mod" "github.com/jtolds/gls v4.2.1+incompatible/go.mod" @@ -573,26 +643,31 @@ EGO_SUM=( "github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod" "github.com/klauspost/compress v1.11.7" "github.com/klauspost/compress v1.11.7/go.mod" - "github.com/klauspost/cpuid/v2 v2.0.4" "github.com/klauspost/cpuid/v2 v2.0.4/go.mod" + "github.com/klauspost/cpuid/v2 v2.0.6/go.mod" + "github.com/klauspost/cpuid/v2 v2.0.9" + "github.com/klauspost/cpuid/v2 v2.0.9/go.mod" "github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod" - "github.com/konsorten/go-windows-terminal-sequences v1.0.3" "github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod" "github.com/koron/go-ssdp v0.0.0-20180514024734-4a0ed625a78b/go.mod" - "github.com/koron/go-ssdp v0.0.0-20191105050749-2e1c40ed0b5d" "github.com/koron/go-ssdp v0.0.0-20191105050749-2e1c40ed0b5d/go.mod" + "github.com/koron/go-ssdp v0.0.2" + "github.com/koron/go-ssdp v0.0.2/go.mod" "github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod" "github.com/kr/pretty v0.1.0/go.mod" "github.com/kr/pretty v0.2.0/go.mod" - "github.com/kr/pretty v0.2.1" "github.com/kr/pretty v0.2.1/go.mod" + "github.com/kr/pretty v0.3.0" + "github.com/kr/pretty v0.3.0/go.mod" "github.com/kr/pty v1.1.1/go.mod" "github.com/kr/pty v1.1.3/go.mod" - "github.com/kr/text v0.1.0" "github.com/kr/text v0.1.0/go.mod" + "github.com/kr/text v0.2.0" + "github.com/kr/text v0.2.0/go.mod" "github.com/libp2p/go-addr-util v0.0.1/go.mod" - "github.com/libp2p/go-addr-util v0.0.2" "github.com/libp2p/go-addr-util v0.0.2/go.mod" + "github.com/libp2p/go-addr-util v0.1.0" + "github.com/libp2p/go-addr-util v0.1.0/go.mod" "github.com/libp2p/go-buffer-pool v0.0.1/go.mod" "github.com/libp2p/go-buffer-pool v0.0.2" "github.com/libp2p/go-buffer-pool v0.0.2/go.mod" @@ -602,10 +677,9 @@ EGO_SUM=( "github.com/libp2p/go-conn-security-multistream v0.0.2/go.mod" "github.com/libp2p/go-conn-security-multistream v0.1.0/go.mod" "github.com/libp2p/go-conn-security-multistream v0.2.0/go.mod" - "github.com/libp2p/go-conn-security-multistream v0.2.1" - "github.com/libp2p/go-conn-security-multistream v0.2.1" - "github.com/libp2p/go-conn-security-multistream v0.2.1/go.mod" "github.com/libp2p/go-conn-security-multistream v0.2.1/go.mod" + "github.com/libp2p/go-conn-security-multistream v0.3.0" + "github.com/libp2p/go-conn-security-multistream v0.3.0/go.mod" "github.com/libp2p/go-doh-resolver v0.3.1" "github.com/libp2p/go-doh-resolver v0.3.1/go.mod" "github.com/libp2p/go-eventbus v0.1.0/go.mod" @@ -624,10 +698,14 @@ EGO_SUM=( "github.com/libp2p/go-libp2p v0.8.1/go.mod" "github.com/libp2p/go-libp2p v0.12.0/go.mod" "github.com/libp2p/go-libp2p v0.13.0/go.mod" - "github.com/libp2p/go-libp2p v0.14.3" + "github.com/libp2p/go-libp2p v0.14.0/go.mod" "github.com/libp2p/go-libp2p v0.14.3/go.mod" - "github.com/libp2p/go-libp2p-asn-util v0.0.0-20200825225859-85005c6cf052" + "github.com/libp2p/go-libp2p v0.14.4/go.mod" + "github.com/libp2p/go-libp2p v0.16.0" + "github.com/libp2p/go-libp2p v0.16.0/go.mod" "github.com/libp2p/go-libp2p-asn-util v0.0.0-20200825225859-85005c6cf052/go.mod" + "github.com/libp2p/go-libp2p-asn-util v0.1.0" + "github.com/libp2p/go-libp2p-asn-util v0.1.0/go.mod" "github.com/libp2p/go-libp2p-autonat v0.0.6/go.mod" "github.com/libp2p/go-libp2p-autonat v0.1.0/go.mod" "github.com/libp2p/go-libp2p-autonat v0.1.1/go.mod" @@ -635,8 +713,9 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-autonat v0.2.1/go.mod" "github.com/libp2p/go-libp2p-autonat v0.2.2/go.mod" "github.com/libp2p/go-libp2p-autonat v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-autonat v0.4.2" "github.com/libp2p/go-libp2p-autonat v0.4.2/go.mod" + "github.com/libp2p/go-libp2p-autonat v0.6.0" + "github.com/libp2p/go-libp2p-autonat v0.6.0/go.mod" "github.com/libp2p/go-libp2p-blankhost v0.0.1/go.mod" "github.com/libp2p/go-libp2p-blankhost v0.1.1/go.mod" "github.com/libp2p/go-libp2p-blankhost v0.1.4/go.mod" @@ -674,8 +753,12 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-core v0.8.0/go.mod" "github.com/libp2p/go-libp2p-core v0.8.1/go.mod" "github.com/libp2p/go-libp2p-core v0.8.2/go.mod" - "github.com/libp2p/go-libp2p-core v0.8.5" "github.com/libp2p/go-libp2p-core v0.8.5/go.mod" + "github.com/libp2p/go-libp2p-core v0.8.6/go.mod" + "github.com/libp2p/go-libp2p-core v0.9.0/go.mod" + "github.com/libp2p/go-libp2p-core v0.10.0/go.mod" + "github.com/libp2p/go-libp2p-core v0.11.0" + "github.com/libp2p/go-libp2p-core v0.11.0/go.mod" "github.com/libp2p/go-libp2p-crypto v0.0.1/go.mod" "github.com/libp2p/go-libp2p-crypto v0.0.2/go.mod" "github.com/libp2p/go-libp2p-crypto v0.1.0/go.mod" @@ -684,21 +767,20 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-discovery v0.2.0/go.mod" "github.com/libp2p/go-libp2p-discovery v0.3.0/go.mod" "github.com/libp2p/go-libp2p-discovery v0.5.0/go.mod" - "github.com/libp2p/go-libp2p-discovery v0.5.1" - "github.com/libp2p/go-libp2p-discovery v0.5.1/go.mod" + "github.com/libp2p/go-libp2p-discovery v0.6.0" + "github.com/libp2p/go-libp2p-discovery v0.6.0/go.mod" "github.com/libp2p/go-libp2p-gostream v0.3.0" "github.com/libp2p/go-libp2p-gostream v0.3.0/go.mod" "github.com/libp2p/go-libp2p-host v0.0.1/go.mod" "github.com/libp2p/go-libp2p-host v0.0.3/go.mod" - "github.com/libp2p/go-libp2p-http v0.2.0" - "github.com/libp2p/go-libp2p-http v0.2.0/go.mod" + "github.com/libp2p/go-libp2p-http v0.2.1" + "github.com/libp2p/go-libp2p-http v0.2.1/go.mod" "github.com/libp2p/go-libp2p-interface-connmgr v0.0.1/go.mod" "github.com/libp2p/go-libp2p-interface-connmgr v0.0.4/go.mod" "github.com/libp2p/go-libp2p-interface-connmgr v0.0.5/go.mod" "github.com/libp2p/go-libp2p-interface-pnet v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-kad-dht v0.11.1/go.mod" - "github.com/libp2p/go-libp2p-kad-dht v0.12.2" - "github.com/libp2p/go-libp2p-kad-dht v0.12.2/go.mod" + "github.com/libp2p/go-libp2p-kad-dht v0.15.0" + "github.com/libp2p/go-libp2p-kad-dht v0.15.0/go.mod" "github.com/libp2p/go-libp2p-kbucket v0.3.1/go.mod" "github.com/libp2p/go-libp2p-kbucket v0.4.7" "github.com/libp2p/go-libp2p-kbucket v0.4.7/go.mod" @@ -717,16 +799,18 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-mplex v0.4.1/go.mod" "github.com/libp2p/go-libp2p-nat v0.0.4/go.mod" "github.com/libp2p/go-libp2p-nat v0.0.5/go.mod" - "github.com/libp2p/go-libp2p-nat v0.0.6" "github.com/libp2p/go-libp2p-nat v0.0.6/go.mod" + "github.com/libp2p/go-libp2p-nat v0.1.0" + "github.com/libp2p/go-libp2p-nat v0.1.0/go.mod" "github.com/libp2p/go-libp2p-net v0.0.1/go.mod" "github.com/libp2p/go-libp2p-net v0.0.2/go.mod" "github.com/libp2p/go-libp2p-netutil v0.0.1/go.mod" "github.com/libp2p/go-libp2p-netutil v0.1.0" "github.com/libp2p/go-libp2p-netutil v0.1.0/go.mod" "github.com/libp2p/go-libp2p-noise v0.1.1/go.mod" - "github.com/libp2p/go-libp2p-noise v0.2.0" "github.com/libp2p/go-libp2p-noise v0.2.0/go.mod" + "github.com/libp2p/go-libp2p-noise v0.3.0" + "github.com/libp2p/go-libp2p-noise v0.3.0/go.mod" "github.com/libp2p/go-libp2p-peer v0.0.1/go.mod" "github.com/libp2p/go-libp2p-peer v0.1.1/go.mod" "github.com/libp2p/go-libp2p-peer v0.2.0/go.mod" @@ -739,23 +823,25 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-peerstore v0.2.1/go.mod" "github.com/libp2p/go-libp2p-peerstore v0.2.2/go.mod" "github.com/libp2p/go-libp2p-peerstore v0.2.6/go.mod" - "github.com/libp2p/go-libp2p-peerstore v0.2.7" "github.com/libp2p/go-libp2p-peerstore v0.2.7/go.mod" + "github.com/libp2p/go-libp2p-peerstore v0.2.8/go.mod" + "github.com/libp2p/go-libp2p-peerstore v0.4.0" + "github.com/libp2p/go-libp2p-peerstore v0.4.0/go.mod" "github.com/libp2p/go-libp2p-pnet v0.2.0" "github.com/libp2p/go-libp2p-pnet v0.2.0/go.mod" "github.com/libp2p/go-libp2p-protocol v0.0.1/go.mod" "github.com/libp2p/go-libp2p-protocol v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-pubsub v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-pubsub v0.4.2" - "github.com/libp2p/go-libp2p-pubsub v0.4.2/go.mod" - "github.com/libp2p/go-libp2p-pubsub-router v0.4.0" - "github.com/libp2p/go-libp2p-pubsub-router v0.4.0/go.mod" + "github.com/libp2p/go-libp2p-pubsub v0.6.0" + "github.com/libp2p/go-libp2p-pubsub v0.6.0/go.mod" + "github.com/libp2p/go-libp2p-pubsub-router v0.5.0" + "github.com/libp2p/go-libp2p-pubsub-router v0.5.0/go.mod" "github.com/libp2p/go-libp2p-quic-transport v0.10.0/go.mod" - "github.com/libp2p/go-libp2p-quic-transport v0.11.2" "github.com/libp2p/go-libp2p-quic-transport v0.11.2/go.mod" + "github.com/libp2p/go-libp2p-quic-transport v0.13.0/go.mod" + "github.com/libp2p/go-libp2p-quic-transport v0.15.0" + "github.com/libp2p/go-libp2p-quic-transport v0.15.0/go.mod" "github.com/libp2p/go-libp2p-record v0.0.1/go.mod" "github.com/libp2p/go-libp2p-record v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-record v0.1.1/go.mod" "github.com/libp2p/go-libp2p-record v0.1.2/go.mod" "github.com/libp2p/go-libp2p-record v0.1.3" "github.com/libp2p/go-libp2p-record v0.1.3/go.mod" @@ -775,8 +861,10 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-swarm v0.3.0/go.mod" "github.com/libp2p/go-libp2p-swarm v0.3.1/go.mod" "github.com/libp2p/go-libp2p-swarm v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-swarm v0.5.0" "github.com/libp2p/go-libp2p-swarm v0.5.0/go.mod" + "github.com/libp2p/go-libp2p-swarm v0.5.3/go.mod" + "github.com/libp2p/go-libp2p-swarm v0.8.0" + "github.com/libp2p/go-libp2p-swarm v0.8.0/go.mod" "github.com/libp2p/go-libp2p-testing v0.0.1/go.mod" "github.com/libp2p/go-libp2p-testing v0.0.2/go.mod" "github.com/libp2p/go-libp2p-testing v0.0.3/go.mod" @@ -785,10 +873,14 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-testing v0.1.1/go.mod" "github.com/libp2p/go-libp2p-testing v0.1.2-0.20200422005655-8775583591d8/go.mod" "github.com/libp2p/go-libp2p-testing v0.3.0/go.mod" - "github.com/libp2p/go-libp2p-testing v0.4.0" "github.com/libp2p/go-libp2p-testing v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-tls v0.1.3" + "github.com/libp2p/go-libp2p-testing v0.4.2/go.mod" + "github.com/libp2p/go-libp2p-testing v0.5.0" + "github.com/libp2p/go-libp2p-testing v0.5.0/go.mod" "github.com/libp2p/go-libp2p-tls v0.1.3/go.mod" + "github.com/libp2p/go-libp2p-tls v0.3.0/go.mod" + "github.com/libp2p/go-libp2p-tls v0.3.1" + "github.com/libp2p/go-libp2p-tls v0.3.1/go.mod" "github.com/libp2p/go-libp2p-transport v0.0.1/go.mod" "github.com/libp2p/go-libp2p-transport v0.0.5/go.mod" "github.com/libp2p/go-libp2p-transport-upgrader v0.0.4/go.mod" @@ -796,10 +888,13 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-transport-upgrader v0.2.0/go.mod" "github.com/libp2p/go-libp2p-transport-upgrader v0.3.0/go.mod" "github.com/libp2p/go-libp2p-transport-upgrader v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-transport-upgrader v0.4.2" "github.com/libp2p/go-libp2p-transport-upgrader v0.4.2/go.mod" - "github.com/libp2p/go-libp2p-xor v0.0.0-20200501025846-71e284145d58" - "github.com/libp2p/go-libp2p-xor v0.0.0-20200501025846-71e284145d58/go.mod" + "github.com/libp2p/go-libp2p-transport-upgrader v0.4.3/go.mod" + "github.com/libp2p/go-libp2p-transport-upgrader v0.4.6/go.mod" + "github.com/libp2p/go-libp2p-transport-upgrader v0.5.0" + "github.com/libp2p/go-libp2p-transport-upgrader v0.5.0/go.mod" + "github.com/libp2p/go-libp2p-xor v0.0.0-20210714161855-5c005aca55db" + "github.com/libp2p/go-libp2p-xor v0.0.0-20210714161855-5c005aca55db/go.mod" "github.com/libp2p/go-libp2p-yamux v0.1.2/go.mod" "github.com/libp2p/go-libp2p-yamux v0.1.3/go.mod" "github.com/libp2p/go-libp2p-yamux v0.2.0/go.mod" @@ -811,8 +906,10 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-yamux v0.4.0/go.mod" "github.com/libp2p/go-libp2p-yamux v0.5.0/go.mod" "github.com/libp2p/go-libp2p-yamux v0.5.1/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.5.4" + "github.com/libp2p/go-libp2p-yamux v0.5.3/go.mod" "github.com/libp2p/go-libp2p-yamux v0.5.4/go.mod" + "github.com/libp2p/go-libp2p-yamux v0.6.0" + "github.com/libp2p/go-libp2p-yamux v0.6.0/go.mod" "github.com/libp2p/go-maddr-filter v0.0.1/go.mod" "github.com/libp2p/go-maddr-filter v0.0.4/go.mod" "github.com/libp2p/go-maddr-filter v0.0.5/go.mod" @@ -829,12 +926,14 @@ EGO_SUM=( "github.com/libp2p/go-msgio v0.0.2/go.mod" "github.com/libp2p/go-msgio v0.0.3/go.mod" "github.com/libp2p/go-msgio v0.0.4/go.mod" - "github.com/libp2p/go-msgio v0.0.6" "github.com/libp2p/go-msgio v0.0.6/go.mod" + "github.com/libp2p/go-msgio v0.1.0" + "github.com/libp2p/go-msgio v0.1.0/go.mod" "github.com/libp2p/go-nat v0.0.3/go.mod" "github.com/libp2p/go-nat v0.0.4/go.mod" - "github.com/libp2p/go-nat v0.0.5" "github.com/libp2p/go-nat v0.0.5/go.mod" + "github.com/libp2p/go-nat v0.1.0" + "github.com/libp2p/go-nat v0.1.0/go.mod" "github.com/libp2p/go-netroute v0.1.2/go.mod" "github.com/libp2p/go-netroute v0.1.3/go.mod" "github.com/libp2p/go-netroute v0.1.5/go.mod" @@ -847,18 +946,21 @@ EGO_SUM=( "github.com/libp2p/go-openssl v0.0.7" "github.com/libp2p/go-openssl v0.0.7/go.mod" "github.com/libp2p/go-reuseport v0.0.1/go.mod" - "github.com/libp2p/go-reuseport v0.0.2" "github.com/libp2p/go-reuseport v0.0.2/go.mod" + "github.com/libp2p/go-reuseport v0.1.0" + "github.com/libp2p/go-reuseport v0.1.0/go.mod" "github.com/libp2p/go-reuseport-transport v0.0.2/go.mod" "github.com/libp2p/go-reuseport-transport v0.0.3/go.mod" - "github.com/libp2p/go-reuseport-transport v0.0.4" "github.com/libp2p/go-reuseport-transport v0.0.4/go.mod" + "github.com/libp2p/go-reuseport-transport v0.0.5/go.mod" + "github.com/libp2p/go-reuseport-transport v0.1.0" + "github.com/libp2p/go-reuseport-transport v0.1.0/go.mod" "github.com/libp2p/go-sockaddr v0.0.2/go.mod" "github.com/libp2p/go-sockaddr v0.1.0/go.mod" "github.com/libp2p/go-sockaddr v0.1.1" "github.com/libp2p/go-sockaddr v0.1.1/go.mod" - "github.com/libp2p/go-socket-activation v0.0.2" - "github.com/libp2p/go-socket-activation v0.0.2/go.mod" + "github.com/libp2p/go-socket-activation v0.1.0" + "github.com/libp2p/go-socket-activation v0.1.0/go.mod" "github.com/libp2p/go-stream-muxer v0.0.1/go.mod" "github.com/libp2p/go-stream-muxer v0.1.0/go.mod" "github.com/libp2p/go-stream-muxer-multistream v0.1.1/go.mod" @@ -871,8 +973,10 @@ EGO_SUM=( "github.com/libp2p/go-tcp-transport v0.2.0/go.mod" "github.com/libp2p/go-tcp-transport v0.2.1/go.mod" "github.com/libp2p/go-tcp-transport v0.2.3/go.mod" - "github.com/libp2p/go-tcp-transport v0.2.4" "github.com/libp2p/go-tcp-transport v0.2.4/go.mod" + "github.com/libp2p/go-tcp-transport v0.2.7/go.mod" + "github.com/libp2p/go-tcp-transport v0.4.0" + "github.com/libp2p/go-tcp-transport v0.4.0/go.mod" "github.com/libp2p/go-testutil v0.0.1/go.mod" "github.com/libp2p/go-testutil v0.1.0/go.mod" "github.com/libp2p/go-ws-transport v0.0.5/go.mod" @@ -880,8 +984,9 @@ EGO_SUM=( "github.com/libp2p/go-ws-transport v0.2.0/go.mod" "github.com/libp2p/go-ws-transport v0.3.0/go.mod" "github.com/libp2p/go-ws-transport v0.3.1/go.mod" - "github.com/libp2p/go-ws-transport v0.4.0" "github.com/libp2p/go-ws-transport v0.4.0/go.mod" + "github.com/libp2p/go-ws-transport v0.5.0" + "github.com/libp2p/go-ws-transport v0.5.0/go.mod" "github.com/libp2p/go-yamux v1.2.1/go.mod" "github.com/libp2p/go-yamux v1.2.2/go.mod" "github.com/libp2p/go-yamux v1.2.3/go.mod" @@ -893,13 +998,19 @@ EGO_SUM=( "github.com/libp2p/go-yamux v1.4.1" "github.com/libp2p/go-yamux v1.4.1/go.mod" "github.com/libp2p/go-yamux/v2 v2.0.0/go.mod" - "github.com/libp2p/go-yamux/v2 v2.2.0" + "github.com/libp2p/go-yamux/v2 v2.1.1/go.mod" "github.com/libp2p/go-yamux/v2 v2.2.0/go.mod" + "github.com/libp2p/go-yamux/v2 v2.3.0" + "github.com/libp2p/go-yamux/v2 v2.3.0/go.mod" + "github.com/libp2p/zeroconf/v2 v2.1.1" + "github.com/libp2p/zeroconf/v2 v2.1.1/go.mod" "github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod" "github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod" "github.com/lucas-clemente/quic-go v0.19.3/go.mod" - "github.com/lucas-clemente/quic-go v0.21.2" "github.com/lucas-clemente/quic-go v0.21.2/go.mod" + "github.com/lucas-clemente/quic-go v0.23.0/go.mod" + "github.com/lucas-clemente/quic-go v0.24.0" + "github.com/lucas-clemente/quic-go v0.24.0/go.mod" "github.com/lunixbochs/vtclean v1.0.0/go.mod" "github.com/lyft/protoc-gen-validate v0.0.13/go.mod" "github.com/magiconair/properties v1.8.0/go.mod" @@ -909,12 +1020,12 @@ EGO_SUM=( "github.com/marten-seemann/qtls v0.10.0/go.mod" "github.com/marten-seemann/qtls-go1-15 v0.1.1/go.mod" "github.com/marten-seemann/qtls-go1-15 v0.1.4/go.mod" - "github.com/marten-seemann/qtls-go1-15 v0.1.5" "github.com/marten-seemann/qtls-go1-15 v0.1.5/go.mod" "github.com/marten-seemann/qtls-go1-16 v0.1.4" "github.com/marten-seemann/qtls-go1-16 v0.1.4/go.mod" - "github.com/marten-seemann/qtls-go1-17 v0.1.0-rc.1" "github.com/marten-seemann/qtls-go1-17 v0.1.0-rc.1/go.mod" + "github.com/marten-seemann/qtls-go1-17 v0.1.0" + "github.com/marten-seemann/qtls-go1-17 v0.1.0/go.mod" "github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd" "github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd/go.mod" "github.com/mattn/go-colorable v0.0.9/go.mod" @@ -926,8 +1037,9 @@ EGO_SUM=( "github.com/mattn/go-isatty v0.0.4/go.mod" "github.com/mattn/go-isatty v0.0.5/go.mod" "github.com/mattn/go-isatty v0.0.8/go.mod" - "github.com/mattn/go-isatty v0.0.11" "github.com/mattn/go-isatty v0.0.11/go.mod" + "github.com/mattn/go-isatty v0.0.13" + "github.com/mattn/go-isatty v0.0.13/go.mod" "github.com/mattn/go-runewidth v0.0.2/go.mod" "github.com/mattn/go-runewidth v0.0.4" "github.com/mattn/go-runewidth v0.0.4/go.mod" @@ -940,8 +1052,9 @@ EGO_SUM=( "github.com/miekg/dns v1.1.12/go.mod" "github.com/miekg/dns v1.1.28/go.mod" "github.com/miekg/dns v1.1.31/go.mod" - "github.com/miekg/dns v1.1.41" "github.com/miekg/dns v1.1.41/go.mod" + "github.com/miekg/dns v1.1.43" + "github.com/miekg/dns v1.1.43/go.mod" "github.com/mikioh/tcp v0.0.0-20190314235350-803a9b46060c" "github.com/mikioh/tcp v0.0.0-20190314235350-803a9b46060c/go.mod" "github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b" @@ -990,15 +1103,15 @@ EGO_SUM=( "github.com/multiformats/go-multiaddr v0.2.2/go.mod" "github.com/multiformats/go-multiaddr v0.3.0/go.mod" "github.com/multiformats/go-multiaddr v0.3.1/go.mod" - "github.com/multiformats/go-multiaddr v0.3.3" "github.com/multiformats/go-multiaddr v0.3.3/go.mod" + "github.com/multiformats/go-multiaddr v0.4.0/go.mod" + "github.com/multiformats/go-multiaddr v0.4.1" + "github.com/multiformats/go-multiaddr v0.4.1/go.mod" "github.com/multiformats/go-multiaddr-dns v0.0.1/go.mod" "github.com/multiformats/go-multiaddr-dns v0.0.2/go.mod" "github.com/multiformats/go-multiaddr-dns v0.2.0/go.mod" "github.com/multiformats/go-multiaddr-dns v0.3.0/go.mod" "github.com/multiformats/go-multiaddr-dns v0.3.1" - "github.com/multiformats/go-multiaddr-dns v0.3.1" - "github.com/multiformats/go-multiaddr-dns v0.3.1/go.mod" "github.com/multiformats/go-multiaddr-dns v0.3.1/go.mod" "github.com/multiformats/go-multiaddr-fmt v0.0.1/go.mod" "github.com/multiformats/go-multiaddr-fmt v0.1.0" @@ -1010,13 +1123,13 @@ EGO_SUM=( "github.com/multiformats/go-multiaddr-net v0.1.3/go.mod" "github.com/multiformats/go-multiaddr-net v0.1.4/go.mod" "github.com/multiformats/go-multiaddr-net v0.1.5/go.mod" - "github.com/multiformats/go-multiaddr-net v0.2.0" "github.com/multiformats/go-multiaddr-net v0.2.0/go.mod" "github.com/multiformats/go-multibase v0.0.1/go.mod" "github.com/multiformats/go-multibase v0.0.3" "github.com/multiformats/go-multibase v0.0.3/go.mod" - "github.com/multiformats/go-multicodec v0.2.0" "github.com/multiformats/go-multicodec v0.2.0/go.mod" + "github.com/multiformats/go-multicodec v0.3.0" + "github.com/multiformats/go-multicodec v0.3.0/go.mod" "github.com/multiformats/go-multihash v0.0.1/go.mod" "github.com/multiformats/go-multihash v0.0.5/go.mod" "github.com/multiformats/go-multihash v0.0.8/go.mod" @@ -1024,15 +1137,16 @@ EGO_SUM=( "github.com/multiformats/go-multihash v0.0.10/go.mod" "github.com/multiformats/go-multihash v0.0.13/go.mod" "github.com/multiformats/go-multihash v0.0.14/go.mod" - "github.com/multiformats/go-multihash v0.0.15" "github.com/multiformats/go-multihash v0.0.15/go.mod" + "github.com/multiformats/go-multihash v0.0.16/go.mod" + "github.com/multiformats/go-multihash v0.1.0" + "github.com/multiformats/go-multihash v0.1.0/go.mod" "github.com/multiformats/go-multistream v0.0.1/go.mod" "github.com/multiformats/go-multistream v0.0.4/go.mod" "github.com/multiformats/go-multistream v0.1.0/go.mod" "github.com/multiformats/go-multistream v0.1.1/go.mod" "github.com/multiformats/go-multistream v0.2.0/go.mod" "github.com/multiformats/go-multistream v0.2.1/go.mod" - "github.com/multiformats/go-multistream v0.2.1/go.mod" "github.com/multiformats/go-multistream v0.2.2" "github.com/multiformats/go-multistream v0.2.2/go.mod" "github.com/multiformats/go-varint v0.0.1/go.mod" @@ -1112,11 +1226,11 @@ EGO_SUM=( "github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod" "github.com/prometheus/client_golang v1.0.0/go.mod" "github.com/prometheus/client_golang v1.3.0/go.mod" - "github.com/prometheus/client_golang v1.6.0/go.mod" "github.com/prometheus/client_golang v1.7.1/go.mod" "github.com/prometheus/client_golang v1.9.0/go.mod" - "github.com/prometheus/client_golang v1.10.0" "github.com/prometheus/client_golang v1.10.0/go.mod" + "github.com/prometheus/client_golang v1.11.0" + "github.com/prometheus/client_golang v1.11.0/go.mod" "github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod" "github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod" "github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod" @@ -1129,27 +1243,32 @@ EGO_SUM=( "github.com/prometheus/common v0.2.0/go.mod" "github.com/prometheus/common v0.4.1/go.mod" "github.com/prometheus/common v0.7.0/go.mod" - "github.com/prometheus/common v0.9.1/go.mod" "github.com/prometheus/common v0.10.0/go.mod" "github.com/prometheus/common v0.15.0/go.mod" - "github.com/prometheus/common v0.18.0" "github.com/prometheus/common v0.18.0/go.mod" + "github.com/prometheus/common v0.26.0/go.mod" + "github.com/prometheus/common v0.28.0/go.mod" + "github.com/prometheus/common v0.30.0" + "github.com/prometheus/common v0.30.0/go.mod" "github.com/prometheus/procfs v0.0.0-20180725123919-05ee40e3a273/go.mod" "github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod" "github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod" "github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod" "github.com/prometheus/procfs v0.0.2/go.mod" "github.com/prometheus/procfs v0.0.8/go.mod" - "github.com/prometheus/procfs v0.0.11/go.mod" "github.com/prometheus/procfs v0.1.3/go.mod" "github.com/prometheus/procfs v0.2.0/go.mod" - "github.com/prometheus/procfs v0.6.0" "github.com/prometheus/procfs v0.6.0/go.mod" - "github.com/prometheus/statsd_exporter v0.20.0" - "github.com/prometheus/statsd_exporter v0.20.0/go.mod" + "github.com/prometheus/procfs v0.7.3" + "github.com/prometheus/procfs v0.7.3/go.mod" + "github.com/prometheus/statsd_exporter v0.21.0" + "github.com/prometheus/statsd_exporter v0.21.0/go.mod" "github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod" "github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod" + "github.com/rogpeppe/fastuuid v1.2.0/go.mod" "github.com/rogpeppe/go-internal v1.3.0/go.mod" + "github.com/rogpeppe/go-internal v1.6.1" + "github.com/rogpeppe/go-internal v1.6.1/go.mod" "github.com/rs/cors v1.7.0" "github.com/rs/cors v1.7.0/go.mod" "github.com/russross/blackfriday v1.5.2/go.mod" @@ -1184,12 +1303,10 @@ EGO_SUM=( "github.com/shurcooL/webdavfs v0.0.0-20170829043945-18c3829fa133/go.mod" "github.com/sirupsen/logrus v1.2.0/go.mod" "github.com/sirupsen/logrus v1.4.2/go.mod" - "github.com/sirupsen/logrus v1.6.0" "github.com/sirupsen/logrus v1.6.0/go.mod" "github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod" + "github.com/smartystreets/assertions v1.0.0" "github.com/smartystreets/assertions v1.0.0/go.mod" - "github.com/smartystreets/assertions v1.0.1" - "github.com/smartystreets/assertions v1.0.1/go.mod" "github.com/smartystreets/goconvey v0.0.0-20190222223459-a17d461953aa/go.mod" "github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod" "github.com/smartystreets/goconvey v1.6.4" @@ -1241,6 +1358,9 @@ EGO_SUM=( "github.com/viant/assertly v0.4.8/go.mod" "github.com/viant/toolbox v0.24.0/go.mod" "github.com/wangjia184/sortedset v0.0.0-20160527075905-f5d03557ba30/go.mod" + "github.com/warpfork/go-testmark v0.3.0/go.mod" + "github.com/warpfork/go-testmark v0.9.0" + "github.com/warpfork/go-testmark v0.9.0/go.mod" "github.com/warpfork/go-wish v0.0.0-20180510122957-5ad1f5abf436/go.mod" "github.com/warpfork/go-wish v0.0.0-20190328234359-8b3e70f8e830/go.mod" "github.com/warpfork/go-wish v0.0.0-20200122115046-b9ea61034e4a" @@ -1271,7 +1391,9 @@ EGO_SUM=( "github.com/x-cray/logrus-prefixed-formatter v0.5.2/go.mod" "github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod" "github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod" + "github.com/yuin/goldmark v1.1.25/go.mod" "github.com/yuin/goldmark v1.1.27/go.mod" + "github.com/yuin/goldmark v1.1.32/go.mod" "github.com/yuin/goldmark v1.2.1/go.mod" "github.com/yuin/goldmark v1.3.5/go.mod" "go.etcd.io/bbolt v1.3.3/go.mod" @@ -1287,32 +1409,47 @@ EGO_SUM=( "go.opencensus.io v0.22.4/go.mod" "go.opencensus.io v0.23.0" "go.opencensus.io v0.23.0/go.mod" + "go.opentelemetry.io/otel v0.20.0" + "go.opentelemetry.io/otel v0.20.0/go.mod" + "go.opentelemetry.io/otel/metric v0.20.0" + "go.opentelemetry.io/otel/metric v0.20.0/go.mod" + "go.opentelemetry.io/otel/oteltest v0.20.0" + "go.opentelemetry.io/otel/oteltest v0.20.0/go.mod" + "go.opentelemetry.io/otel/trace v0.20.0" + "go.opentelemetry.io/otel/trace v0.20.0/go.mod" + "go.opentelemetry.io/proto/otlp v0.7.0/go.mod" "go.uber.org/atomic v1.3.2/go.mod" "go.uber.org/atomic v1.4.0/go.mod" "go.uber.org/atomic v1.5.0/go.mod" "go.uber.org/atomic v1.6.0/go.mod" - "go.uber.org/atomic v1.7.0" "go.uber.org/atomic v1.7.0/go.mod" - "go.uber.org/dig v1.10.0" - "go.uber.org/dig v1.10.0/go.mod" - "go.uber.org/fx v1.13.1" - "go.uber.org/fx v1.13.1/go.mod" - "go.uber.org/goleak v0.10.0/go.mod" - "go.uber.org/goleak v1.0.0" + "go.uber.org/atomic v1.9.0" + "go.uber.org/atomic v1.9.0/go.mod" + "go.uber.org/dig v1.12.0" + "go.uber.org/dig v1.12.0/go.mod" + "go.uber.org/fx v1.15.0" + "go.uber.org/fx v1.15.0/go.mod" "go.uber.org/goleak v1.0.0/go.mod" + "go.uber.org/goleak v1.1.10/go.mod" + "go.uber.org/goleak v1.1.11-0.20210813005559-691160354723/go.mod" + "go.uber.org/goleak v1.1.11" + "go.uber.org/goleak v1.1.11/go.mod" "go.uber.org/multierr v1.1.0/go.mod" "go.uber.org/multierr v1.3.0/go.mod" - "go.uber.org/multierr v1.4.0/go.mod" "go.uber.org/multierr v1.5.0/go.mod" - "go.uber.org/multierr v1.6.0" "go.uber.org/multierr v1.6.0/go.mod" + "go.uber.org/multierr v1.7.0" + "go.uber.org/multierr v1.7.0/go.mod" "go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod" "go.uber.org/zap v1.10.0/go.mod" "go.uber.org/zap v1.13.0/go.mod" "go.uber.org/zap v1.14.1/go.mod" "go.uber.org/zap v1.15.0/go.mod" - "go.uber.org/zap v1.16.0" "go.uber.org/zap v1.16.0/go.mod" + "go.uber.org/zap v1.18.1/go.mod" + "go.uber.org/zap v1.19.0/go.mod" + "go.uber.org/zap v1.19.1" + "go.uber.org/zap v1.19.1/go.mod" "go4.org v0.0.0-20180809161055-417644f6feb5/go.mod" "go4.org v0.0.0-20200411211856-f5505b9728dd" "go4.org v0.0.0-20200411211856-f5505b9728dd/go.mod" @@ -1344,10 +1481,12 @@ EGO_SUM=( "golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod" "golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod" "golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod" - "golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod" "golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod" - "golang.org/x/crypto v0.0.0-20210506145944-38f3c27a63bf" "golang.org/x/crypto v0.0.0-20210506145944-38f3c27a63bf/go.mod" + "golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a/go.mod" + "golang.org/x/crypto v0.0.0-20210813211128-0a44fdfbc16e/go.mod" + "golang.org/x/crypto v0.0.0-20210921155107-089bfa567519" + "golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod" "golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod" "golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod" "golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod" @@ -1355,7 +1494,9 @@ EGO_SUM=( "golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod" "golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod" "golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod" + "golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod" "golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod" + "golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod" "golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod" "golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod" "golang.org/x/lint v0.0.0-20180702182130-06c8688daad7/go.mod" @@ -1368,17 +1509,16 @@ EGO_SUM=( "golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod" "golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod" "golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod" + "golang.org/x/lint v0.0.0-20200302205851-738671d3881b" "golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod" - "golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5" - "golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod" "golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod" "golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod" "golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod" "golang.org/x/mod v0.1.0/go.mod" "golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod" + "golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod" "golang.org/x/mod v0.2.0/go.mod" "golang.org/x/mod v0.3.0/go.mod" - "golang.org/x/mod v0.4.1/go.mod" "golang.org/x/mod v0.4.2" "golang.org/x/mod v0.4.2/go.mod" "golang.org/x/net v0.0.0-20180719180050-a680a1efc54d/go.mod" @@ -1406,16 +1546,26 @@ EGO_SUM=( "golang.org/x/net v0.0.0-20190611141213-3f473d35a33a/go.mod" "golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod" "golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod" + "golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod" "golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod" "golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod" "golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod" "golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod" + "golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod" "golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod" "golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod" "golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod" + "golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod" + "golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod" + "golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod" + "golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod" + "golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod" "golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod" + "golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod" "golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod" "golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod" + "golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod" + "golang.org/x/net v0.0.0-20200904194848-62affa334b73/go.mod" "golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod" "golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod" "golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod" @@ -1423,16 +1573,20 @@ EGO_SUM=( "golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod" "golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod" "golang.org/x/net v0.0.0-20210423184538-5f58ad60dda6/go.mod" - "golang.org/x/net v0.0.0-20210428140749-89ef3d95e781" "golang.org/x/net v0.0.0-20210428140749-89ef3d95e781/go.mod" + "golang.org/x/net v0.0.0-20210505024714-0287a6fb4125/go.mod" + "golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod" + "golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d" + "golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod" "golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod" "golang.org/x/oauth2 v0.0.0-20181017192945-9dcd33a902f4/go.mod" "golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890/go.mod" "golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod" "golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod" "golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod" - "golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d" "golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod" + "golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c" + "golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod" "golang.org/x/perf v0.0.0-20180704124530-6e6d33e29852/go.mod" "golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod" "golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod" @@ -1441,6 +1595,7 @@ EGO_SUM=( "golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod" "golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod" "golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod" + "golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod" "golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod" "golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod" "golang.org/x/sync v0.0.0-20210220032951-036812b2e83c" @@ -1478,31 +1633,40 @@ EGO_SUM=( "golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod" "golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod" "golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod" + "golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod" "golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod" "golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod" "golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod" "golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod" + "golang.org/x/sys v0.0.0-20191206220618-eeba5f6aabab/go.mod" "golang.org/x/sys v0.0.0-20191210023423-ac6580df4449/go.mod" "golang.org/x/sys v0.0.0-20191220142924-d4481acd189f/go.mod" "golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod" "golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod" + "golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod" + "golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod" + "golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod" "golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod" "golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod" "golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod" + "golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod" "golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod" - "golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f/go.mod" + "golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod" + "golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod" + "golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod" + "golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod" "golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod" "golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod" "golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980/go.mod" "golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod" "golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod" + "golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod" "golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod" "golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod" "golang.org/x/sys v0.0.0-20201214210602-f9fddec55a1e/go.mod" "golang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod" "golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod" "golang.org/x/sys v0.0.0-20210303074136-134d130e1a04/go.mod" - "golang.org/x/sys v0.0.0-20210303074136-134d130e1a04/go.mod" "golang.org/x/sys v0.0.0-20210309074719-68d13333faf2/go.mod" "golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod" "golang.org/x/sys v0.0.0-20210317225723-c4fcb01b228e/go.mod" @@ -1510,8 +1674,15 @@ EGO_SUM=( "golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod" "golang.org/x/sys v0.0.0-20210426080607-c94f62235c83/go.mod" "golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod" - "golang.org/x/sys v0.0.0-20210511113859-b0526f3d8744" "golang.org/x/sys v0.0.0-20210511113859-b0526f3d8744/go.mod" + "golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod" + "golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod" + "golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod" + "golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod" + "golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod" + "golang.org/x/sys v0.0.0-20210903071746-97244b99971b/go.mod" + "golang.org/x/sys v0.0.0-20211025112917-711f33c9992c" + "golang.org/x/sys v0.0.0-20211025112917-711f33c9992c/go.mod" "golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod" "golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1" "golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod" @@ -1520,8 +1691,9 @@ EGO_SUM=( "golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod" "golang.org/x/text v0.3.2/go.mod" "golang.org/x/text v0.3.3/go.mod" - "golang.org/x/text v0.3.6" "golang.org/x/text v0.3.6/go.mod" + "golang.org/x/text v0.3.7" + "golang.org/x/text v0.3.7/go.mod" "golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod" "golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod" "golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod" @@ -1552,23 +1724,38 @@ EGO_SUM=( "golang.org/x/tools v0.0.0-20191030062658-86caa796c7ab/go.mod" "golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod" "golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod" - "golang.org/x/tools v0.0.0-20191114200427-caa0b0f7d508/go.mod" "golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod" "golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod" "golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod" + "golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod" "golang.org/x/tools v0.0.0-20191216052735-49a3e744a425/go.mod" "golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod" "golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod" "golang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod" + "golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod" + "golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod" "golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod" + "golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod" "golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod" "golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod" + "golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod" + "golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod" + "golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod" + "golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod" + "golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod" + "golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod" + "golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod" + "golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod" + "golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod" "golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod" + "golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod" + "golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod" + "golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod" "golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod" "golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod" - "golang.org/x/tools v0.1.1-0.20210225150353-54dc8c5edb56/go.mod" - "golang.org/x/tools v0.1.1" "golang.org/x/tools v0.1.1/go.mod" + "golang.org/x/tools v0.1.5" + "golang.org/x/tools v0.1.5/go.mod" "golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod" "golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod" "golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod" @@ -1586,14 +1773,23 @@ EGO_SUM=( "google.golang.org/api v0.14.0/go.mod" "google.golang.org/api v0.15.0/go.mod" "google.golang.org/api v0.17.0/go.mod" + "google.golang.org/api v0.18.0/go.mod" + "google.golang.org/api v0.19.0/go.mod" + "google.golang.org/api v0.20.0/go.mod" + "google.golang.org/api v0.22.0/go.mod" + "google.golang.org/api v0.24.0/go.mod" + "google.golang.org/api v0.28.0/go.mod" + "google.golang.org/api v0.29.0/go.mod" + "google.golang.org/api v0.30.0/go.mod" "google.golang.org/appengine v1.1.0/go.mod" "google.golang.org/appengine v1.2.0/go.mod" "google.golang.org/appengine v1.3.0/go.mod" "google.golang.org/appengine v1.4.0/go.mod" "google.golang.org/appengine v1.5.0/go.mod" "google.golang.org/appengine v1.6.1/go.mod" - "google.golang.org/appengine v1.6.5" "google.golang.org/appengine v1.6.5/go.mod" + "google.golang.org/appengine v1.6.6" + "google.golang.org/appengine v1.6.6/go.mod" "google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod" "google.golang.org/genproto v0.0.0-20180831171423-11092d34479b/go.mod" "google.golang.org/genproto v0.0.0-20181029155118-b69ba1387ce2/go.mod" @@ -1611,9 +1807,25 @@ EGO_SUM=( "google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod" "google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod" "google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod" + "google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod" + "google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod" + "google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod" "google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod" - "google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013" + "google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod" + "google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod" + "google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod" + "google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod" + "google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod" + "google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod" + "google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod" + "google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod" + "google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod" "google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod" + "google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod" + "google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod" + "google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod" + "google.golang.org/genproto v0.0.0-20200825200019-8632dd797987" + "google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod" "google.golang.org/grpc v1.14.0/go.mod" "google.golang.org/grpc v1.16.0/go.mod" "google.golang.org/grpc v1.17.0/go.mod" @@ -1629,10 +1841,17 @@ EGO_SUM=( "google.golang.org/grpc v1.26.0/go.mod" "google.golang.org/grpc v1.27.0/go.mod" "google.golang.org/grpc v1.27.1/go.mod" + "google.golang.org/grpc v1.28.0/go.mod" "google.golang.org/grpc v1.28.1/go.mod" + "google.golang.org/grpc v1.29.1/go.mod" + "google.golang.org/grpc v1.30.0/go.mod" + "google.golang.org/grpc v1.31.0/go.mod" "google.golang.org/grpc v1.31.1/go.mod" - "google.golang.org/grpc v1.33.2" + "google.golang.org/grpc v1.33.1/go.mod" "google.golang.org/grpc v1.33.2/go.mod" + "google.golang.org/grpc v1.36.0/go.mod" + "google.golang.org/grpc v1.40.0" + "google.golang.org/grpc v1.40.0/go.mod" "google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod" "google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod" "google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod" @@ -1644,9 +1863,9 @@ EGO_SUM=( "google.golang.org/protobuf v1.24.0/go.mod" "google.golang.org/protobuf v1.25.0/go.mod" "google.golang.org/protobuf v1.26.0-rc.1/go.mod" - "google.golang.org/protobuf v1.26.0" "google.golang.org/protobuf v1.26.0/go.mod" - "gopkg.in/alecthomas/kingpin.v2 v2.2.6" + "google.golang.org/protobuf v1.27.1" + "google.golang.org/protobuf v1.27.1/go.mod" "gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod" "gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod" "gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod" @@ -1659,6 +1878,8 @@ EGO_SUM=( "gopkg.in/gcfg.v1 v1.2.3/go.mod" "gopkg.in/inf.v0 v0.9.1/go.mod" "gopkg.in/resty.v1 v1.12.0/go.mod" + "gopkg.in/square/go-jose.v2 v2.5.1" + "gopkg.in/square/go-jose.v2 v2.5.1/go.mod" "gopkg.in/src-d/go-cli.v0 v0.0.0-20181105080154-d492247bbc0d/go.mod" "gopkg.in/src-d/go-log.v1 v1.0.1/go.mod" "gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7" @@ -1667,21 +1888,29 @@ EGO_SUM=( "gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod" "gopkg.in/yaml.v2 v2.2.1/go.mod" "gopkg.in/yaml.v2 v2.2.2/go.mod" + "gopkg.in/yaml.v2 v2.2.3/go.mod" "gopkg.in/yaml.v2 v2.2.4/go.mod" "gopkg.in/yaml.v2 v2.2.5/go.mod" + "gopkg.in/yaml.v2 v2.2.8/go.mod" "gopkg.in/yaml.v2 v2.3.0/go.mod" "gopkg.in/yaml.v2 v2.4.0" "gopkg.in/yaml.v2 v2.4.0/go.mod" - "gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c" "gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod" + "gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b" + "gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod" "grpc.go4.org v0.0.0-20170609214715-11d0a25b4919/go.mod" "honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod" "honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod" "honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod" "honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod" "honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod" - "honnef.co/go/tools v0.0.1-2019.2.3" "honnef.co/go/tools v0.0.1-2019.2.3/go.mod" + "honnef.co/go/tools v0.0.1-2020.1.3/go.mod" + "honnef.co/go/tools v0.0.1-2020.1.4/go.mod" + "lukechampine.com/blake3 v1.1.6" + "lukechampine.com/blake3 v1.1.6/go.mod" + "pgregory.net/rapid v0.4.7" + "pgregory.net/rapid v0.4.7/go.mod" "rsc.io/binaryregexp v0.2.0/go.mod" "rsc.io/quote/v3 v3.1.0/go.mod" "rsc.io/sampler v1.3.0/go.mod" @@ -1708,15 +1937,17 @@ RDEPEND=" DOCS=(CHANGELOG.md CONTRIBUTING.md README.md docs/) -#S="${WORKDIR}" - src_compile() { + default + local mygoargs mygoargs=( -tags release ) go build "${mygoargs[@]}" -o ipfs ./cmd/ipfs || die go build "${mygoargs[@]}" -o ipfswatch ./cmd/ipfswatch || die + + ./ipfs commands completion bash > ipfs-completion.bash || die } src_test() { @@ -1726,7 +1957,7 @@ src_test() { src_install() { dobin ipfs dobin ipfswatch - newbashcomp misc/completion/ipfs-completion.bash ipfs + newbashcomp ipfs-completion.bash ipfs einstalldocs systemd_dounit "${FILESDIR}/ipfs.service" diff --git a/net-p2p/go-ipfs/go-ipfs-0.8.0.ebuild b/net-p2p/go-ipfs/go-ipfs-0.8.0.ebuild deleted file mode 100644 index d001733eea11..000000000000 --- a/net-p2p/go-ipfs/go-ipfs-0.8.0.ebuild +++ /dev/null @@ -1,1444 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit bash-completion-r1 go-module systemd - -DESCRIPTION="Main implementation of IPFS" -HOMEPAGE="https://ipfs.io/" - -EGO_SUM=( - "bazil.org/fuse v0.0.0-20200117225306-7b5117fecadc" - "bazil.org/fuse v0.0.0-20200117225306-7b5117fecadc/go.mod" - "cloud.google.com/go v0.26.0/go.mod" - "cloud.google.com/go v0.31.0/go.mod" - "cloud.google.com/go v0.34.0/go.mod" - "cloud.google.com/go v0.37.0/go.mod" - "cloud.google.com/go v0.38.0/go.mod" - "cloud.google.com/go v0.44.1/go.mod" - "cloud.google.com/go v0.44.2/go.mod" - "cloud.google.com/go v0.45.1/go.mod" - "cloud.google.com/go v0.46.3/go.mod" - "cloud.google.com/go v0.50.0/go.mod" - "cloud.google.com/go v0.53.0/go.mod" - "cloud.google.com/go/bigquery v1.0.1/go.mod" - "cloud.google.com/go/bigquery v1.3.0/go.mod" - "cloud.google.com/go/datastore v1.0.0/go.mod" - "cloud.google.com/go/pubsub v1.0.1/go.mod" - "cloud.google.com/go/pubsub v1.1.0/go.mod" - "cloud.google.com/go/storage v1.0.0/go.mod" - "cloud.google.com/go/storage v1.5.0/go.mod" - "contrib.go.opencensus.io/exporter/prometheus v0.2.0" - "contrib.go.opencensus.io/exporter/prometheus v0.2.0/go.mod" - "dmitri.shuralyov.com/app/changes v0.0.0-20180602232624-0a106ad413e3/go.mod" - "dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod" - "dmitri.shuralyov.com/html/belt v0.0.0-20180602232347-f7d459c86be0/go.mod" - "dmitri.shuralyov.com/service/change v0.0.0-20181023043359-a85b471d5412/go.mod" - "dmitri.shuralyov.com/state v0.0.0-20180228185332-28bcc343414c/go.mod" - "git.apache.org/thrift.git v0.0.0-20180902110319-2566ecd5d999/go.mod" - "github.com/AndreasBriese/bbloom v0.0.0-20180913140656-343706a395b7/go.mod" - "github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod" - "github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96" - "github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96/go.mod" - "github.com/BurntSushi/toml v0.3.1" - "github.com/BurntSushi/toml v0.3.1/go.mod" - "github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod" - "github.com/Kubuxu/go-os-helper v0.0.1" - "github.com/Kubuxu/go-os-helper v0.0.1/go.mod" - "github.com/OneOfOne/xxhash v1.2.2" - "github.com/OneOfOne/xxhash v1.2.2/go.mod" - "github.com/Stebalien/go-bitfield v0.0.1" - "github.com/Stebalien/go-bitfield v0.0.1/go.mod" - "github.com/aead/siphash v1.0.1/go.mod" - "github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod" - "github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751" - "github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod" - "github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod" - "github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4" - "github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod" - "github.com/alexbrainman/goissue34681 v0.0.0-20191006012335-3fc7a47baff5" - "github.com/alexbrainman/goissue34681 v0.0.0-20191006012335-3fc7a47baff5/go.mod" - "github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod" - "github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod" - "github.com/benbjohnson/clock v1.0.2/go.mod" - "github.com/benbjohnson/clock v1.0.3" - "github.com/benbjohnson/clock v1.0.3/go.mod" - "github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod" - "github.com/beorn7/perks v1.0.0/go.mod" - "github.com/beorn7/perks v1.0.1" - "github.com/beorn7/perks v1.0.1/go.mod" - "github.com/blang/semver v3.5.1+incompatible" - "github.com/blang/semver v3.5.1+incompatible/go.mod" - "github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625/go.mod" - "github.com/bren2010/proquint v0.0.0-20160323162903-38337c27106d" - "github.com/bren2010/proquint v0.0.0-20160323162903-38337c27106d/go.mod" - "github.com/btcsuite/btcd v0.0.0-20190213025234-306aecffea32/go.mod" - "github.com/btcsuite/btcd v0.0.0-20190523000118-16327141da8c/go.mod" - "github.com/btcsuite/btcd v0.0.0-20190605094302-a0d1e3e36d50/go.mod" - "github.com/btcsuite/btcd v0.0.0-20190824003749-130ea5bddde3/go.mod" - "github.com/btcsuite/btcd v0.20.1-beta" - "github.com/btcsuite/btcd v0.20.1-beta/go.mod" - "github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod" - "github.com/btcsuite/btcutil v0.0.0-20190207003914-4c204d697803/go.mod" - "github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod" - "github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd/go.mod" - "github.com/btcsuite/goleveldb v0.0.0-20160330041536-7834afc9e8cd/go.mod" - "github.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723/go.mod" - "github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792/go.mod" - "github.com/btcsuite/winsvc v1.0.0/go.mod" - "github.com/buger/jsonparser v0.0.0-20181115193947-bf1c66bbce23/go.mod" - "github.com/cenkalti/backoff v2.2.1+incompatible" - "github.com/cenkalti/backoff v2.2.1+incompatible/go.mod" - "github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod" - "github.com/cespare/xxhash v1.1.0" - "github.com/cespare/xxhash v1.1.0/go.mod" - "github.com/cespare/xxhash/v2 v2.1.0/go.mod" - "github.com/cespare/xxhash/v2 v2.1.1" - "github.com/cespare/xxhash/v2 v2.1.1/go.mod" - "github.com/cheekybits/genny v1.0.0" - "github.com/cheekybits/genny v1.0.0/go.mod" - "github.com/cheggaaa/pb v1.0.29" - "github.com/cheggaaa/pb v1.0.29/go.mod" - "github.com/chzyer/logex v1.1.10/go.mod" - "github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod" - "github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod" - "github.com/client9/misspell v0.3.4/go.mod" - "github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod" - "github.com/coreos/etcd v3.3.10+incompatible/go.mod" - "github.com/coreos/go-etcd v2.0.0+incompatible/go.mod" - "github.com/coreos/go-semver v0.2.0/go.mod" - "github.com/coreos/go-semver v0.2.1-0.20180108230905-e214231b295a/go.mod" - "github.com/coreos/go-semver v0.3.0" - "github.com/coreos/go-semver v0.3.0/go.mod" - "github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d" - "github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d/go.mod" - "github.com/coreos/go-systemd/v22 v22.0.0/go.mod" - "github.com/coreos/go-systemd/v22 v22.1.0" - "github.com/coreos/go-systemd/v22 v22.1.0/go.mod" - "github.com/cpuguy83/go-md2man v1.0.10/go.mod" - "github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod" - "github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3" - "github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3/go.mod" - "github.com/cskr/pubsub v1.0.2" - "github.com/cskr/pubsub v1.0.2/go.mod" - "github.com/davecgh/go-spew v0.0.0-20171005155431-ecdeabc65495/go.mod" - "github.com/davecgh/go-spew v1.1.0/go.mod" - "github.com/davecgh/go-spew v1.1.1" - "github.com/davecgh/go-spew v1.1.1/go.mod" - "github.com/davidlazar/go-crypto v0.0.0-20170701192655-dcfb0a7ac018" - "github.com/davidlazar/go-crypto v0.0.0-20170701192655-dcfb0a7ac018/go.mod" - "github.com/dgraph-io/badger v1.5.5-0.20190226225317-8115aed38f8f/go.mod" - "github.com/dgraph-io/badger v1.6.0-rc1/go.mod" - "github.com/dgraph-io/badger v1.6.0/go.mod" - "github.com/dgraph-io/badger v1.6.1/go.mod" - "github.com/dgraph-io/badger v1.6.2" - "github.com/dgraph-io/badger v1.6.2/go.mod" - "github.com/dgraph-io/ristretto v0.0.2" - "github.com/dgraph-io/ristretto v0.0.2/go.mod" - "github.com/dgryski/go-farm v0.0.0-20190104051053-3adb47b1fb0f/go.mod" - "github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2" - "github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod" - "github.com/dustin/go-humanize v1.0.0" - "github.com/dustin/go-humanize v1.0.0/go.mod" - "github.com/elgris/jsondiff v0.0.0-20160530203242-765b5c24c302" - "github.com/elgris/jsondiff v0.0.0-20160530203242-765b5c24c302/go.mod" - "github.com/envoyproxy/go-control-plane v0.9.0/go.mod" - "github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod" - "github.com/envoyproxy/go-control-plane v0.9.4/go.mod" - "github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod" - "github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5" - "github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5/go.mod" - "github.com/fatih/color v1.9.0" - "github.com/fatih/color v1.9.0/go.mod" - "github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod" - "github.com/flynn/noise v0.0.0-20180327030543-2492fe189ae6" - "github.com/flynn/noise v0.0.0-20180327030543-2492fe189ae6/go.mod" - "github.com/francoispqt/gojay v1.2.13" - "github.com/francoispqt/gojay v1.2.13/go.mod" - "github.com/fsnotify/fsnotify v1.4.7/go.mod" - "github.com/fsnotify/fsnotify v1.4.9" - "github.com/fsnotify/fsnotify v1.4.9/go.mod" - "github.com/gabriel-vasile/mimetype v1.1.2" - "github.com/gabriel-vasile/mimetype v1.1.2/go.mod" - "github.com/ghodss/yaml v1.0.0/go.mod" - "github.com/gliderlabs/ssh v0.1.1/go.mod" - "github.com/go-bindata/go-bindata/v3 v3.1.3" - "github.com/go-bindata/go-bindata/v3 v3.1.3/go.mod" - "github.com/go-check/check v0.0.0-20180628173108-788fd7840127/go.mod" - "github.com/go-errors/errors v1.0.1/go.mod" - "github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod" - "github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod" - "github.com/go-kit/kit v0.8.0/go.mod" - "github.com/go-kit/kit v0.9.0/go.mod" - "github.com/go-logfmt/logfmt v0.3.0/go.mod" - "github.com/go-logfmt/logfmt v0.4.0/go.mod" - "github.com/go-stack/stack v1.8.0/go.mod" - "github.com/godbus/dbus/v5 v5.0.3/go.mod" - "github.com/gogo/protobuf v1.1.1/go.mod" - "github.com/gogo/protobuf v1.2.1/go.mod" - "github.com/gogo/protobuf v1.3.0/go.mod" - "github.com/gogo/protobuf v1.3.1/go.mod" - "github.com/gogo/protobuf v1.3.2" - "github.com/gogo/protobuf v1.3.2/go.mod" - "github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod" - "github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod" - "github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9/go.mod" - "github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod" - "github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e" - "github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod" - "github.com/golang/lint v0.0.0-20180702182130-06c8688daad7/go.mod" - "github.com/golang/mock v1.1.1/go.mod" - "github.com/golang/mock v1.2.0/go.mod" - "github.com/golang/mock v1.3.1/go.mod" - "github.com/golang/mock v1.4.0/go.mod" - "github.com/golang/mock v1.4.4" - "github.com/golang/mock v1.4.4/go.mod" - "github.com/golang/protobuf v1.2.0/go.mod" - "github.com/golang/protobuf v1.3.0/go.mod" - "github.com/golang/protobuf v1.3.1/go.mod" - "github.com/golang/protobuf v1.3.2/go.mod" - "github.com/golang/protobuf v1.3.3/go.mod" - "github.com/golang/protobuf v1.4.0-rc.1/go.mod" - "github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod" - "github.com/golang/protobuf v1.4.0-rc.2/go.mod" - "github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod" - "github.com/golang/protobuf v1.4.0/go.mod" - "github.com/golang/protobuf v1.4.1/go.mod" - "github.com/golang/protobuf v1.4.2" - "github.com/golang/protobuf v1.4.2/go.mod" - "github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db" - "github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod" - "github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod" - "github.com/google/btree v1.0.0/go.mod" - "github.com/google/go-cmp v0.2.0/go.mod" - "github.com/google/go-cmp v0.3.0/go.mod" - "github.com/google/go-cmp v0.3.1/go.mod" - "github.com/google/go-cmp v0.4.0/go.mod" - "github.com/google/go-cmp v0.5.0" - "github.com/google/go-cmp v0.5.0/go.mod" - "github.com/google/go-github v17.0.0+incompatible/go.mod" - "github.com/google/go-querystring v1.0.0/go.mod" - "github.com/google/gofuzz v1.0.0/go.mod" - "github.com/google/gopacket v1.1.17/go.mod" - "github.com/google/gopacket v1.1.18" - "github.com/google/gopacket v1.1.18/go.mod" - "github.com/google/martian v2.1.0+incompatible/go.mod" - "github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod" - "github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod" - "github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod" - "github.com/google/renameio v0.1.0/go.mod" - "github.com/google/uuid v1.1.1/go.mod" - "github.com/google/uuid v1.1.2" - "github.com/google/uuid v1.1.2/go.mod" - "github.com/googleapis/gax-go v2.0.0+incompatible/go.mod" - "github.com/googleapis/gax-go/v2 v2.0.3/go.mod" - "github.com/googleapis/gax-go/v2 v2.0.4/go.mod" - "github.com/googleapis/gax-go/v2 v2.0.5/go.mod" - "github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod" - "github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c/go.mod" - "github.com/gopherjs/gopherjs v0.0.0-20190812055157-5d271430af9f" - "github.com/gopherjs/gopherjs v0.0.0-20190812055157-5d271430af9f/go.mod" - "github.com/gorilla/websocket v1.4.0/go.mod" - "github.com/gorilla/websocket v1.4.1/go.mod" - "github.com/gorilla/websocket v1.4.2" - "github.com/gorilla/websocket v1.4.2/go.mod" - "github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod" - "github.com/grpc-ecosystem/grpc-gateway v1.5.0/go.mod" - "github.com/gxed/hashland/keccakpg v0.0.1/go.mod" - "github.com/gxed/hashland/murmur3 v0.0.1/go.mod" - "github.com/hannahhoward/cbor-gen-for v0.0.0-20200817222906-ea96cece81f1/go.mod" - "github.com/hannahhoward/go-pubsub v0.0.0-20200423002714-8d62886cc36e" - "github.com/hannahhoward/go-pubsub v0.0.0-20200423002714-8d62886cc36e/go.mod" - "github.com/hashicorp/errwrap v1.0.0" - "github.com/hashicorp/errwrap v1.0.0/go.mod" - "github.com/hashicorp/go-multierror v1.1.0" - "github.com/hashicorp/go-multierror v1.1.0/go.mod" - "github.com/hashicorp/golang-lru v0.5.0/go.mod" - "github.com/hashicorp/golang-lru v0.5.1/go.mod" - "github.com/hashicorp/golang-lru v0.5.4" - "github.com/hashicorp/golang-lru v0.5.4/go.mod" - "github.com/hashicorp/hcl v1.0.0/go.mod" - "github.com/hpcloud/tail v1.0.0/go.mod" - "github.com/huin/goupnp v1.0.0" - "github.com/huin/goupnp v1.0.0/go.mod" - "github.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150/go.mod" - "github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod" - "github.com/inconshreveable/mousetrap v1.0.0/go.mod" - "github.com/ipfs/bbloom v0.0.1/go.mod" - "github.com/ipfs/bbloom v0.0.4" - "github.com/ipfs/bbloom v0.0.4/go.mod" - "github.com/ipfs/go-bitswap v0.0.9/go.mod" - "github.com/ipfs/go-bitswap v0.1.0/go.mod" - "github.com/ipfs/go-bitswap v0.1.2/go.mod" - "github.com/ipfs/go-bitswap v0.1.3/go.mod" - "github.com/ipfs/go-bitswap v0.1.8/go.mod" - "github.com/ipfs/go-bitswap v0.3.3" - "github.com/ipfs/go-bitswap v0.3.3/go.mod" - "github.com/ipfs/go-block-format v0.0.1/go.mod" - "github.com/ipfs/go-block-format v0.0.2" - "github.com/ipfs/go-block-format v0.0.2/go.mod" - "github.com/ipfs/go-blockservice v0.0.7/go.mod" - "github.com/ipfs/go-blockservice v0.1.0/go.mod" - "github.com/ipfs/go-blockservice v0.1.1/go.mod" - "github.com/ipfs/go-blockservice v0.1.2/go.mod" - "github.com/ipfs/go-blockservice v0.1.3/go.mod" - "github.com/ipfs/go-blockservice v0.1.4" - "github.com/ipfs/go-blockservice v0.1.4/go.mod" - "github.com/ipfs/go-cid v0.0.1/go.mod" - "github.com/ipfs/go-cid v0.0.2/go.mod" - "github.com/ipfs/go-cid v0.0.3/go.mod" - "github.com/ipfs/go-cid v0.0.4/go.mod" - "github.com/ipfs/go-cid v0.0.5/go.mod" - "github.com/ipfs/go-cid v0.0.6/go.mod" - "github.com/ipfs/go-cid v0.0.7" - "github.com/ipfs/go-cid v0.0.7/go.mod" - "github.com/ipfs/go-cidutil v0.0.2" - "github.com/ipfs/go-cidutil v0.0.2/go.mod" - "github.com/ipfs/go-datastore v0.0.1/go.mod" - "github.com/ipfs/go-datastore v0.0.5/go.mod" - "github.com/ipfs/go-datastore v0.1.0/go.mod" - "github.com/ipfs/go-datastore v0.1.1/go.mod" - "github.com/ipfs/go-datastore v0.3.0/go.mod" - "github.com/ipfs/go-datastore v0.3.1/go.mod" - "github.com/ipfs/go-datastore v0.4.0/go.mod" - "github.com/ipfs/go-datastore v0.4.1/go.mod" - "github.com/ipfs/go-datastore v0.4.4/go.mod" - "github.com/ipfs/go-datastore v0.4.5" - "github.com/ipfs/go-datastore v0.4.5/go.mod" - "github.com/ipfs/go-detect-race v0.0.1" - "github.com/ipfs/go-detect-race v0.0.1/go.mod" - "github.com/ipfs/go-ds-badger v0.0.2/go.mod" - "github.com/ipfs/go-ds-badger v0.0.5/go.mod" - "github.com/ipfs/go-ds-badger v0.0.7/go.mod" - "github.com/ipfs/go-ds-badger v0.2.1/go.mod" - "github.com/ipfs/go-ds-badger v0.2.3/go.mod" - "github.com/ipfs/go-ds-badger v0.2.6" - "github.com/ipfs/go-ds-badger v0.2.6/go.mod" - "github.com/ipfs/go-ds-flatfs v0.4.5" - "github.com/ipfs/go-ds-flatfs v0.4.5/go.mod" - "github.com/ipfs/go-ds-leveldb v0.0.1/go.mod" - "github.com/ipfs/go-ds-leveldb v0.1.0/go.mod" - "github.com/ipfs/go-ds-leveldb v0.4.1/go.mod" - "github.com/ipfs/go-ds-leveldb v0.4.2" - "github.com/ipfs/go-ds-leveldb v0.4.2/go.mod" - "github.com/ipfs/go-ds-measure v0.1.0" - "github.com/ipfs/go-ds-measure v0.1.0/go.mod" - "github.com/ipfs/go-filestore v0.0.3" - "github.com/ipfs/go-filestore v0.0.3/go.mod" - "github.com/ipfs/go-fs-lock v0.0.6" - "github.com/ipfs/go-fs-lock v0.0.6/go.mod" - "github.com/ipfs/go-graphsync v0.6.0" - "github.com/ipfs/go-graphsync v0.6.0/go.mod" - "github.com/ipfs/go-ipfs-blockstore v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-blockstore v0.1.0/go.mod" - "github.com/ipfs/go-ipfs-blockstore v0.1.4" - "github.com/ipfs/go-ipfs-blockstore v0.1.4/go.mod" - "github.com/ipfs/go-ipfs-blocksutil v0.0.1" - "github.com/ipfs/go-ipfs-blocksutil v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-chunker v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-chunker v0.0.5" - "github.com/ipfs/go-ipfs-chunker v0.0.5/go.mod" - "github.com/ipfs/go-ipfs-cmds v0.6.0" - "github.com/ipfs/go-ipfs-cmds v0.6.0/go.mod" - "github.com/ipfs/go-ipfs-config v0.12.0" - "github.com/ipfs/go-ipfs-config v0.12.0/go.mod" - "github.com/ipfs/go-ipfs-delay v0.0.0-20181109222059-70721b86a9a8/go.mod" - "github.com/ipfs/go-ipfs-delay v0.0.1" - "github.com/ipfs/go-ipfs-delay v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-ds-help v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-ds-help v0.1.1" - "github.com/ipfs/go-ipfs-ds-help v0.1.1/go.mod" - "github.com/ipfs/go-ipfs-exchange-interface v0.0.1" - "github.com/ipfs/go-ipfs-exchange-interface v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-exchange-offline v0.0.1" - "github.com/ipfs/go-ipfs-exchange-offline v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-files v0.0.3/go.mod" - "github.com/ipfs/go-ipfs-files v0.0.8" - "github.com/ipfs/go-ipfs-files v0.0.8/go.mod" - "github.com/ipfs/go-ipfs-pinner v0.1.1" - "github.com/ipfs/go-ipfs-pinner v0.1.1/go.mod" - "github.com/ipfs/go-ipfs-posinfo v0.0.1" - "github.com/ipfs/go-ipfs-posinfo v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-pq v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-pq v0.0.2" - "github.com/ipfs/go-ipfs-pq v0.0.2/go.mod" - "github.com/ipfs/go-ipfs-provider v0.4.3" - "github.com/ipfs/go-ipfs-provider v0.4.3/go.mod" - "github.com/ipfs/go-ipfs-routing v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-routing v0.1.0" - "github.com/ipfs/go-ipfs-routing v0.1.0/go.mod" - "github.com/ipfs/go-ipfs-util v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-util v0.0.2" - "github.com/ipfs/go-ipfs-util v0.0.2/go.mod" - "github.com/ipfs/go-ipld-cbor v0.0.2/go.mod" - "github.com/ipfs/go-ipld-cbor v0.0.3/go.mod" - "github.com/ipfs/go-ipld-cbor v0.0.4/go.mod" - "github.com/ipfs/go-ipld-cbor v0.0.5" - "github.com/ipfs/go-ipld-cbor v0.0.5/go.mod" - "github.com/ipfs/go-ipld-format v0.0.1/go.mod" - "github.com/ipfs/go-ipld-format v0.0.2/go.mod" - "github.com/ipfs/go-ipld-format v0.2.0" - "github.com/ipfs/go-ipld-format v0.2.0/go.mod" - "github.com/ipfs/go-ipld-git v0.0.3" - "github.com/ipfs/go-ipld-git v0.0.3/go.mod" - "github.com/ipfs/go-ipns v0.0.2" - "github.com/ipfs/go-ipns v0.0.2/go.mod" - "github.com/ipfs/go-log v0.0.1/go.mod" - "github.com/ipfs/go-log v1.0.1/go.mod" - "github.com/ipfs/go-log v1.0.2/go.mod" - "github.com/ipfs/go-log v1.0.3/go.mod" - "github.com/ipfs/go-log v1.0.4" - "github.com/ipfs/go-log v1.0.4/go.mod" - "github.com/ipfs/go-log/v2 v2.0.1/go.mod" - "github.com/ipfs/go-log/v2 v2.0.2/go.mod" - "github.com/ipfs/go-log/v2 v2.0.3/go.mod" - "github.com/ipfs/go-log/v2 v2.0.5/go.mod" - "github.com/ipfs/go-log/v2 v2.1.1" - "github.com/ipfs/go-log/v2 v2.1.1/go.mod" - "github.com/ipfs/go-merkledag v0.0.6/go.mod" - "github.com/ipfs/go-merkledag v0.1.0/go.mod" - "github.com/ipfs/go-merkledag v0.2.3/go.mod" - "github.com/ipfs/go-merkledag v0.3.0/go.mod" - "github.com/ipfs/go-merkledag v0.3.1/go.mod" - "github.com/ipfs/go-merkledag v0.3.2" - "github.com/ipfs/go-merkledag v0.3.2/go.mod" - "github.com/ipfs/go-metrics-interface v0.0.1" - "github.com/ipfs/go-metrics-interface v0.0.1/go.mod" - "github.com/ipfs/go-metrics-prometheus v0.0.2" - "github.com/ipfs/go-metrics-prometheus v0.0.2/go.mod" - "github.com/ipfs/go-mfs v0.1.2" - "github.com/ipfs/go-mfs v0.1.2/go.mod" - "github.com/ipfs/go-path v0.0.7/go.mod" - "github.com/ipfs/go-path v0.0.9" - "github.com/ipfs/go-path v0.0.9/go.mod" - "github.com/ipfs/go-peertaskqueue v0.0.4/go.mod" - "github.com/ipfs/go-peertaskqueue v0.1.0/go.mod" - "github.com/ipfs/go-peertaskqueue v0.1.1/go.mod" - "github.com/ipfs/go-peertaskqueue v0.2.0" - "github.com/ipfs/go-peertaskqueue v0.2.0/go.mod" - "github.com/ipfs/go-pinning-service-http-client v0.1.0" - "github.com/ipfs/go-pinning-service-http-client v0.1.0/go.mod" - "github.com/ipfs/go-unixfs v0.1.0/go.mod" - "github.com/ipfs/go-unixfs v0.2.4" - "github.com/ipfs/go-unixfs v0.2.4/go.mod" - "github.com/ipfs/go-verifcid v0.0.1" - "github.com/ipfs/go-verifcid v0.0.1/go.mod" - "github.com/ipfs/interface-go-ipfs-core v0.4.0" - "github.com/ipfs/interface-go-ipfs-core v0.4.0/go.mod" - "github.com/ipld/go-car v0.1.1-0.20201015032735-ff6ccdc46acc" - "github.com/ipld/go-car v0.1.1-0.20201015032735-ff6ccdc46acc/go.mod" - "github.com/ipld/go-ipld-prime v0.5.1-0.20200828233916-988837377a7f/go.mod" - "github.com/ipld/go-ipld-prime v0.5.1-0.20201021195245-109253e8a018" - "github.com/ipld/go-ipld-prime v0.5.1-0.20201021195245-109253e8a018/go.mod" - "github.com/ipld/go-ipld-prime-proto v0.0.0-20200922192210-9a2bfd4440a6/go.mod" - "github.com/ipld/go-ipld-prime-proto v0.1.0" - "github.com/ipld/go-ipld-prime-proto v0.1.0/go.mod" - "github.com/jackpal/gateway v1.0.5/go.mod" - "github.com/jackpal/go-nat-pmp v1.0.1/go.mod" - "github.com/jackpal/go-nat-pmp v1.0.2" - "github.com/jackpal/go-nat-pmp v1.0.2/go.mod" - "github.com/jbenet/go-cienv v0.0.0-20150120210510-1bb1476777ec/go.mod" - "github.com/jbenet/go-cienv v0.1.0" - "github.com/jbenet/go-cienv v0.1.0/go.mod" - "github.com/jbenet/go-is-domain v1.0.5" - "github.com/jbenet/go-is-domain v1.0.5/go.mod" - "github.com/jbenet/go-random v0.0.0-20190219211222-123a90aedc0c" - "github.com/jbenet/go-random v0.0.0-20190219211222-123a90aedc0c/go.mod" - "github.com/jbenet/go-temp-err-catcher v0.0.0-20150120210811-aac704a3f4f2/go.mod" - "github.com/jbenet/go-temp-err-catcher v0.1.0" - "github.com/jbenet/go-temp-err-catcher v0.1.0/go.mod" - "github.com/jbenet/goprocess v0.0.0-20160826012719-b497e2f366b8/go.mod" - "github.com/jbenet/goprocess v0.1.3/go.mod" - "github.com/jbenet/goprocess v0.1.4" - "github.com/jbenet/goprocess v0.1.4/go.mod" - "github.com/jellevandenhooff/dkim v0.0.0-20150330215556-f50fe3d243e1/go.mod" - "github.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89/go.mod" - "github.com/jessevdk/go-flags v1.4.0/go.mod" - "github.com/jrick/logrotate v1.0.0/go.mod" - "github.com/json-iterator/go v1.1.6/go.mod" - "github.com/json-iterator/go v1.1.7/go.mod" - "github.com/json-iterator/go v1.1.10/go.mod" - "github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod" - "github.com/jstemmer/go-junit-report v0.9.1/go.mod" - "github.com/jtolds/gls v4.2.1+incompatible/go.mod" - "github.com/jtolds/gls v4.20.0+incompatible" - "github.com/jtolds/gls v4.20.0+incompatible/go.mod" - "github.com/julienschmidt/httprouter v1.2.0/go.mod" - "github.com/kami-zh/go-capturer v0.0.0-20171211120116-e492ea43421d/go.mod" - "github.com/kisielk/errcheck v1.1.0/go.mod" - "github.com/kisielk/errcheck v1.2.0/go.mod" - "github.com/kisielk/errcheck v1.5.0" - "github.com/kisielk/errcheck v1.5.0/go.mod" - "github.com/kisielk/gotool v1.0.0/go.mod" - "github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod" - "github.com/konsorten/go-windows-terminal-sequences v1.0.1" - "github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod" - "github.com/koron/go-ssdp v0.0.0-20180514024734-4a0ed625a78b/go.mod" - "github.com/koron/go-ssdp v0.0.0-20191105050749-2e1c40ed0b5d" - "github.com/koron/go-ssdp v0.0.0-20191105050749-2e1c40ed0b5d/go.mod" - "github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod" - "github.com/kr/pretty v0.1.0/go.mod" - "github.com/kr/pretty v0.2.0" - "github.com/kr/pretty v0.2.0/go.mod" - "github.com/kr/pty v1.1.1/go.mod" - "github.com/kr/pty v1.1.3/go.mod" - "github.com/kr/text v0.1.0" - "github.com/kr/text v0.1.0/go.mod" - "github.com/libp2p/go-addr-util v0.0.1/go.mod" - "github.com/libp2p/go-addr-util v0.0.2" - "github.com/libp2p/go-addr-util v0.0.2/go.mod" - "github.com/libp2p/go-buffer-pool v0.0.1/go.mod" - "github.com/libp2p/go-buffer-pool v0.0.2" - "github.com/libp2p/go-buffer-pool v0.0.2/go.mod" - "github.com/libp2p/go-cidranger v1.1.0" - "github.com/libp2p/go-cidranger v1.1.0/go.mod" - "github.com/libp2p/go-conn-security v0.0.1/go.mod" - "github.com/libp2p/go-conn-security-multistream v0.0.2/go.mod" - "github.com/libp2p/go-conn-security-multistream v0.1.0/go.mod" - "github.com/libp2p/go-conn-security-multistream v0.2.0" - "github.com/libp2p/go-conn-security-multistream v0.2.0/go.mod" - "github.com/libp2p/go-eventbus v0.1.0/go.mod" - "github.com/libp2p/go-eventbus v0.2.1" - "github.com/libp2p/go-eventbus v0.2.1/go.mod" - "github.com/libp2p/go-flow-metrics v0.0.1/go.mod" - "github.com/libp2p/go-flow-metrics v0.0.2/go.mod" - "github.com/libp2p/go-flow-metrics v0.0.3" - "github.com/libp2p/go-flow-metrics v0.0.3/go.mod" - "github.com/libp2p/go-libp2p v0.0.30/go.mod" - "github.com/libp2p/go-libp2p v0.1.0/go.mod" - "github.com/libp2p/go-libp2p v0.1.1/go.mod" - "github.com/libp2p/go-libp2p v0.6.1/go.mod" - "github.com/libp2p/go-libp2p v0.7.0/go.mod" - "github.com/libp2p/go-libp2p v0.7.4/go.mod" - "github.com/libp2p/go-libp2p v0.8.1/go.mod" - "github.com/libp2p/go-libp2p v0.12.0/go.mod" - "github.com/libp2p/go-libp2p v0.13.0" - "github.com/libp2p/go-libp2p v0.13.0/go.mod" - "github.com/libp2p/go-libp2p-asn-util v0.0.0-20200825225859-85005c6cf052" - "github.com/libp2p/go-libp2p-asn-util v0.0.0-20200825225859-85005c6cf052/go.mod" - "github.com/libp2p/go-libp2p-autonat v0.0.6/go.mod" - "github.com/libp2p/go-libp2p-autonat v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-autonat v0.1.1/go.mod" - "github.com/libp2p/go-libp2p-autonat v0.2.0/go.mod" - "github.com/libp2p/go-libp2p-autonat v0.2.1/go.mod" - "github.com/libp2p/go-libp2p-autonat v0.2.2/go.mod" - "github.com/libp2p/go-libp2p-autonat v0.4.0" - "github.com/libp2p/go-libp2p-autonat v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-blankhost v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-blankhost v0.1.1/go.mod" - "github.com/libp2p/go-libp2p-blankhost v0.1.4/go.mod" - "github.com/libp2p/go-libp2p-blankhost v0.2.0" - "github.com/libp2p/go-libp2p-blankhost v0.2.0/go.mod" - "github.com/libp2p/go-libp2p-circuit v0.0.9/go.mod" - "github.com/libp2p/go-libp2p-circuit v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-circuit v0.1.4/go.mod" - "github.com/libp2p/go-libp2p-circuit v0.2.1/go.mod" - "github.com/libp2p/go-libp2p-circuit v0.4.0" - "github.com/libp2p/go-libp2p-circuit v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-connmgr v0.2.4" - "github.com/libp2p/go-libp2p-connmgr v0.2.4/go.mod" - "github.com/libp2p/go-libp2p-core v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-core v0.0.2/go.mod" - "github.com/libp2p/go-libp2p-core v0.0.3/go.mod" - "github.com/libp2p/go-libp2p-core v0.0.4/go.mod" - "github.com/libp2p/go-libp2p-core v0.2.0/go.mod" - "github.com/libp2p/go-libp2p-core v0.2.2/go.mod" - "github.com/libp2p/go-libp2p-core v0.2.4/go.mod" - "github.com/libp2p/go-libp2p-core v0.2.5/go.mod" - "github.com/libp2p/go-libp2p-core v0.3.0/go.mod" - "github.com/libp2p/go-libp2p-core v0.3.1/go.mod" - "github.com/libp2p/go-libp2p-core v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-core v0.5.0/go.mod" - "github.com/libp2p/go-libp2p-core v0.5.1/go.mod" - "github.com/libp2p/go-libp2p-core v0.5.3/go.mod" - "github.com/libp2p/go-libp2p-core v0.5.4/go.mod" - "github.com/libp2p/go-libp2p-core v0.5.5/go.mod" - "github.com/libp2p/go-libp2p-core v0.5.6/go.mod" - "github.com/libp2p/go-libp2p-core v0.5.7/go.mod" - "github.com/libp2p/go-libp2p-core v0.6.0/go.mod" - "github.com/libp2p/go-libp2p-core v0.6.1/go.mod" - "github.com/libp2p/go-libp2p-core v0.7.0/go.mod" - "github.com/libp2p/go-libp2p-core v0.8.0" - "github.com/libp2p/go-libp2p-core v0.8.0/go.mod" - "github.com/libp2p/go-libp2p-crypto v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-crypto v0.0.2/go.mod" - "github.com/libp2p/go-libp2p-crypto v0.1.0" - "github.com/libp2p/go-libp2p-crypto v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-discovery v0.0.5/go.mod" - "github.com/libp2p/go-libp2p-discovery v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-discovery v0.2.0/go.mod" - "github.com/libp2p/go-libp2p-discovery v0.3.0/go.mod" - "github.com/libp2p/go-libp2p-discovery v0.5.0" - "github.com/libp2p/go-libp2p-discovery v0.5.0/go.mod" - "github.com/libp2p/go-libp2p-gostream v0.3.0" - "github.com/libp2p/go-libp2p-gostream v0.3.0/go.mod" - "github.com/libp2p/go-libp2p-host v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-host v0.0.3/go.mod" - "github.com/libp2p/go-libp2p-http v0.2.0" - "github.com/libp2p/go-libp2p-http v0.2.0/go.mod" - "github.com/libp2p/go-libp2p-interface-connmgr v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-interface-connmgr v0.0.4/go.mod" - "github.com/libp2p/go-libp2p-interface-connmgr v0.0.5/go.mod" - "github.com/libp2p/go-libp2p-interface-pnet v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-kad-dht v0.11.1" - "github.com/libp2p/go-libp2p-kad-dht v0.11.1/go.mod" - "github.com/libp2p/go-libp2p-kbucket v0.4.7" - "github.com/libp2p/go-libp2p-kbucket v0.4.7/go.mod" - "github.com/libp2p/go-libp2p-loggables v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-loggables v0.1.0" - "github.com/libp2p/go-libp2p-loggables v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-metrics v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-mplex v0.1.1/go.mod" - "github.com/libp2p/go-libp2p-mplex v0.2.0/go.mod" - "github.com/libp2p/go-libp2p-mplex v0.2.1/go.mod" - "github.com/libp2p/go-libp2p-mplex v0.2.2/go.mod" - "github.com/libp2p/go-libp2p-mplex v0.2.3/go.mod" - "github.com/libp2p/go-libp2p-mplex v0.3.0/go.mod" - "github.com/libp2p/go-libp2p-mplex v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-mplex v0.4.1" - "github.com/libp2p/go-libp2p-mplex v0.4.1/go.mod" - "github.com/libp2p/go-libp2p-nat v0.0.4/go.mod" - "github.com/libp2p/go-libp2p-nat v0.0.5/go.mod" - "github.com/libp2p/go-libp2p-nat v0.0.6" - "github.com/libp2p/go-libp2p-nat v0.0.6/go.mod" - "github.com/libp2p/go-libp2p-net v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-net v0.0.2/go.mod" - "github.com/libp2p/go-libp2p-netutil v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-netutil v0.1.0" - "github.com/libp2p/go-libp2p-netutil v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-noise v0.1.1/go.mod" - "github.com/libp2p/go-libp2p-noise v0.1.2" - "github.com/libp2p/go-libp2p-noise v0.1.2/go.mod" - "github.com/libp2p/go-libp2p-peer v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-peer v0.1.1/go.mod" - "github.com/libp2p/go-libp2p-peer v0.2.0" - "github.com/libp2p/go-libp2p-peer v0.2.0/go.mod" - "github.com/libp2p/go-libp2p-peerstore v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-peerstore v0.0.6/go.mod" - "github.com/libp2p/go-libp2p-peerstore v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-peerstore v0.1.3/go.mod" - "github.com/libp2p/go-libp2p-peerstore v0.1.4/go.mod" - "github.com/libp2p/go-libp2p-peerstore v0.2.0/go.mod" - "github.com/libp2p/go-libp2p-peerstore v0.2.1/go.mod" - "github.com/libp2p/go-libp2p-peerstore v0.2.2/go.mod" - "github.com/libp2p/go-libp2p-peerstore v0.2.6" - "github.com/libp2p/go-libp2p-peerstore v0.2.6/go.mod" - "github.com/libp2p/go-libp2p-pnet v0.2.0" - "github.com/libp2p/go-libp2p-pnet v0.2.0/go.mod" - "github.com/libp2p/go-libp2p-protocol v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-protocol v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-pubsub v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-pubsub v0.4.1" - "github.com/libp2p/go-libp2p-pubsub v0.4.1/go.mod" - "github.com/libp2p/go-libp2p-pubsub-router v0.4.0" - "github.com/libp2p/go-libp2p-pubsub-router v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-quic-transport v0.10.0" - "github.com/libp2p/go-libp2p-quic-transport v0.10.0/go.mod" - "github.com/libp2p/go-libp2p-record v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-record v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-record v0.1.1/go.mod" - "github.com/libp2p/go-libp2p-record v0.1.2/go.mod" - "github.com/libp2p/go-libp2p-record v0.1.3" - "github.com/libp2p/go-libp2p-record v0.1.3/go.mod" - "github.com/libp2p/go-libp2p-routing v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-routing-helpers v0.2.3" - "github.com/libp2p/go-libp2p-routing-helpers v0.2.3/go.mod" - "github.com/libp2p/go-libp2p-secio v0.0.3/go.mod" - "github.com/libp2p/go-libp2p-secio v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-secio v0.2.0/go.mod" - "github.com/libp2p/go-libp2p-secio v0.2.1/go.mod" - "github.com/libp2p/go-libp2p-secio v0.2.2" - "github.com/libp2p/go-libp2p-secio v0.2.2/go.mod" - "github.com/libp2p/go-libp2p-swarm v0.0.6/go.mod" - "github.com/libp2p/go-libp2p-swarm v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-swarm v0.2.2/go.mod" - "github.com/libp2p/go-libp2p-swarm v0.2.3/go.mod" - "github.com/libp2p/go-libp2p-swarm v0.2.8/go.mod" - "github.com/libp2p/go-libp2p-swarm v0.3.0/go.mod" - "github.com/libp2p/go-libp2p-swarm v0.3.1/go.mod" - "github.com/libp2p/go-libp2p-swarm v0.4.0" - "github.com/libp2p/go-libp2p-swarm v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-testing v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-testing v0.0.2/go.mod" - "github.com/libp2p/go-libp2p-testing v0.0.3/go.mod" - "github.com/libp2p/go-libp2p-testing v0.0.4/go.mod" - "github.com/libp2p/go-libp2p-testing v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-testing v0.1.1/go.mod" - "github.com/libp2p/go-libp2p-testing v0.1.2-0.20200422005655-8775583591d8/go.mod" - "github.com/libp2p/go-libp2p-testing v0.3.0/go.mod" - "github.com/libp2p/go-libp2p-testing v0.4.0" - "github.com/libp2p/go-libp2p-testing v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-tls v0.1.3" - "github.com/libp2p/go-libp2p-tls v0.1.3/go.mod" - "github.com/libp2p/go-libp2p-transport v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-transport v0.0.5/go.mod" - "github.com/libp2p/go-libp2p-transport-upgrader v0.0.4/go.mod" - "github.com/libp2p/go-libp2p-transport-upgrader v0.1.1/go.mod" - "github.com/libp2p/go-libp2p-transport-upgrader v0.2.0/go.mod" - "github.com/libp2p/go-libp2p-transport-upgrader v0.3.0/go.mod" - "github.com/libp2p/go-libp2p-transport-upgrader v0.4.0" - "github.com/libp2p/go-libp2p-transport-upgrader v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.1.2/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.1.3/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.2.0/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.2.1/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.2.2/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.2.5/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.2.7/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.2.8/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.4.0/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.5.0/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.5.1" - "github.com/libp2p/go-libp2p-yamux v0.5.1/go.mod" - "github.com/libp2p/go-maddr-filter v0.0.1/go.mod" - "github.com/libp2p/go-maddr-filter v0.0.4/go.mod" - "github.com/libp2p/go-maddr-filter v0.0.5/go.mod" - "github.com/libp2p/go-maddr-filter v0.1.0/go.mod" - "github.com/libp2p/go-mplex v0.0.3/go.mod" - "github.com/libp2p/go-mplex v0.0.4/go.mod" - "github.com/libp2p/go-mplex v0.1.0/go.mod" - "github.com/libp2p/go-mplex v0.1.1/go.mod" - "github.com/libp2p/go-mplex v0.1.2/go.mod" - "github.com/libp2p/go-mplex v0.2.0/go.mod" - "github.com/libp2p/go-mplex v0.3.0" - "github.com/libp2p/go-mplex v0.3.0/go.mod" - "github.com/libp2p/go-msgio v0.0.2/go.mod" - "github.com/libp2p/go-msgio v0.0.3/go.mod" - "github.com/libp2p/go-msgio v0.0.4/go.mod" - "github.com/libp2p/go-msgio v0.0.6" - "github.com/libp2p/go-msgio v0.0.6/go.mod" - "github.com/libp2p/go-nat v0.0.3/go.mod" - "github.com/libp2p/go-nat v0.0.4/go.mod" - "github.com/libp2p/go-nat v0.0.5" - "github.com/libp2p/go-nat v0.0.5/go.mod" - "github.com/libp2p/go-netroute v0.1.2/go.mod" - "github.com/libp2p/go-netroute v0.1.3" - "github.com/libp2p/go-netroute v0.1.3/go.mod" - "github.com/libp2p/go-openssl v0.0.2/go.mod" - "github.com/libp2p/go-openssl v0.0.3/go.mod" - "github.com/libp2p/go-openssl v0.0.4/go.mod" - "github.com/libp2p/go-openssl v0.0.5/go.mod" - "github.com/libp2p/go-openssl v0.0.7" - "github.com/libp2p/go-openssl v0.0.7/go.mod" - "github.com/libp2p/go-reuseport v0.0.1/go.mod" - "github.com/libp2p/go-reuseport v0.0.2" - "github.com/libp2p/go-reuseport v0.0.2/go.mod" - "github.com/libp2p/go-reuseport-transport v0.0.2/go.mod" - "github.com/libp2p/go-reuseport-transport v0.0.3/go.mod" - "github.com/libp2p/go-reuseport-transport v0.0.4" - "github.com/libp2p/go-reuseport-transport v0.0.4/go.mod" - "github.com/libp2p/go-sockaddr v0.0.2" - "github.com/libp2p/go-sockaddr v0.0.2/go.mod" - "github.com/libp2p/go-socket-activation v0.0.2" - "github.com/libp2p/go-socket-activation v0.0.2/go.mod" - "github.com/libp2p/go-stream-muxer v0.0.1/go.mod" - "github.com/libp2p/go-stream-muxer v0.1.0/go.mod" - "github.com/libp2p/go-stream-muxer-multistream v0.1.1/go.mod" - "github.com/libp2p/go-stream-muxer-multistream v0.2.0/go.mod" - "github.com/libp2p/go-stream-muxer-multistream v0.3.0" - "github.com/libp2p/go-stream-muxer-multistream v0.3.0/go.mod" - "github.com/libp2p/go-tcp-transport v0.0.4/go.mod" - "github.com/libp2p/go-tcp-transport v0.1.0/go.mod" - "github.com/libp2p/go-tcp-transport v0.1.1/go.mod" - "github.com/libp2p/go-tcp-transport v0.2.0/go.mod" - "github.com/libp2p/go-tcp-transport v0.2.1" - "github.com/libp2p/go-tcp-transport v0.2.1/go.mod" - "github.com/libp2p/go-testutil v0.0.1/go.mod" - "github.com/libp2p/go-testutil v0.1.0/go.mod" - "github.com/libp2p/go-ws-transport v0.0.5/go.mod" - "github.com/libp2p/go-ws-transport v0.1.0/go.mod" - "github.com/libp2p/go-ws-transport v0.2.0/go.mod" - "github.com/libp2p/go-ws-transport v0.3.0/go.mod" - "github.com/libp2p/go-ws-transport v0.3.1/go.mod" - "github.com/libp2p/go-ws-transport v0.4.0" - "github.com/libp2p/go-ws-transport v0.4.0/go.mod" - "github.com/libp2p/go-yamux v1.2.1/go.mod" - "github.com/libp2p/go-yamux v1.2.2/go.mod" - "github.com/libp2p/go-yamux v1.2.3/go.mod" - "github.com/libp2p/go-yamux v1.3.0/go.mod" - "github.com/libp2p/go-yamux v1.3.3/go.mod" - "github.com/libp2p/go-yamux v1.3.5/go.mod" - "github.com/libp2p/go-yamux v1.3.7/go.mod" - "github.com/libp2p/go-yamux v1.4.0/go.mod" - "github.com/libp2p/go-yamux v1.4.1" - "github.com/libp2p/go-yamux v1.4.1/go.mod" - "github.com/libp2p/go-yamux/v2 v2.0.0" - "github.com/libp2p/go-yamux/v2 v2.0.0/go.mod" - "github.com/lucas-clemente/quic-go v0.19.3" - "github.com/lucas-clemente/quic-go v0.19.3/go.mod" - "github.com/lunixbochs/vtclean v1.0.0/go.mod" - "github.com/magiconair/properties v1.8.0/go.mod" - "github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329/go.mod" - "github.com/mailru/easyjson v0.0.0-20190312143242-1de009706dbe/go.mod" - "github.com/marten-seemann/qpack v0.2.1/go.mod" - "github.com/marten-seemann/qtls v0.10.0" - "github.com/marten-seemann/qtls v0.10.0/go.mod" - "github.com/marten-seemann/qtls-go1-15 v0.1.1" - "github.com/marten-seemann/qtls-go1-15 v0.1.1/go.mod" - "github.com/mattn/go-colorable v0.0.9/go.mod" - "github.com/mattn/go-colorable v0.1.1/go.mod" - "github.com/mattn/go-colorable v0.1.2/go.mod" - "github.com/mattn/go-colorable v0.1.4" - "github.com/mattn/go-colorable v0.1.4/go.mod" - "github.com/mattn/go-isatty v0.0.4/go.mod" - "github.com/mattn/go-isatty v0.0.5/go.mod" - "github.com/mattn/go-isatty v0.0.8/go.mod" - "github.com/mattn/go-isatty v0.0.11" - "github.com/mattn/go-isatty v0.0.11/go.mod" - "github.com/mattn/go-runewidth v0.0.4/go.mod" - "github.com/mattn/go-runewidth v0.0.9" - "github.com/mattn/go-runewidth v0.0.9/go.mod" - "github.com/matttproud/golang_protobuf_extensions v1.0.1" - "github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod" - "github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b" - "github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b/go.mod" - "github.com/microcosm-cc/bluemonday v1.0.1/go.mod" - "github.com/miekg/dns v1.1.12/go.mod" - "github.com/miekg/dns v1.1.28/go.mod" - "github.com/miekg/dns v1.1.31" - "github.com/miekg/dns v1.1.31/go.mod" - "github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1" - "github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1/go.mod" - "github.com/minio/sha256-simd v0.0.0-20190131020904-2d45a736cd16/go.mod" - "github.com/minio/sha256-simd v0.0.0-20190328051042-05b4dd3047e5/go.mod" - "github.com/minio/sha256-simd v0.1.0/go.mod" - "github.com/minio/sha256-simd v0.1.1-0.20190913151208-6de447530771/go.mod" - "github.com/minio/sha256-simd v0.1.1" - "github.com/minio/sha256-simd v0.1.1/go.mod" - "github.com/mitchellh/go-homedir v1.1.0" - "github.com/mitchellh/go-homedir v1.1.0/go.mod" - "github.com/mitchellh/mapstructure v1.1.2/go.mod" - "github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod" - "github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod" - "github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod" - "github.com/modern-go/reflect2 v1.0.1/go.mod" - "github.com/mr-tron/base58 v1.1.0/go.mod" - "github.com/mr-tron/base58 v1.1.1/go.mod" - "github.com/mr-tron/base58 v1.1.2/go.mod" - "github.com/mr-tron/base58 v1.1.3/go.mod" - "github.com/mr-tron/base58 v1.2.0" - "github.com/mr-tron/base58 v1.2.0/go.mod" - "github.com/multiformats/go-base32 v0.0.3" - "github.com/multiformats/go-base32 v0.0.3/go.mod" - "github.com/multiformats/go-base36 v0.1.0" - "github.com/multiformats/go-base36 v0.1.0/go.mod" - "github.com/multiformats/go-multiaddr v0.0.1/go.mod" - "github.com/multiformats/go-multiaddr v0.0.2/go.mod" - "github.com/multiformats/go-multiaddr v0.0.4/go.mod" - "github.com/multiformats/go-multiaddr v0.1.0/go.mod" - "github.com/multiformats/go-multiaddr v0.1.1/go.mod" - "github.com/multiformats/go-multiaddr v0.2.0/go.mod" - "github.com/multiformats/go-multiaddr v0.2.1/go.mod" - "github.com/multiformats/go-multiaddr v0.2.2/go.mod" - "github.com/multiformats/go-multiaddr v0.3.0/go.mod" - "github.com/multiformats/go-multiaddr v0.3.1" - "github.com/multiformats/go-multiaddr v0.3.1/go.mod" - "github.com/multiformats/go-multiaddr-dns v0.0.1/go.mod" - "github.com/multiformats/go-multiaddr-dns v0.0.2/go.mod" - "github.com/multiformats/go-multiaddr-dns v0.2.0" - "github.com/multiformats/go-multiaddr-dns v0.2.0/go.mod" - "github.com/multiformats/go-multiaddr-fmt v0.0.1/go.mod" - "github.com/multiformats/go-multiaddr-fmt v0.1.0" - "github.com/multiformats/go-multiaddr-fmt v0.1.0/go.mod" - "github.com/multiformats/go-multiaddr-net v0.0.1/go.mod" - "github.com/multiformats/go-multiaddr-net v0.1.0/go.mod" - "github.com/multiformats/go-multiaddr-net v0.1.1/go.mod" - "github.com/multiformats/go-multiaddr-net v0.1.2/go.mod" - "github.com/multiformats/go-multiaddr-net v0.1.3/go.mod" - "github.com/multiformats/go-multiaddr-net v0.1.4/go.mod" - "github.com/multiformats/go-multiaddr-net v0.1.5/go.mod" - "github.com/multiformats/go-multiaddr-net v0.2.0" - "github.com/multiformats/go-multiaddr-net v0.2.0/go.mod" - "github.com/multiformats/go-multibase v0.0.1/go.mod" - "github.com/multiformats/go-multibase v0.0.3" - "github.com/multiformats/go-multibase v0.0.3/go.mod" - "github.com/multiformats/go-multihash v0.0.1/go.mod" - "github.com/multiformats/go-multihash v0.0.5/go.mod" - "github.com/multiformats/go-multihash v0.0.8/go.mod" - "github.com/multiformats/go-multihash v0.0.9/go.mod" - "github.com/multiformats/go-multihash v0.0.10/go.mod" - "github.com/multiformats/go-multihash v0.0.13/go.mod" - "github.com/multiformats/go-multihash v0.0.14" - "github.com/multiformats/go-multihash v0.0.14/go.mod" - "github.com/multiformats/go-multistream v0.0.1/go.mod" - "github.com/multiformats/go-multistream v0.0.4/go.mod" - "github.com/multiformats/go-multistream v0.1.0/go.mod" - "github.com/multiformats/go-multistream v0.1.1/go.mod" - "github.com/multiformats/go-multistream v0.2.0" - "github.com/multiformats/go-multistream v0.2.0/go.mod" - "github.com/multiformats/go-varint v0.0.1/go.mod" - "github.com/multiformats/go-varint v0.0.2/go.mod" - "github.com/multiformats/go-varint v0.0.5/go.mod" - "github.com/multiformats/go-varint v0.0.6" - "github.com/multiformats/go-varint v0.0.6/go.mod" - "github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod" - "github.com/neelance/astrewrite v0.0.0-20160511093645-99348263ae86/go.mod" - "github.com/neelance/sourcemap v0.0.0-20151028013722-8c68805598ab/go.mod" - "github.com/nxadm/tail v1.4.4" - "github.com/nxadm/tail v1.4.4/go.mod" - "github.com/onsi/ginkgo v1.6.0/go.mod" - "github.com/onsi/ginkgo v1.7.0/go.mod" - "github.com/onsi/ginkgo v1.8.0/go.mod" - "github.com/onsi/ginkgo v1.12.0/go.mod" - "github.com/onsi/ginkgo v1.12.1/go.mod" - "github.com/onsi/ginkgo v1.14.0" - "github.com/onsi/ginkgo v1.14.0/go.mod" - "github.com/onsi/gomega v1.4.3/go.mod" - "github.com/onsi/gomega v1.5.0/go.mod" - "github.com/onsi/gomega v1.7.1/go.mod" - "github.com/onsi/gomega v1.9.0/go.mod" - "github.com/onsi/gomega v1.10.1" - "github.com/onsi/gomega v1.10.1/go.mod" - "github.com/opentracing/opentracing-go v1.0.2/go.mod" - "github.com/opentracing/opentracing-go v1.1.0/go.mod" - "github.com/opentracing/opentracing-go v1.2.0" - "github.com/opentracing/opentracing-go v1.2.0/go.mod" - "github.com/openzipkin/zipkin-go v0.1.1/go.mod" - "github.com/pelletier/go-toml v1.2.0/go.mod" - "github.com/pkg/errors v0.8.0/go.mod" - "github.com/pkg/errors v0.8.1/go.mod" - "github.com/pkg/errors v0.9.1" - "github.com/pkg/errors v0.9.1/go.mod" - "github.com/pmezard/go-difflib v1.0.0" - "github.com/pmezard/go-difflib v1.0.0/go.mod" - "github.com/polydawn/refmt v0.0.0-20190221155625-df39d6c2d992/go.mod" - "github.com/polydawn/refmt v0.0.0-20190408063855-01bf1e26dd14/go.mod" - "github.com/polydawn/refmt v0.0.0-20190807091052-3d65705ee9f1/go.mod" - "github.com/polydawn/refmt v0.0.0-20190809202753-05966cbd336a" - "github.com/polydawn/refmt v0.0.0-20190809202753-05966cbd336a/go.mod" - "github.com/prometheus/client_golang v0.8.0/go.mod" - "github.com/prometheus/client_golang v0.9.1/go.mod" - "github.com/prometheus/client_golang v0.9.2/go.mod" - "github.com/prometheus/client_golang v1.0.0/go.mod" - "github.com/prometheus/client_golang v1.2.1/go.mod" - "github.com/prometheus/client_golang v1.7.1" - "github.com/prometheus/client_golang v1.7.1/go.mod" - "github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod" - "github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod" - "github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod" - "github.com/prometheus/client_model v0.2.0" - "github.com/prometheus/client_model v0.2.0/go.mod" - "github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e/go.mod" - "github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod" - "github.com/prometheus/common v0.4.1/go.mod" - "github.com/prometheus/common v0.7.0/go.mod" - "github.com/prometheus/common v0.10.0" - "github.com/prometheus/common v0.10.0/go.mod" - "github.com/prometheus/procfs v0.0.0-20180725123919-05ee40e3a273/go.mod" - "github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod" - "github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod" - "github.com/prometheus/procfs v0.0.2/go.mod" - "github.com/prometheus/procfs v0.0.5/go.mod" - "github.com/prometheus/procfs v0.0.6/go.mod" - "github.com/prometheus/procfs v0.1.3" - "github.com/prometheus/procfs v0.1.3/go.mod" - "github.com/prometheus/statsd_exporter v0.15.0" - "github.com/prometheus/statsd_exporter v0.15.0/go.mod" - "github.com/rogpeppe/go-internal v1.3.0/go.mod" - "github.com/rs/cors v1.7.0" - "github.com/rs/cors v1.7.0/go.mod" - "github.com/russross/blackfriday v1.5.2/go.mod" - "github.com/russross/blackfriday/v2 v2.0.1/go.mod" - "github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd/go.mod" - "github.com/sergi/go-diff v1.0.0/go.mod" - "github.com/shurcooL/component v0.0.0-20170202220835-f88ec8f54cc4/go.mod" - "github.com/shurcooL/events v0.0.0-20181021180414-410e4ca65f48/go.mod" - "github.com/shurcooL/github_flavored_markdown v0.0.0-20181002035957-2122de532470/go.mod" - "github.com/shurcooL/go v0.0.0-20180423040247-9e1955d9fb6e/go.mod" - "github.com/shurcooL/go-goon v0.0.0-20170922171312-37c2f522c041/go.mod" - "github.com/shurcooL/gofontwoff v0.0.0-20180329035133-29b52fc0a18d/go.mod" - "github.com/shurcooL/gopherjslib v0.0.0-20160914041154-feb6d3990c2c/go.mod" - "github.com/shurcooL/highlight_diff v0.0.0-20170515013008-09bb4053de1b/go.mod" - "github.com/shurcooL/highlight_go v0.0.0-20181028180052-98c3abbbae20/go.mod" - "github.com/shurcooL/home v0.0.0-20181020052607-80b7ffcb30f9/go.mod" - "github.com/shurcooL/htmlg v0.0.0-20170918183704-d01228ac9e50/go.mod" - "github.com/shurcooL/httperror v0.0.0-20170206035902-86b7830d14cc/go.mod" - "github.com/shurcooL/httpfs v0.0.0-20171119174359-809beceb2371/go.mod" - "github.com/shurcooL/httpgzip v0.0.0-20180522190206-b1c53ac65af9/go.mod" - "github.com/shurcooL/issues v0.0.0-20181008053335-6292fdc1e191/go.mod" - "github.com/shurcooL/issuesapp v0.0.0-20180602232740-048589ce2241/go.mod" - "github.com/shurcooL/notifications v0.0.0-20181007000457-627ab5aea122/go.mod" - "github.com/shurcooL/octicon v0.0.0-20181028054416-fa4f57f9efb2/go.mod" - "github.com/shurcooL/reactions v0.0.0-20181006231557-f2e0b4ca5b82/go.mod" - "github.com/shurcooL/sanitized_anchor_name v0.0.0-20170918181015-86672fcb3f95/go.mod" - "github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod" - "github.com/shurcooL/users v0.0.0-20180125191416-49c67e49c537/go.mod" - "github.com/shurcooL/webdavfs v0.0.0-20170829043945-18c3829fa133/go.mod" - "github.com/sirupsen/logrus v1.2.0/go.mod" - "github.com/sirupsen/logrus v1.4.2" - "github.com/sirupsen/logrus v1.4.2/go.mod" - "github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod" - "github.com/smartystreets/assertions v1.0.0/go.mod" - "github.com/smartystreets/assertions v1.0.1" - "github.com/smartystreets/assertions v1.0.1/go.mod" - "github.com/smartystreets/goconvey v0.0.0-20190222223459-a17d461953aa/go.mod" - "github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod" - "github.com/smartystreets/goconvey v1.6.4" - "github.com/smartystreets/goconvey v1.6.4/go.mod" - "github.com/smola/gocompat v0.2.0/go.mod" - "github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d/go.mod" - "github.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e/go.mod" - "github.com/spacemonkeygo/openssl v0.0.0-20181017203307-c2dcc5cca94a/go.mod" - "github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572" - "github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572/go.mod" - "github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod" - "github.com/spaolacci/murmur3 v1.1.0" - "github.com/spaolacci/murmur3 v1.1.0/go.mod" - "github.com/spf13/afero v1.1.2/go.mod" - "github.com/spf13/cast v1.3.0/go.mod" - "github.com/spf13/cobra v0.0.5/go.mod" - "github.com/spf13/jwalterweatherman v1.0.0/go.mod" - "github.com/spf13/pflag v1.0.3/go.mod" - "github.com/spf13/viper v1.3.2/go.mod" - "github.com/src-d/envconfig v1.0.0/go.mod" - "github.com/stretchr/objx v0.1.0/go.mod" - "github.com/stretchr/objx v0.1.1/go.mod" - "github.com/stretchr/testify v1.2.2/go.mod" - "github.com/stretchr/testify v1.3.0/go.mod" - "github.com/stretchr/testify v1.4.0/go.mod" - "github.com/stretchr/testify v1.5.1/go.mod" - "github.com/stretchr/testify v1.6.1/go.mod" - "github.com/stretchr/testify v1.7.0" - "github.com/stretchr/testify v1.7.0/go.mod" - "github.com/syndtr/goleveldb v1.0.0" - "github.com/syndtr/goleveldb v1.0.0/go.mod" - "github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07/go.mod" - "github.com/texttheater/golang-levenshtein v0.0.0-20180516184445-d188e65d659e" - "github.com/texttheater/golang-levenshtein v0.0.0-20180516184445-d188e65d659e/go.mod" - "github.com/tv42/httpunix v0.0.0-20191220191345-2ba4b9c3382c" - "github.com/tv42/httpunix v0.0.0-20191220191345-2ba4b9c3382c/go.mod" - "github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod" - "github.com/urfave/cli/v2 v2.0.0/go.mod" - "github.com/viant/assertly v0.4.8/go.mod" - "github.com/viant/toolbox v0.24.0/go.mod" - "github.com/warpfork/go-wish v0.0.0-20180510122957-5ad1f5abf436/go.mod" - "github.com/warpfork/go-wish v0.0.0-20190328234359-8b3e70f8e830/go.mod" - "github.com/warpfork/go-wish v0.0.0-20200122115046-b9ea61034e4a" - "github.com/warpfork/go-wish v0.0.0-20200122115046-b9ea61034e4a/go.mod" - "github.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc" - "github.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc/go.mod" - "github.com/whyrusleeping/cbor-gen v0.0.0-20200123233031-1cdf64d27158/go.mod" - "github.com/whyrusleeping/cbor-gen v0.0.0-20200710004633-5379fc63235d" - "github.com/whyrusleeping/cbor-gen v0.0.0-20200710004633-5379fc63235d/go.mod" - "github.com/whyrusleeping/chunker v0.0.0-20181014151217-fe64bd25879f" - "github.com/whyrusleeping/chunker v0.0.0-20181014151217-fe64bd25879f/go.mod" - "github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1" - "github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1/go.mod" - "github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc/go.mod" - "github.com/whyrusleeping/go-logging v0.0.1/go.mod" - "github.com/whyrusleeping/go-notifier v0.0.0-20170827234753-097c5d47330f/go.mod" - "github.com/whyrusleeping/go-sysinfo v0.0.0-20190219211824-4a357d4b90b1" - "github.com/whyrusleeping/go-sysinfo v0.0.0-20190219211824-4a357d4b90b1/go.mod" - "github.com/whyrusleeping/mafmt v1.2.8/go.mod" - "github.com/whyrusleeping/mdns v0.0.0-20180901202407-ef14215e6b30/go.mod" - "github.com/whyrusleeping/mdns v0.0.0-20190826153040-b9b60ed33aa9" - "github.com/whyrusleeping/mdns v0.0.0-20190826153040-b9b60ed33aa9/go.mod" - "github.com/whyrusleeping/multiaddr-filter v0.0.0-20160516205228-e903e4adabd7" - "github.com/whyrusleeping/multiaddr-filter v0.0.0-20160516205228-e903e4adabd7/go.mod" - "github.com/whyrusleeping/tar-utils v0.0.0-20201201191210-20a61371de5b" - "github.com/whyrusleeping/tar-utils v0.0.0-20201201191210-20a61371de5b/go.mod" - "github.com/whyrusleeping/timecache v0.0.0-20160911033111-cfcb2f1abfee" - "github.com/whyrusleeping/timecache v0.0.0-20160911033111-cfcb2f1abfee/go.mod" - "github.com/x-cray/logrus-prefixed-formatter v0.5.2/go.mod" - "github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod" - "github.com/yuin/goldmark v1.1.27/go.mod" - "github.com/yuin/goldmark v1.1.32/go.mod" - "github.com/yuin/goldmark v1.2.1/go.mod" - "go.opencensus.io v0.18.0/go.mod" - "go.opencensus.io v0.21.0/go.mod" - "go.opencensus.io v0.22.0/go.mod" - "go.opencensus.io v0.22.1/go.mod" - "go.opencensus.io v0.22.2/go.mod" - "go.opencensus.io v0.22.3/go.mod" - "go.opencensus.io v0.22.4/go.mod" - "go.opencensus.io v0.22.5" - "go.opencensus.io v0.22.5/go.mod" - "go.uber.org/atomic v1.4.0/go.mod" - "go.uber.org/atomic v1.5.0/go.mod" - "go.uber.org/atomic v1.6.0" - "go.uber.org/atomic v1.6.0/go.mod" - "go.uber.org/dig v1.10.0" - "go.uber.org/dig v1.10.0/go.mod" - "go.uber.org/fx v1.13.1" - "go.uber.org/fx v1.13.1/go.mod" - "go.uber.org/goleak v0.10.0/go.mod" - "go.uber.org/goleak v1.0.0" - "go.uber.org/goleak v1.0.0/go.mod" - "go.uber.org/multierr v1.1.0/go.mod" - "go.uber.org/multierr v1.4.0/go.mod" - "go.uber.org/multierr v1.5.0" - "go.uber.org/multierr v1.5.0/go.mod" - "go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee" - "go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod" - "go.uber.org/zap v1.10.0/go.mod" - "go.uber.org/zap v1.14.1/go.mod" - "go.uber.org/zap v1.15.0/go.mod" - "go.uber.org/zap v1.16.0" - "go.uber.org/zap v1.16.0/go.mod" - "go4.org v0.0.0-20180809161055-417644f6feb5/go.mod" - "go4.org v0.0.0-20200411211856-f5505b9728dd" - "go4.org v0.0.0-20200411211856-f5505b9728dd/go.mod" - "golang.org/x/build v0.0.0-20190111050920-041ab4dc3f9d/go.mod" - "golang.org/x/crypto v0.0.0-20170930174604-9419663f5a44/go.mod" - "golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod" - "golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16/go.mod" - "golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod" - "golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod" - "golang.org/x/crypto v0.0.0-20190225124518-7f87c0fbb88b/go.mod" - "golang.org/x/crypto v0.0.0-20190228161510-8dd112bcdc25/go.mod" - "golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod" - "golang.org/x/crypto v0.0.0-20190313024323-a1f597ede03a/go.mod" - "golang.org/x/crypto v0.0.0-20190426145343-a29dc8fdc734/go.mod" - "golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod" - "golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f/go.mod" - "golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5/go.mod" - "golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod" - "golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod" - "golang.org/x/crypto v0.0.0-20190618222545-ea8f1a30c443/go.mod" - "golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod" - "golang.org/x/crypto v0.0.0-20200115085410-6d4e4cb37c7d/go.mod" - "golang.org/x/crypto v0.0.0-20200117160349-530e935923ad/go.mod" - "golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d/go.mod" - "golang.org/x/crypto v0.0.0-20200423211502-4bdfaf469ed5/go.mod" - "golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod" - "golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod" - "golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad" - "golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod" - "golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod" - "golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod" - "golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod" - "golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod" - "golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod" - "golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod" - "golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod" - "golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod" - "golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod" - "golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod" - "golang.org/x/lint v0.0.0-20180702182130-06c8688daad7/go.mod" - "golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod" - "golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod" - "golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod" - "golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod" - "golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod" - "golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod" - "golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod" - "golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod" - "golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod" - "golang.org/x/lint v0.0.0-20200302205851-738671d3881b" - "golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod" - "golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod" - "golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod" - "golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod" - "golang.org/x/mod v0.1.0/go.mod" - "golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod" - "golang.org/x/mod v0.2.0/go.mod" - "golang.org/x/mod v0.3.0" - "golang.org/x/mod v0.3.0/go.mod" - "golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod" - "golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod" - "golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod" - "golang.org/x/net v0.0.0-20181011144130-49bb7cea24b1/go.mod" - "golang.org/x/net v0.0.0-20181029044818-c44066c5c816/go.mod" - "golang.org/x/net v0.0.0-20181106065722-10aee1819953/go.mod" - "golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod" - "golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod" - "golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod" - "golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod" - "golang.org/x/net v0.0.0-20190227160552-c95aed5357e7/go.mod" - "golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod" - "golang.org/x/net v0.0.0-20190313220215-9f648a60d977/go.mod" - "golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod" - "golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod" - "golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod" - "golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod" - "golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod" - "golang.org/x/net v0.0.0-20190611141213-3f473d35a33a/go.mod" - "golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod" - "golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod" - "golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod" - "golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod" - "golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod" - "golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod" - "golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod" - "golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod" - "golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod" - "golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod" - "golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod" - "golang.org/x/net v0.0.0-20201021035429-f5854403a974" - "golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod" - "golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod" - "golang.org/x/oauth2 v0.0.0-20181017192945-9dcd33a902f4/go.mod" - "golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890/go.mod" - "golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod" - "golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod" - "golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod" - "golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d" - "golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod" - "golang.org/x/perf v0.0.0-20180704124530-6e6d33e29852/go.mod" - "golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod" - "golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod" - "golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod" - "golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod" - "golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod" - "golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod" - "golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod" - "golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod" - "golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod" - "golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod" - "golang.org/x/sync v0.0.0-20201207232520-09787c993a3a" - "golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod" - "golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod" - "golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod" - "golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod" - "golang.org/x/sys v0.0.0-20181029174526-d69651ed3497/go.mod" - "golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod" - "golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod" - "golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod" - "golang.org/x/sys v0.0.0-20190219092855-153ac476189d/go.mod" - "golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod" - "golang.org/x/sys v0.0.0-20190228124157-a34e9553db1e/go.mod" - "golang.org/x/sys v0.0.0-20190302025703-b6889370fb10/go.mod" - "golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod" - "golang.org/x/sys v0.0.0-20190316082340-a2f829d7f35f/go.mod" - "golang.org/x/sys v0.0.0-20190405154228-4b34438f7a67/go.mod" - "golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod" - "golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod" - "golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod" - "golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod" - "golang.org/x/sys v0.0.0-20190524122548-abf6ff778158/go.mod" - "golang.org/x/sys v0.0.0-20190524152521-dbbf3f1254d4/go.mod" - "golang.org/x/sys v0.0.0-20190526052359-791d8a0f4d09/go.mod" - "golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod" - "golang.org/x/sys v0.0.0-20190610200419-93c9922d18ae/go.mod" - "golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod" - "golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod" - "golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod" - "golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod" - "golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod" - "golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod" - "golang.org/x/sys v0.0.0-20191010194322-b09406accb47/go.mod" - "golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod" - "golang.org/x/sys v0.0.0-20191113165036-4c7a9d0fe056/go.mod" - "golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod" - "golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod" - "golang.org/x/sys v0.0.0-20191210023423-ac6580df4449/go.mod" - "golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod" - "golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod" - "golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod" - "golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod" - "golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod" - "golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod" - "golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod" - "golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod" - "golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod" - "golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod" - "golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod" - "golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c" - "golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod" - "golang.org/x/term v0.0.0-20201117132131-f5c789dd3221" - "golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod" - "golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod" - "golang.org/x/text v0.3.0/go.mod" - "golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod" - "golang.org/x/text v0.3.2/go.mod" - "golang.org/x/text v0.3.3" - "golang.org/x/text v0.3.3/go.mod" - "golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod" - "golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod" - "golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod" - "golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod" - "golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod" - "golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod" - "golang.org/x/tools v0.0.0-20181030000716-a0a13e073c7b/go.mod" - "golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod" - "golang.org/x/tools v0.0.0-20181130052023-1c3d964395ce/go.mod" - "golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod" - "golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod" - "golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod" - "golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod" - "golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod" - "golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod" - "golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod" - "golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod" - "golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod" - "golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod" - "golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod" - "golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod" - "golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod" - "golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod" - "golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod" - "golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod" - "golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod" - "golang.org/x/tools v0.0.0-20191030062658-86caa796c7ab/go.mod" - "golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod" - "golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod" - "golang.org/x/tools v0.0.0-20191114200427-caa0b0f7d508/go.mod" - "golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod" - "golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod" - "golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod" - "golang.org/x/tools v0.0.0-20191216052735-49a3e744a425/go.mod" - "golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod" - "golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod" - "golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod" - "golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod" - "golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod" - "golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod" - "golang.org/x/tools v0.0.0-20200827010519-17fd2f27a9e3/go.mod" - "golang.org/x/tools v0.0.0-20210106214847-113979e3529a" - "golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod" - "golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod" - "golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod" - "golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod" - "golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1" - "golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod" - "google.golang.org/api v0.0.0-20180910000450-7ca32eb868bf/go.mod" - "google.golang.org/api v0.0.0-20181030000543-1d582fd0359e/go.mod" - "google.golang.org/api v0.1.0/go.mod" - "google.golang.org/api v0.4.0/go.mod" - "google.golang.org/api v0.7.0/go.mod" - "google.golang.org/api v0.8.0/go.mod" - "google.golang.org/api v0.9.0/go.mod" - "google.golang.org/api v0.13.0/go.mod" - "google.golang.org/api v0.14.0/go.mod" - "google.golang.org/api v0.15.0/go.mod" - "google.golang.org/api v0.17.0/go.mod" - "google.golang.org/appengine v1.1.0/go.mod" - "google.golang.org/appengine v1.2.0/go.mod" - "google.golang.org/appengine v1.3.0/go.mod" - "google.golang.org/appengine v1.4.0/go.mod" - "google.golang.org/appengine v1.5.0/go.mod" - "google.golang.org/appengine v1.6.1/go.mod" - "google.golang.org/appengine v1.6.5" - "google.golang.org/appengine v1.6.5/go.mod" - "google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod" - "google.golang.org/genproto v0.0.0-20180831171423-11092d34479b/go.mod" - "google.golang.org/genproto v0.0.0-20181029155118-b69ba1387ce2/go.mod" - "google.golang.org/genproto v0.0.0-20181202183823-bd91e49a0898/go.mod" - "google.golang.org/genproto v0.0.0-20190306203927-b5d61aea6440/go.mod" - "google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod" - "google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod" - "google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod" - "google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod" - "google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod" - "google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod" - "google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod" - "google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod" - "google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod" - "google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod" - "google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod" - "google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod" - "google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013" - "google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod" - "google.golang.org/grpc v1.14.0/go.mod" - "google.golang.org/grpc v1.16.0/go.mod" - "google.golang.org/grpc v1.17.0/go.mod" - "google.golang.org/grpc v1.19.0/go.mod" - "google.golang.org/grpc v1.20.1/go.mod" - "google.golang.org/grpc v1.21.1/go.mod" - "google.golang.org/grpc v1.23.0/go.mod" - "google.golang.org/grpc v1.25.1/go.mod" - "google.golang.org/grpc v1.26.0/go.mod" - "google.golang.org/grpc v1.27.0/go.mod" - "google.golang.org/grpc v1.27.1/go.mod" - "google.golang.org/grpc v1.28.1/go.mod" - "google.golang.org/grpc v1.31.1" - "google.golang.org/grpc v1.31.1/go.mod" - "google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod" - "google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod" - "google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod" - "google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod" - "google.golang.org/protobuf v1.21.0/go.mod" - "google.golang.org/protobuf v1.22.0/go.mod" - "google.golang.org/protobuf v1.23.0/go.mod" - "google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod" - "google.golang.org/protobuf v1.25.0" - "google.golang.org/protobuf v1.25.0/go.mod" - "gopkg.in/alecthomas/kingpin.v2 v2.2.6" - "gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod" - "gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod" - "gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod" - "gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15" - "gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod" - "gopkg.in/errgo.v2 v2.1.0/go.mod" - "gopkg.in/fsnotify.v1 v1.4.7/go.mod" - "gopkg.in/inf.v0 v0.9.1/go.mod" - "gopkg.in/src-d/go-cli.v0 v0.0.0-20181105080154-d492247bbc0d/go.mod" - "gopkg.in/src-d/go-log.v1 v1.0.1/go.mod" - "gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7" - "gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod" - "gopkg.in/yaml.v2 v2.2.1/go.mod" - "gopkg.in/yaml.v2 v2.2.2/go.mod" - "gopkg.in/yaml.v2 v2.2.4/go.mod" - "gopkg.in/yaml.v2 v2.2.5/go.mod" - "gopkg.in/yaml.v2 v2.3.0" - "gopkg.in/yaml.v2 v2.3.0/go.mod" - "gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c" - "gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod" - "grpc.go4.org v0.0.0-20170609214715-11d0a25b4919/go.mod" - "honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod" - "honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod" - "honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod" - "honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod" - "honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod" - "honnef.co/go/tools v0.0.1-2019.2.3" - "honnef.co/go/tools v0.0.1-2019.2.3/go.mod" - "rsc.io/binaryregexp v0.2.0/go.mod" - "rsc.io/quote/v3 v3.1.0/go.mod" - "rsc.io/sampler v1.3.0/go.mod" - "sourcegraph.com/sourcegraph/go-diff v0.5.0/go.mod" - "sourcegraph.com/sqs/pbtypes v0.0.0-20180604144634-d3ebe8f20ae4/go.mod" -) - -go-module_set_globals -SRC_URI="https://github.com/ipfs/go-ipfs/archive/v${PV}.tar.gz -> ${P}.tar.gz - ${EGO_SUM_SRC_URI}" - -LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - !net-p2p/go-ipfs-bin - acct-group/ipfs - acct-user/ipfs - sys-fs/fuse:0 -" - -DOCS=(CHANGELOG.md CONTRIBUTING.md README.md docs/) - -#S="${WORKDIR}" - -src_compile() { - local mygoargs - mygoargs=( - -tags release - ) - go build "${mygoargs[@]}" -o ipfs ./cmd/ipfs || die - go build "${mygoargs[@]}" -o ipfswatch ./cmd/ipfswatch || die -} - -src_test() { - go test ./cmd/ipfs/... ./cmd/ipfswatch/... || die -} - -src_install() { - dobin ipfs - dobin ipfswatch - newbashcomp misc/completion/ipfs-completion.bash ipfs - einstalldocs - - systemd_dounit "${FILESDIR}/ipfs.service" - systemd_newunit "${FILESDIR}/ipfs-at.service" "ipfs@.service" - - newinitd "${FILESDIR}/ipfs.init" ipfs - newconfd "${FILESDIR}/ipfs.confd" ipfs - - keepdir /var/log/ipfs - fowners -R ipfs:ipfs /var/log/ipfs -} - -pkg_postinst() { - elog 'To be able to use the ipfs service you will need to create the ipfs repository' - elog '(eg: su -s /bin/sh -c "ipfs init -e" ipfs)' - elog 'or change IPFS_PATH of /etc/conf.d/ipfs with another with proper permissions.' -} diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz index 195eda1a50aa..2c7461bd4efa 100644 Binary files a/profiles/Manifest.gz and b/profiles/Manifest.gz differ diff --git a/profiles/package.mask b/profiles/package.mask index 56a67cacc95f..25d3a21db962 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -217,33 +217,6 @@ dev-python/python-fcl # No revdeps, bug #774498; masked for removal on 2021-12-30. dev-libs/qrosscore -# Volkmar W. Pogatzki (2021-11-28) -# Libraries without consumers. Removal in 30 days. -dev-java/commons-pool -dev-java/dict4j -dev-java/felix-gogo-command -dev-java/jama -dev-java/janino -dev-java/jchardet -dev-java/jcommon -dev-java/jdynamite -dev-java/jfreesvg -dev-java/jgrapht -dev-java/jmdns -dev-java/jsr225 -dev-java/jsr311-api -dev-java/jsr322 -dev-java/jung -dev-java/mojarra -dev-java/neuroph -dev-java/ognl -dev-java/piccolo -dev-java/portletapi -dev-java/vldocking -dev-java/ws-commons-util -dev-java/xml-security -dev-java/xmpcore - # Hans de Graaff (2021-11-26) # Mask new rubygems version for testing. This version uses a new # gentoo-defaults profile, bug #789957 diff --git a/profiles/updates/4Q-2021 b/profiles/updates/4Q-2021 index 735f05db6a10..aad8f76a9cdf 100644 --- a/profiles/updates/4Q-2021 +++ b/profiles/updates/4Q-2021 @@ -68,3 +68,4 @@ move app-emulation/lxc-templates app-containers/lxc-templates move app-emulation/lxc app-containers/lxc move dev-libs/stp sci-mathematics/stp move app-shells/fzy app-text/fzy +move dev-python/exdown dev-python/pytest-codeblocks diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 938a2b857d2a..2327d3ae7a9b 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -1215,6 +1215,8 @@ dev-ada/gtkada:static-pic - Build static library with pic code dev-ada/langkit:shared - Build shared library dev-ada/langkit:static-pic - Build static library with pic code dev-ada/libadalang:static-pic - Build static library with pic code +dev-ada/libadalang-tools:shared - Build shared library +dev-ada/libadalang-tools:static-pic - Build static library with pic code dev-ada/libgpr:shared - Build shared library dev-ada/libgpr:static-pic - Build static library with pic code dev-ada/spawn:glib - Add support to dev-libs/glib-based mainloop. @@ -1689,7 +1691,6 @@ dev-java/icedtea-bin:headless-awt - Don't install the X backend for AWT, needed dev-java/jaxen:dom4j - Includes org.jaxen.dom4j package dev-java/jaxen:jdom - Includes org.jaxen.jdom package dev-java/jaxen:xom - Includes org.jaxen.xom package -dev-java/jfreesvg:debug - Enable debugging during compilation. dev-java/jna:awt - Enables support for Java AWT dev-java/jna:nio-buffers - Enables support for NIO buffers dev-java/log4j:javamail - Build the SMTPAppender @@ -3378,10 +3379,6 @@ gui-libs/wlroots:vulkan - Enable support for the vulkan backend renderer gui-libs/wlroots:x11-backend - Enable support for handling input/output devices through x11-libs/libxcb gui-libs/xdg-desktop-portal-wlr:elogind - Enable support for rootless session via elogind gui-wm/hikari:X - Enable support for X11 applications (XWayland) -gui-wm/hikari:gamma - add gamma control for redshift -gui-wm/hikari:layershell - add support for wayland apps using layer shell -gui-wm/hikari:screencopy - add support for screen grabbing -gui-wm/hikari:virtual-io - enable virtual input/output support, needed for remote I/O in VNC gui-wm/sway:X - Enable support for X11 applications (XWayland) gui-wm/sway:swaybar - Install 'swaybar': sway's status bar component gui-wm/sway:swaybg - Install 'swaybg': allows to set a desktop background image @@ -6083,6 +6080,7 @@ net-libs/libwebsockets:smtp - Provide SMTP support net-libs/libwebsockets:sqlite3 - Require SQLITE3 support net-libs/loudmouth:asyncns - Use net-libs/libasyncns for asynchronous name resolution. net-libs/loudmouth:openssl - Enable dev-libs/openssl support instead of gnutls (which is the default). +net-libs/mbedtls:cmac - Enable block cipher-based message authentication code algorithm net-libs/mbedtls:havege - Enable the HAVEGE random generator. Warning: the HAVEGE random generator is not suitable for virtualized environments net-libs/mbedtls:programs - Build PolarSSL programs net-libs/neon:libproxy - Add support for net-libs/libproxy diff --git a/sci-chemistry/MDAnalysis/MDAnalysis-2.0.0.ebuild b/sci-chemistry/MDAnalysis/MDAnalysis-2.0.0.ebuild new file mode 100644 index 000000000000..aee4e82b683e --- /dev/null +++ b/sci-chemistry/MDAnalysis/MDAnalysis-2.0.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="A python library to analyze and manipulate molecular dynamics trajectories" +HOMEPAGE="https://www.mdanalysis.org" +SRC_URI="mirror://pypi/M/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +# TODO: fix this +# ImportError: MDAnalysis not installed properly. This can happen if your C extensions have not been built. +RESTRICT="test" + +RDEPEND=" + >=dev-python/numpy-1.16.0[${PYTHON_USEDEP}] + >=dev-python/scipy-1.0.0[${PYTHON_USEDEP}] + >=sci-biology/biopython-1.71[${PYTHON_USEDEP}] + >=dev-python/networkx-1.0[${PYTHON_USEDEP}] + >=dev-python/GridDataFormats-0.4.0[${PYTHON_USEDEP}] + >=dev-python/joblib-0.12[${PYTHON_USEDEP}] + >=dev-python/matplotlib-1.5.1[${PYTHON_USEDEP}] + >=dev-python/mmtf-python-1.0.0[${PYTHON_USEDEP}] + >=dev-python/tqdm-4.43.0[${PYTHON_USEDEP}] + >=dev-python/gsd-1.9.3[${PYTHON_USEDEP}] + dev-python/threadpoolctl[${PYTHON_USEDEP}] +" +BDEPEND="${RDEPEND}" + +distutils_enable_tests nose diff --git a/sci-chemistry/MDAnalysis/Manifest b/sci-chemistry/MDAnalysis/Manifest index 5a903a9f3b7f..721870b0e526 100644 --- a/sci-chemistry/MDAnalysis/Manifest +++ b/sci-chemistry/MDAnalysis/Manifest @@ -1 +1,2 @@ DIST MDAnalysis-1.0.0.tar.gz 19552874 BLAKE2B dab625a898d71a67a37ac5b58eb23ded9487f475e3c76f6c335a0ed5b32a43785d0473d089fcfc56c07263d82248bf5ee7b50c513441b10fc97f97b49411cc5f SHA512 4a001f45695308dd5f296bd2850d5d585c065e6b0f55efca65d91e452d78c85f13fd614eca0176a8d330e14a1c9e8ccbb919c3d4ae995b1945d09dc3ad687195 +DIST MDAnalysis-2.0.0.tar.gz 3436654 BLAKE2B b29734dd61bfa1e4e1d6ead0eb9a2d00869d1adce18edf95b9368bdcc16b0d71d0d6536a7df48787034a623bf52585e1636842dcaaa9dde08a69576868c1657b SHA512 037eb3c709b9ddbdb2ba9b26a6632ff99a95331c3968176573076e4e208c8644c3ea262e1e9880f185eb080ff90180d887444cab0dfbfad04fc254d87f1ff986 diff --git a/sci-chemistry/Manifest.gz b/sci-chemistry/Manifest.gz index 44e11544063e..137e53a85cb7 100644 Binary files a/sci-chemistry/Manifest.gz and b/sci-chemistry/Manifest.gz differ diff --git a/sci-chemistry/mdtraj/Manifest b/sci-chemistry/mdtraj/Manifest index 369fb48765ab..353f6958a591 100644 --- a/sci-chemistry/mdtraj/Manifest +++ b/sci-chemistry/mdtraj/Manifest @@ -1 +1,2 @@ DIST mdtraj-1.9.4.tar.gz 2133297 BLAKE2B c1507246bf0c8d7f6753f3d505f940e6f2f001361e42f10c9775647a7e6b58edf2d3953a8e48932f6bf9ad90b27e1baf30df6a7c1a590e49a860175822a25360 SHA512 55f67546db20ce63da3af2231df459e9983e15a65da960784613f746dcce820fe6b0deffbb21b528e93fc6cf674dc7a25ee11110894d2a89e5504e20d200ca38 +DIST mdtraj-1.9.7.tar.gz 2087085 BLAKE2B 430b42eddee0be8beba47994efd16515727970ac7acb36007c9b153cdb474551e5ea228f78a194fa9672d5b169753a9db3c090412bf749b3f1e9323bad9f52de SHA512 5dc9d474909a160e0b1d7989325e8190d1c593087f0130854094eb9c49bc00fd631ea19142d396d49aa7a3dadddaf535b5e811f7574ffff36f0cd22f14691067 diff --git a/sci-chemistry/mdtraj/mdtraj-1.9.7.ebuild b/sci-chemistry/mdtraj/mdtraj-1.9.7.ebuild new file mode 100644 index 000000000000..b069f9456270 --- /dev/null +++ b/sci-chemistry/mdtraj/mdtraj-1.9.7.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Read, write and analyze MD trajectories with only a few lines of Python code" +HOMEPAGE="http://mdtraj.org" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + dev-python/astunparse[${PYTHON_USEDEP}] + dev-python/astor[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/pandas[${PYTHON_USEDEP}] + dev-python/pytables[${PYTHON_USEDEP}] + dev-python/pyparsing[${PYTHON_USEDEP}] + dev-python/networkx[${PYTHON_USEDEP}] + dev-python/scipy[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + test? ( + dev-python/jupyter_client[${PYTHON_USEDEP}] + dev-python/nbformat[${PYTHON_USEDEP}] + sci-libs/scikit-learn[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests --install pytest + +python_prepare_all() { + sed -e "s:re.match('build.*(mdtraj.*)', output_dir).group(1):'.':g" \ + -i basesetup.py || die + distutils-r1_python_prepare_all +} diff --git a/sci-electronics/Manifest.gz b/sci-electronics/Manifest.gz index 5475c3489742..72b5a7e6a1bd 100644 Binary files a/sci-electronics/Manifest.gz and b/sci-electronics/Manifest.gz differ diff --git a/sci-electronics/xnec2c/Manifest b/sci-electronics/xnec2c/Manifest index 3f5c8f207b13..892ff039cc4a 100644 --- a/sci-electronics/xnec2c/Manifest +++ b/sci-electronics/xnec2c/Manifest @@ -1,2 +1,3 @@ DIST xnec2c-4.1.1.tar.bz2 947969 BLAKE2B 81794dc557d5cc845043be97e07b628e69dcd26fddb3886d11bf31374eba0187491ad9787187f8f4a19cf04f644288c680d3b8778a7b6e144209951b25bbfbf1 SHA512 3a97521f568d79158d5d224958e4cb3708de8214476ba228f9ce0ac122899eb9b06f596d5b0c43a85a18dbd6d86e0751f1a70128c14dd8972f10deeb5a1db980 DIST xnec2c-4.2.tar.bz2 939408 BLAKE2B 5fbecf436bfebb6979c12d7f76d708a21d784ee5f4f38c6010c5fd16ebe5324ea5469ea578c4ac7fabc26a82e7ea5d5bf6206be79482a9e454183c7b082a20a8 SHA512 bc0929e3cb01eb355c1eb8615087cc70c4585db75d0e6664237e8e268c5dc2159ec9852d917c9fe6b06a3fa780d7ae0b806c2e5cbf48a60622ee4558d9d82063 +DIST xnec2c-v4.3.4.tar.gz 974922 BLAKE2B e6243ca37bf5acc91e523c8444121afb7b56d4cdfcf64120987aebde321ddaecc4c63653e60353d300c987af65e5ecc4f441b4f1aaa72ed88bbcd0833da89d40 SHA512 5b29b6679117e384d0f0c671a5ed3a902012fd18832e89af894cdb26ac7ec4e7e9de5a4195b7fc81de1481ad253fb77483ee05f15ed608a3cfaa32de4071918c diff --git a/sci-electronics/xnec2c/xnec2c-4.3.4.ebuild b/sci-electronics/xnec2c/xnec2c-4.3.4.ebuild new file mode 100644 index 000000000000..dee965c2daa6 --- /dev/null +++ b/sci-electronics/xnec2c/xnec2c-4.3.4.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools xdg-utils + +MY_P=${PN}-v${PV} + +DESCRIPTION="A GTK+ graphical interactive version of nec2c" +HOMEPAGE="https://www.xnec2c.org" +SRC_URI="https://www.xnec2c.org/releases/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples" + +RDEPEND="dev-libs/glib:2 + x11-libs/gtk+:3" +DEPEND="${RDEPEND} + sys-devel/gettext" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + eapply_user + eapply "${FILESDIR}/${PN}-template.patch" + eautoreconf +} + +src_install() { + default + + docompress -x /usr/share/man + dodoc AUTHORS README doc/*.txt + use doc && dodoc -r doc/*.html doc/images + if use examples ; then + docinto examples + dodoc examples/* + fi +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} diff --git a/sci-geosciences/Manifest.gz b/sci-geosciences/Manifest.gz index 164fe7702f2c..824b533a223e 100644 Binary files a/sci-geosciences/Manifest.gz and b/sci-geosciences/Manifest.gz differ diff --git a/sci-geosciences/grass/grass-7.8.5.ebuild b/sci-geosciences/grass/grass-7.8.5-r1.ebuild similarity index 98% rename from sci-geosciences/grass/grass-7.8.5.ebuild rename to sci-geosciences/grass/grass-7.8.5-r1.ebuild index 755437aec9cf..d1341ec38da6 100644 --- a/sci-geosciences/grass/grass-7.8.5.ebuild +++ b/sci-geosciences/grass/grass-7.8.5-r1.ebuild @@ -33,10 +33,10 @@ RDEPEND=" dev-python/numpy[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}] ') - sci-libs/gdal - sys-libs/gdbm + sci-libs/gdal:= + sys-libs/gdbm:= sys-libs/ncurses:0= - sci-libs/proj + sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib blas? ( @@ -44,11 +44,11 @@ RDEPEND=" virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) - geos? ( sci-libs/geos ) + geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) - netcdf? ( sci-libs/netcdf ) + netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) @@ -67,7 +67,7 @@ RDEPEND=" x11-libs/libXext x11-libs/libXt ) - zstd? ( app-arch/zstd )" + zstd? ( app-arch/zstd:= )" DEPEND="${RDEPEND} X? ( x11-base/xorg-proto )" BDEPEND=" diff --git a/sci-geosciences/grass/grass-7.8.6.ebuild b/sci-geosciences/grass/grass-7.8.6-r1.ebuild similarity index 98% rename from sci-geosciences/grass/grass-7.8.6.ebuild rename to sci-geosciences/grass/grass-7.8.6-r1.ebuild index 5f6717ab03ef..4332f826c81a 100644 --- a/sci-geosciences/grass/grass-7.8.6.ebuild +++ b/sci-geosciences/grass/grass-7.8.6-r1.ebuild @@ -33,10 +33,10 @@ RDEPEND=" dev-python/numpy[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}] ') - sci-libs/gdal - sys-libs/gdbm + sci-libs/gdal:= + sys-libs/gdbm:= sys-libs/ncurses:0= - sci-libs/proj + sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib blas? ( @@ -44,11 +44,11 @@ RDEPEND=" virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) - geos? ( sci-libs/geos ) + geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) - netcdf? ( sci-libs/netcdf ) + netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) diff --git a/sci-geosciences/grass/grass-9999.ebuild b/sci-geosciences/grass/grass-9999.ebuild index 965bd4beb28c..e91faa8e4ab6 100644 --- a/sci-geosciences/grass/grass-9999.ebuild +++ b/sci-geosciences/grass/grass-9999.ebuild @@ -29,10 +29,10 @@ RDEPEND=" dev-python/numpy[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}] ') - sci-libs/gdal - sys-libs/gdbm + sci-libs/gdal:= + sys-libs/gdbm:= sys-libs/ncurses:0= - sci-libs/proj + sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd @@ -46,7 +46,7 @@ RDEPEND=" lapack? ( virtual/lapack[eselect-ldso(+)] ) liblas? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) - netcdf? ( sci-libs/netcdf ) + netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) png? ( media-libs/libpng:0= ) diff --git a/sci-geosciences/gshhs/gshhs-1.13.ebuild b/sci-geosciences/gshhs/gshhs-1.13-r1.ebuild similarity index 84% rename from sci-geosciences/gshhs/gshhs-1.13.ebuild rename to sci-geosciences/gshhs/gshhs-1.13-r1.ebuild index 49e225769e93..47bde3fbcf97 100644 --- a/sci-geosciences/gshhs/gshhs-1.13.ebuild +++ b/sci-geosciences/gshhs/gshhs-1.13-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -14,12 +14,12 @@ SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="+data" -RDEPEND="sci-libs/netcdf - sci-libs/gdal +RDEPEND="sci-libs/netcdf:= + sci-libs/gdal:= data? ( sci-geosciences/gshhs-data )" -DEPEND="${RDEPEND} - virtual/pkgconfig - app-arch/unzip" +DEPEND="${RDEPEND}" +BDEPEND="app-arch/unzip + virtual/pkgconfig" S="${WORKDIR}/${PN}" diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz index a08dd50503f3..8d8cf7c57a90 100644 Binary files a/sci-libs/Manifest.gz and b/sci-libs/Manifest.gz differ diff --git a/sci-libs/cartopy/cartopy-0.20.1-r1.ebuild b/sci-libs/cartopy/cartopy-0.20.1-r1.ebuild new file mode 100644 index 000000000000..d1c4f0d5d167 --- /dev/null +++ b/sci-libs/cartopy/cartopy-0.20.1-r1.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{7..10} ) + +inherit distutils-r1 virtualx + +MY_PV=${PV/_beta/b} +MY_P=${PN}-${MY_PV} + +DESCRIPTION="Python package for geospatial data processing and analysis" +HOMEPAGE="https://scitools.org.uk/cartopy" +SRC_URI="https://github.com/SciTools/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + sci-libs/geos + dev-python/numpy[${PYTHON_USEDEP}] + sci-libs/pyshp[${PYTHON_USEDEP}] + sci-libs/shapely[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/scipy[${PYTHON_USEDEP}] + dev-python/pillow[jpeg,${PYTHON_USEDEP}] + sci-libs/gdal[python,${PYTHON_USEDEP}] + dev-python/pyproj[${PYTHON_USEDEP}] + >=sci-libs/proj-8 +" + +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}] + dev-python/cython[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +DEPEND+="test? ( + dev-python/filelock[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/flufl-lock[$PYTHON_USEDEP] + )" + +S="${WORKDIR}"/${MY_P} + +python_prepare_all() { + # drop test file requiring network access, which got not covered by markers + rm "${S}"/lib/cartopy/tests/mpl/test_crs.py || die + rm "${S}"/lib/cartopy/tests/mpl/test_gridliner.py || die + # prepare matplotlib backend for test suite + export MPLCONFIGDIR="${T}" + echo "backend : Agg" > "${MPLCONFIGDIR}"/matplotlibrc || die + distutils-r1_python_prepare_all +} + +python_test() { + cd "${BUILD_DIR}" + # drop all tests needing network access + virtx pytest -vv -m "not network and not natural_earth" || die "test failed" +} diff --git a/sci-libs/exodusii/exodusii-6.09.ebuild b/sci-libs/exodusii/exodusii-6.09-r1.ebuild similarity index 92% rename from sci-libs/exodusii/exodusii-6.09.ebuild rename to sci-libs/exodusii/exodusii-6.09-r1.ebuild index cfa73bffceca..5feb74cae06e 100644 --- a/sci-libs/exodusii/exodusii-6.09.ebuild +++ b/sci-libs/exodusii/exodusii-6.09-r1.ebuild @@ -21,10 +21,9 @@ IUSE="static-libs test" RESTRICT="!test? ( test )" -RDEPEND="sci-libs/netcdf[hdf5]" -DEPEND="${RDEPEND} - test? ( app-shells/tcsh ) -" +RDEPEND="sci-libs/netcdf:=[hdf5]" +DEPEND="${RDEPEND}" +BDEPEND="test? ( app-shells/tcsh )" PATCHES=( "${FILESDIR}"/${P}-multilib.patch ) diff --git a/sci-libs/netcdf/netcdf-4.8.1.ebuild b/sci-libs/netcdf/netcdf-4.8.1-r1.ebuild similarity index 94% rename from sci-libs/netcdf/netcdf-4.8.1.ebuild rename to sci-libs/netcdf/netcdf-4.8.1-r1.ebuild index 9d62cbfcef3d..0dd095346a26 100644 --- a/sci-libs/netcdf/netcdf-4.8.1.ebuild +++ b/sci-libs/netcdf/netcdf-4.8.1-r1.ebuild @@ -11,7 +11,8 @@ SRC_URI="https://github.com/Unidata/netcdf-c/archive/v${PV}.tar.gz -> ${P}.tar.g S="${WORKDIR}/${PN}-c-${PV}" LICENSE="UCAR-Unidata" -SLOT="0/18" +# SONAME of libnetcdf.so +SLOT="0/19" KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 -riscv ~x86 ~amd64-linux ~x86-linux" IUSE="+dap doc examples hdf +hdf5 mpi szip test tools" RESTRICT="!test? ( test )" @@ -55,7 +56,8 @@ src_configure() { local mycmakeargs=( -DENABLE_DAP_REMOTE_TESTS=OFF - -DENABLE_LIBXML2=ON + # Enable for >4.8.1 (not yet in a release) + #-DENABLE_LIBXML2=ON -DBUILD_UTILITIES=$(usex tools) -DENABLE_DAP=$(usex dap) -DENABLE_DOXYGEN=$(usex doc) diff --git a/sci-libs/trilinos/trilinos-13.0.1-r1.ebuild b/sci-libs/trilinos/trilinos-13.0.1-r2.ebuild similarity index 96% rename from sci-libs/trilinos/trilinos-13.0.1-r1.ebuild rename to sci-libs/trilinos/trilinos-13.0.1-r2.ebuild index 2af37197c730..b4408c0d397a 100644 --- a/sci-libs/trilinos/trilinos-13.0.1-r1.ebuild +++ b/sci-libs/trilinos/trilinos-13.0.1-r2.ebuild @@ -29,7 +29,7 @@ RESTRICT="test" RDEPEND=" !dev-cpp/kokkos dev-libs/boost:= - sys-libs/binutils-libs + sys-libs/binutils-libs:= virtual/blas virtual/lapack virtual/mpi @@ -40,24 +40,24 @@ RDEPEND=" eigen? ( dev-cpp/eigen:3 ) glpk? ( sci-mathematics/glpk ) gtest? ( dev-cpp/gtest ) - hdf5? ( sci-libs/hdf5[mpi] ) - hypre? ( sci-libs/hypre ) + hdf5? ( sci-libs/hdf5:=[mpi] ) + hypre? ( sci-libs/hypre:= ) hwloc? ( sys-apps/hwloc:= ) matio? ( sci-libs/matio ) mkl? ( sci-libs/mkl ) metis? ( sci-libs/metis ) mumps? ( sci-libs/mumps ) - netcdf? ( sci-libs/netcdf ) + netcdf? ( sci-libs/netcdf:= ) petsc? ( sci-mathematics/petsc ) qd? ( sci-libs/qd ) scalapack? ( sci-libs/scalapack ) - scotch? ( sci-libs/scotch ) + scotch? ( sci-libs/scotch:= ) sparse? ( sci-libs/cxsparse sci-libs/umfpack ) - superlu? ( sci-libs/superlu ) + superlu? ( sci-libs/superlu:= ) taucs? ( sci-libs/taucs ) tbb? ( dev-cpp/tbb:= ) tvmet? ( dev-libs/tvmet ) - yaml? ( dev-cpp/yaml-cpp ) + yaml? ( dev-cpp/yaml-cpp:= ) zlib? ( sys-libs/zlib ) X? ( x11-libs/libX11 )" DEPEND="${RDEPEND} diff --git a/sci-mathematics/Manifest.gz b/sci-mathematics/Manifest.gz index b5ee6ae33c56..38ad66775f85 100644 Binary files a/sci-mathematics/Manifest.gz and b/sci-mathematics/Manifest.gz differ diff --git a/sci-mathematics/alt-ergo/alt-ergo-2.4.1.ebuild b/sci-mathematics/alt-ergo/alt-ergo-2.4.1-r1.ebuild similarity index 92% rename from sci-mathematics/alt-ergo/alt-ergo-2.4.1.ebuild rename to sci-mathematics/alt-ergo/alt-ergo-2.4.1-r1.ebuild index 9621bd865e68..52d3124f6809 100644 --- a/sci-mathematics/alt-ergo/alt-ergo-2.4.1.ebuild +++ b/sci-mathematics/alt-ergo/alt-ergo-2.4.1-r1.ebuild @@ -16,15 +16,19 @@ IUSE="examples +ocamlopt" RDEPEND=" >=dev-lang/ocaml-4.09.0:=[ocamlopt=] + >=sci-mathematics/psmt2-frontend-0.4.0:= + >=dev-ml/menhir-20181006:= >=dev-ml/ocplib-simplex-0.4:= - >=sci-mathematics/psmt2-frontend-0.4.0:= dev-ml/camlzip:= + dev-ml/cmdliner:= dev-ml/num:= dev-ml/seq:= + dev-ml/stdlib-shims:= dev-ml/zarith:= " DEPEND="${RDEPEND}" +BDEPEND="dev-ml/dune-configurator" src_prepare() { default diff --git a/sci-mathematics/cadical/Manifest b/sci-mathematics/cadical/Manifest new file mode 100644 index 000000000000..f3ef6cd607bc --- /dev/null +++ b/sci-mathematics/cadical/Manifest @@ -0,0 +1 @@ +DIST cadical-1.5.2.tar.gz 596334 BLAKE2B 2e6c0f0602b807cf9ee5993aa627e074291b0128d19474d5431e01992d66b111773e593c14712338e9702f64e23eae6fdd937b5b86b2b9b3e08022dbbb199fd7 SHA512 1aab87bdaec938eb219f75f13bf2fcb031f47ac1f49b586f769aeececd1c33b166341bef3bc8713e62b4612a91c405db33e6d1b48e1074a3433d80e9ecb33fe2 diff --git a/sci-mathematics/cadical/cadical-1.5.2-r1.ebuild b/sci-mathematics/cadical/cadical-1.5.2-r1.ebuild new file mode 100644 index 000000000000..c773ea12d5f2 --- /dev/null +++ b/sci-mathematics/cadical/cadical-1.5.2-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Simplified Satisfiability Solver" +HOMEPAGE="http://fmv.jku.at/cadical/" +SRC_URI="https://github.com/arminbiere/${PN}/archive/rel-${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-rel-${PV}" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" + +PATCHES=( "${FILESDIR}"/${PN}-makefile.in-ar.patch ) + +DOCS=( BUILD.md CONTRIBUTING NEWS.md README.md VERSION ) + +src_configure() { + tc-export AR + CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS} ${LDFLAGS}" ./configure || die +} + +src_install() { + dobin build/{cadical,mobical} + dolib.a build/libcadical.a + doheader src/cadical.hpp + + einstalldocs +} diff --git a/sci-mathematics/cadical/files/cadical-makefile.in-ar.patch b/sci-mathematics/cadical/files/cadical-makefile.in-ar.patch new file mode 100644 index 000000000000..cb344eec60ab --- /dev/null +++ b/sci-mathematics/cadical/files/cadical-makefile.in-ar.patch @@ -0,0 +1,12 @@ +index 8fd957f..cdad96e 100644 +--- a/makefile.in ++++ b/makefile.in +@@ -47,7 +48,7 @@ mobical: mobical.o libcadical.a makefile $(LIBS) + $(COMPILE) -o $@ $< -L. -lcadical + + libcadical.a: $(OBJ) makefile +- ar rc $@ $(OBJ) ++ ${AR} rc $@ $(OBJ) + + #--------------------------------------------------------------------------# + diff --git a/sci-mathematics/cadical/metadata.xml b/sci-mathematics/cadical/metadata.xml new file mode 100644 index 000000000000..c3c09f27203e --- /dev/null +++ b/sci-mathematics/cadical/metadata.xml @@ -0,0 +1,17 @@ + + + + + + sci-mathematics@gentoo.org + Gentoo Mathematics Project + + + The goal of CaDiCaL is to provide a clean and efficient state-of-the-art + CDCL solver, which is also easy to understand and change. + + + https://github.com/arminbiere/cadical/issues/ + arminbiere/cadical + + diff --git a/sci-mathematics/smtinterpol/Manifest b/sci-mathematics/smtinterpol/Manifest new file mode 100644 index 000000000000..4d43fb1c44cb --- /dev/null +++ b/sci-mathematics/smtinterpol/Manifest @@ -0,0 +1 @@ +DIST smtinterpol-2.5_p20211018.tar.gz 10676726 BLAKE2B 27bed1f707241416f71d10ae33c39b7fe638b9650a26f3237409722a8782af3b09890dce9acf30ab2d0412cfbe94f57684850c51e486d3d7f7dddd8025021c8d SHA512 8630ae5f9cf3fdcbceffeeb1f199c2e21e27d0348d3aec5a7062ee5eb942c640661ae58603f273881f30f24630a92b041ea867086ce6d0a2eab5fdd924eb01c3 diff --git a/sci-mathematics/smtinterpol/files/smtinterpol-Version.template-version.patch b/sci-mathematics/smtinterpol/files/smtinterpol-Version.template-version.patch new file mode 100644 index 000000000000..b6c5971be7ea --- /dev/null +++ b/sci-mathematics/smtinterpol/files/smtinterpol-Version.template-version.patch @@ -0,0 +1,11 @@ +index bf87cd1..6ca4533 100644 +--- a/SMTInterpol/src/de/uni_freiburg/informatik/ultimate/smtinterpol/Version.template ++++ b/SMTInterpol/src/de/uni_freiburg/informatik/ultimate/smtinterpol/Version.template +@@ -23,5 +23,5 @@ package de.uni_freiburg.informatik.ultimate.smtinterpol; + * @author Jochen Hoenicke + */ + public interface Version { +- public final static String VERSION = "${version}"; ++ public final static String VERSION = "0"; + } +\ No newline at end of file diff --git a/sci-mathematics/smtinterpol/files/smtinterpol-build.xml-basename.patch b/sci-mathematics/smtinterpol/files/smtinterpol-build.xml-basename.patch new file mode 100644 index 000000000000..d6d2256826fd --- /dev/null +++ b/sci-mathematics/smtinterpol/files/smtinterpol-build.xml-basename.patch @@ -0,0 +1,12 @@ +index e105c33..21295bf 100644 +--- a/build.xml ++++ b/build.xml +@@ -32,7 +32,7 @@ stage: Upload new version to Maven Central (owner only) + + + Version is ${version} +- ++ + + + diff --git a/sci-mathematics/smtinterpol/metadata.xml b/sci-mathematics/smtinterpol/metadata.xml new file mode 100644 index 000000000000..242a13366da1 --- /dev/null +++ b/sci-mathematics/smtinterpol/metadata.xml @@ -0,0 +1,13 @@ + + + + + + sci-mathematics@gentoo.org + Gentoo Mathematics Project + + + https://github.com/ultimate-pa/smtinterpol/issues/ + ultimate-pa/smtinterpol + + diff --git a/sci-mathematics/smtinterpol/smtinterpol-2.5_p20211018.ebuild b/sci-mathematics/smtinterpol/smtinterpol-2.5_p20211018.ebuild new file mode 100644 index 000000000000..495a57f37578 --- /dev/null +++ b/sci-mathematics/smtinterpol/smtinterpol-2.5_p20211018.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +H=32d7fa8751f668f9e9a18e4e96df3337b53d2150 + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="Interpolating SMT-solver that can compute Craig interpolants for various theories" +HOMEPAGE="http://ultimate.informatik.uni-freiburg.de/smtinterpol/" +SRC_URI="https://github.com/ultimate-pa/${PN}/archive/${H}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${H}" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=">=virtual/jdk-1.8" +RDEPEND=">=virtual/jre-1.8" + +PATCHES=( + "${FILESDIR}"/${PN}-Version.template-version.patch + "${FILESDIR}"/${PN}-build.xml-basename.patch +) + +src_prepare() { + default + java-pkg-2_src_prepare +} + +src_compile() { + eant all +} + +src_install() { + java-pkg_dojar dist/*.jar + java-pkg_dolauncher ${PN} --jar ${PN}.jar + + einstalldocs +} diff --git a/sci-physics/Manifest.gz b/sci-physics/Manifest.gz index d801e844acb0..cf02a61d66f2 100644 Binary files a/sci-physics/Manifest.gz and b/sci-physics/Manifest.gz differ diff --git a/sci-physics/lammps/lammps-20200303-r1.ebuild b/sci-physics/lammps/lammps-20200303-r2.ebuild similarity index 97% rename from sci-physics/lammps/lammps-20200303-r1.ebuild rename to sci-physics/lammps/lammps-20200303-r2.ebuild index dbf42732cb2b..b58daf2ca70a 100644 --- a/sci-physics/lammps/lammps-20200303-r1.ebuild +++ b/sci-physics/lammps/lammps-20200303-r2.ebuild @@ -33,14 +33,14 @@ DEPEND=" sys-libs/zlib mpi? ( virtual/mpi - sci-libs/hdf5[mpi] + sci-libs/hdf5:=[mpi] ) python? ( ${PYTHON_DEPS} ) sci-libs/voro++ virtual/blas virtual/lapack - sci-libs/fftw:3.0 - netcdf? ( sci-libs/netcdf ) + sci-libs/fftw:3.0= + netcdf? ( sci-libs/netcdf:= ) cuda? ( >=dev-util/nvidia-cuda-toolkit-4.2.9-r1 ) kokkos? ( =dev-cpp/kokkos-3.0* ) dev-cpp/eigen:3 diff --git a/sci-visualization/Manifest.gz b/sci-visualization/Manifest.gz index 0d3d8a5c5c29..2345e5c3dd78 100644 Binary files a/sci-visualization/Manifest.gz and b/sci-visualization/Manifest.gz differ diff --git a/sci-visualization/grace/grace-5.1.25_p9.ebuild b/sci-visualization/grace/grace-5.1.25_p9-r1.ebuild similarity index 98% rename from sci-visualization/grace/grace-5.1.25_p9.ebuild rename to sci-visualization/grace/grace-5.1.25_p9-r1.ebuild index f2ad5c47aa26..63d394b7cb71 100644 --- a/sci-visualization/grace/grace-5.1.25_p9.ebuild +++ b/sci-visualization/grace/grace-5.1.25_p9-r1.ebuild @@ -26,7 +26,7 @@ DEPEND=" x11-libs/xbae fftw? ( sci-libs/fftw:3.0= ) jpeg? ( virtual/jpeg:0 ) - netcdf? ( sci-libs/netcdf ) + netcdf? ( sci-libs/netcdf:= ) png? ( media-libs/libpng:0= )" RDEPEND="${DEPEND} x11-misc/xdg-utils" diff --git a/sci-visualization/opendx/opendx-4.4.4-r7.ebuild b/sci-visualization/opendx/opendx-4.4.4-r8.ebuild similarity index 98% rename from sci-visualization/opendx/opendx-4.4.4-r7.ebuild rename to sci-visualization/opendx/opendx-4.4.4-r8.ebuild index 1184182477b3..26a6f0de70fe 100644 --- a/sci-visualization/opendx/opendx-4.4.4-r7.ebuild +++ b/sci-visualization/opendx/opendx-4.4.4-r8.ebuild @@ -28,7 +28,7 @@ RDEPEND=" szip? ( virtual/szip ) hdf? ( sci-libs/hdf ) cdf? ( sci-libs/cdf ) - netcdf? ( sci-libs/netcdf ) + netcdf? ( sci-libs/netcdf:= ) tiff? ( media-libs/tiff:0 ) imagemagick? ( virtual/imagemagick-tools )" diff --git a/sys-apps/Manifest.gz b/sys-apps/Manifest.gz index 0f2cefe4ec60..35dff5c4d2af 100644 Binary files a/sys-apps/Manifest.gz and b/sys-apps/Manifest.gz differ diff --git a/sys-apps/pcmciautils/files/pcmciautils-018_p8-musl-unsigned-type.patch b/sys-apps/pcmciautils/files/pcmciautils-018_p8-musl-unsigned-type.patch new file mode 100644 index 000000000000..6039b8147096 --- /dev/null +++ b/sys-apps/pcmciautils/files/pcmciautils-018_p8-musl-unsigned-type.patch @@ -0,0 +1,24 @@ +https://git.alpinelinux.org/aports/plain/main/pcmciautils/unsigned.patch +https://bugs.gentoo.org/716120 +--- a/src/read-cis.c ++++ b/src/read-cis.c +@@ -51,7 +51,7 @@ + /* Get indirect link from the MFC tuple */ + read_cis(tuple->Flags.link_space, + tuple->LinkOffset, 5, link); +- ofs = *(u_int *)(link+1); ++ ofs = *(unsigned int *)(link+1); + tuple->Flags.space = (link[0] == CISTPL_MFC_ATTR); + /* Move to the next indirect link */ + tuple->LinkOffset += 5; +--- a/src/yacc_config.y ++++ b/src/yacc_config.y +@@ -40,7 +40,7 @@ + + %union { + char *str; +- u_long num; ++ unsigned long num; + struct adjust_list_t *adjust; + } + diff --git a/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild b/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild index d27c8288425f..e42d81c1d8d8 100644 --- a/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild +++ b/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild @@ -24,6 +24,13 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${PN}-${MY_PV} +PATCHES=( + "${WORKDIR}"/debian/patches/no-modprobe-rules.patch + "${WORKDIR}"/debian/patches/remove-libsysfs-dep.patch + "${FILESDIR}"/${P}-flex-2.6.3-fix.patch + "${FILESDIR}"/${PN}-018_p8-musl-unsigned-type.patch +) + pkg_setup() { CONFIG_CHECK="~PCMCIA" linux-info_pkg_setup @@ -49,12 +56,6 @@ pkg_setup() { use debug && append-cppflags -DDEBUG } -PATCHES=( - "${WORKDIR}"/debian/patches/no-modprobe-rules.patch - "${WORKDIR}"/debian/patches/remove-libsysfs-dep.patch - "${FILESDIR}"/${P}-flex-2.6.3-fix.patch -) - src_prepare() { default sed -i \ diff --git a/sys-kernel/Manifest.gz b/sys-kernel/Manifest.gz index e408e6d7e063..1d292d3788c1 100644 Binary files a/sys-kernel/Manifest.gz and b/sys-kernel/Manifest.gz differ diff --git a/sys-kernel/dracut/dracut-055-r4.ebuild b/sys-kernel/dracut/dracut-055-r4.ebuild index 3b52bb357e8e..3641aedb4987 100644 --- a/sys-kernel/dracut/dracut-055-r4.ebuild +++ b/sys-kernel/dracut/dracut-055-r4.ebuild @@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then EGIT_REPO_URI="https://github.com/dracutdevs/dracut" else [[ "${PV}" = *_rc* ]] || \ - KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv ~sparc ~x86" + KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86" SRC_URI="https://www.kernel.org/pub/linux/utils/boot/${PN}/${P}.tar.xz" fi diff --git a/www-apps/Manifest.gz b/www-apps/Manifest.gz index 7c1ddce6a803..498f1e1b0585 100644 Binary files a/www-apps/Manifest.gz and b/www-apps/Manifest.gz differ diff --git a/www-apps/icingaweb2-module-director/Manifest b/www-apps/icingaweb2-module-director/Manifest index 2231e10fbdd1..1b6a70ca56c3 100644 --- a/www-apps/icingaweb2-module-director/Manifest +++ b/www-apps/icingaweb2-module-director/Manifest @@ -1 +1,2 @@ DIST icingaweb2-module-director-1.8.0.tar.gz 3042572 BLAKE2B e29ac535c8975f79abfa086ce54e2b78e3f1a992858ec83e902c5e8e72a447f7436a1a9876c1b7237a14d08c54dec12069e9c57231b23c4fd203be3f6f2635b8 SHA512 e33cc49c8255aa3693f73693d874ca5e00a9d95fe3d737c457473d8c5b37f36faf44bbc7f608ba03be79d5a6fd032e5ffd8fbc824eda1831422f837040b0c400 +DIST icingaweb2-module-director-1.8.1.tar.gz 3045604 BLAKE2B b94d870f23f6267250ed1b2165e0960e7a2f6df1b7545a7c22697af1fbc6ec0f0a7d04e92a410c33450613e95fca1c3dbb9db6f974d30a528856a60169a31bf2 SHA512 89fe35061deecd212576b6363289daa433c9664b95221c74a684a88e07ebd36d3b55b4a767f6caefeadb3679c5aa0787b1129f08b6d0fd698e5a2d5b17a3a2d1 diff --git a/www-apps/icingaweb2-module-director/icingaweb2-module-director-1.8.1.ebuild b/www-apps/icingaweb2-module-director/icingaweb2-module-director-1.8.1.ebuild new file mode 100644 index 000000000000..0d9d32306e89 --- /dev/null +++ b/www-apps/icingaweb2-module-director/icingaweb2-module-director-1.8.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Icinga Web 2 plugin for configuration" +HOMEPAGE="https://dev.icinga.org/projects/icingaweb2-module-director/" +inherit systemd +if [[ "${PV}" == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/Icinga/icingaweb2-module-director.git" +else + KEYWORDS="~amd64 ~x86" + MY_PN="icingaweb2-module-director" + SRC_URI="https://codeload.github.com/Icinga/${MY_PN}/tar.gz/v${PV} -> ${P}.tar.gz" + S="${WORKDIR}/${MY_PN}-${PV}" +fi + +LICENSE="GPL-2" +SLOT="0" + +DEPEND=">=net-analyzer/icinga2-2.6.0 + >=www-apps/icingaweb2-2.6.0 + || ( + dev-lang/php:7.3[curl,iconv,pcntl,posix,sockets] + dev-lang/php:7.4[curl,iconv,pcntl,posix,sockets] + dev-lang/php:8.0[curl,iconv,pcntl,posix,sockets] + ) + acct-group/icingaweb2 + acct-user/icingadirector" +RDEPEND="${DEPEND}" + +src_install() { + insinto "/usr/share/icingaweb2/modules/director/" + doins -r "${S}"/* + keepdir /var/lib/${PN} + fowners icingadirector:icingaweb2 /var/lib/${PN} + fperms 0750 /var/lib/${PN} + sed -e "s|/usr/bin/icingacli|/usr/share/icingaweb2/bin/icingacli|g" \ + contrib/systemd/icinga-director.service > "${T}/icinga-director.service" \ + || die "failed to patch icinga-director.service" + systemd_dounit "${T}/icinga-director.service" +} + +pkg_postinst() { + elog "Enable and start the icinga-director.service systemd service." +} diff --git a/www-apps/icingaweb2-module-director/icingaweb2-module-director-9999.ebuild b/www-apps/icingaweb2-module-director/icingaweb2-module-director-9999.ebuild index eab3c4caccb8..0d9d32306e89 100644 --- a/www-apps/icingaweb2-module-director/icingaweb2-module-director-9999.ebuild +++ b/www-apps/icingaweb2-module-director/icingaweb2-module-director-9999.ebuild @@ -1,10 +1,11 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="Icinga Web 2 plugin for configuration" HOMEPAGE="https://dev.icinga.org/projects/icingaweb2-module-director/" +inherit systemd if [[ "${PV}" == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/Icinga/icingaweb2-module-director.git" @@ -18,17 +19,29 @@ fi LICENSE="GPL-2" SLOT="0" -DEPEND=">=net-analyzer/icinga2-2.4.3 - >=www-apps/icingaweb2-2.2.0 +DEPEND=">=net-analyzer/icinga2-2.6.0 + >=www-apps/icingaweb2-2.6.0 || ( - dev-lang/php:5.6[curl] - dev-lang/php:7.1[curl] - dev-lang/php:7.2[curl] - dev-lang/php:7.3[curl] - )" + dev-lang/php:7.3[curl,iconv,pcntl,posix,sockets] + dev-lang/php:7.4[curl,iconv,pcntl,posix,sockets] + dev-lang/php:8.0[curl,iconv,pcntl,posix,sockets] + ) + acct-group/icingaweb2 + acct-user/icingadirector" RDEPEND="${DEPEND}" src_install() { insinto "/usr/share/icingaweb2/modules/director/" doins -r "${S}"/* + keepdir /var/lib/${PN} + fowners icingadirector:icingaweb2 /var/lib/${PN} + fperms 0750 /var/lib/${PN} + sed -e "s|/usr/bin/icingacli|/usr/share/icingaweb2/bin/icingacli|g" \ + contrib/systemd/icinga-director.service > "${T}/icinga-director.service" \ + || die "failed to patch icinga-director.service" + systemd_dounit "${T}/icinga-director.service" +} + +pkg_postinst() { + elog "Enable and start the icinga-director.service systemd service." } diff --git a/www-apps/icingaweb2-module-incubator/Manifest b/www-apps/icingaweb2-module-incubator/Manifest new file mode 100644 index 000000000000..e64b530c115b --- /dev/null +++ b/www-apps/icingaweb2-module-incubator/Manifest @@ -0,0 +1 @@ +DIST icingaweb2-module-incubator-0.11.0.tar.gz 219239 BLAKE2B 32c194a4343dc706a56d86c8db33efc99cec3ee93d3929ee962f81623e2a4cd1277131ceae34c4f040ce1b69e4e1b004cc1202cb42639e25e56513e857b1292a SHA512 e8de6a685f87e70bfc689b0e2bd9fd8c1917996a43ed675399da0a6f6c208f062e20072338e329d57b507ac300ae59a1d18c23f0bd17d4394d2e3fef3b159cff diff --git a/www-apps/icingaweb2-module-incubator/icingaweb2-module-incubator-0.11.0.ebuild b/www-apps/icingaweb2-module-incubator/icingaweb2-module-incubator-0.11.0.ebuild new file mode 100644 index 000000000000..0ec8c4a6c39c --- /dev/null +++ b/www-apps/icingaweb2-module-incubator/icingaweb2-module-incubator-0.11.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Libraries useful for Icinga Web 2" +HOMEPAGE="https://dev.icinga.org/projects/icingaweb2-module-incubator/" +KEYWORDS="~amd64 ~x86" +MY_PN="icingaweb2-module-incubator" +SRC_URI="https://codeload.github.com/Icinga/${MY_PN}/tar.gz/v${PV} -> ${P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="GPL-2" +SLOT="0" + +DEPEND=">=net-analyzer/icinga2-2.6.0 + >=www-apps/icingaweb2-2.6.0 + || ( + dev-lang/php:7.3[curl] + dev-lang/php:7.4[curl] + dev-lang/php:8.0[curl] + )" +RDEPEND="${DEPEND}" + +src_install() { + insinto "/usr/share/icingaweb2/modules/incubator/" + doins -r "${S}"/* +} diff --git a/dev-java/janino/metadata.xml b/www-apps/icingaweb2-module-incubator/metadata.xml similarity index 60% rename from dev-java/janino/metadata.xml rename to www-apps/icingaweb2-module-incubator/metadata.xml index 4221e170cbc0..5c76f7a3fc67 100644 --- a/dev-java/janino/metadata.xml +++ b/www-apps/icingaweb2-module-incubator/metadata.xml @@ -1,8 +1,8 @@ - - java@gentoo.org - Java + + prometheanfire@gentoo.org + Matthew Thode diff --git a/x11-drivers/Manifest.gz b/x11-drivers/Manifest.gz index b5537cf89b93..776df2872b24 100644 Binary files a/x11-drivers/Manifest.gz and b/x11-drivers/Manifest.gz differ diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-390.144-r1.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-390.144-r1.ebuild index 1004d1b629b8..2818b9a31cbd 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-390.144-r1.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-390.144-r1.ebuild @@ -402,20 +402,4 @@ pkg_postinst() { elog "Support for EGLStream (egl-wayland) is no longer offered with legacy" elog "nvidia-drivers. It is recommended to use nouveau drivers for wayland." fi - - # Try to show this message only to users that may really need it - # given the workaround is discouraged and usage isn't widespread. - if use X && [[ ${REPLACING_VERSIONS} ]] && - ver_test ${REPLACING_VERSIONS} -lt 390.143 && - grep -qr Coolbits "${EROOT}"/etc/X11/{xorg.conf,xorg.conf.d/*.conf} 2>/dev/null; then - elog - elog "Coolbits support with ${PN} has been restricted to require Xorg" - elog "with root privilege by NVIDIA (being in video group is not sufficient)." - elog "e.g. attempting to change fan speed with nvidia-settings would fail." - elog - elog "Depending on your display manager (e.g. sddm starts X as root, gdm doesn't)" - elog "or if using startx, it may be necessary to emerge x11-base/xorg-server with" - elog 'USE="suid -elogind -systemd" if wish to keep using this feature.' - elog "Bug: https://bugs.gentoo.org/784248" - fi } diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-390.147.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-390.147.ebuild index 14c8a94612ac..27bc1f65bc9b 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-390.147.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-390.147.ebuild @@ -250,9 +250,22 @@ src_install() { local DISABLE_AUTOFORMATTING=yes local DOC_CONTENTS="\ Trusted users should be in the 'video' group to use NVIDIA devices. -You can add yourself by using: gpasswd -a my-user video - -See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options.\ +You can add yourself by using: gpasswd -a my-user video\ +$(usex driver " + +Like all out-of-tree kernel modules, it is necessary to rebuild +${PN} after upgrading or rebuilding the Linux kernel +by for example running \`emerge @module-rebuild\`. Alternatively, +if using a distribution kernel (sys-kernel/gentoo-kernel{,-bin}), +this can be automated by setting USE=dist-kernel globally. + +Loaded kernel modules also must not mismatch with the installed +${PN} version (excluding -r revision), meaning should +ensure \`eselect kernel list\` points to the kernel that will be +booted before building and preferably reboot after upgrading +${PN} (the ebuild will emit a warning if mismatching). + +See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options." '')\ $(use amd64 && usex abi_x86_32 '' " Note that without USE=abi_x86_32 on ${PN}, 32bit applications @@ -407,20 +420,4 @@ pkg_postinst() { elog "use nvidia-drivers for acceleration without it (e.g. commonly used" elog "with app-emulation/wine-* or steam). Re-enable if needed." fi - - # Try to show this message only to users that may really need it - # given the workaround is discouraged and usage isn't widespread. - if use X && [[ ${REPLACING_VERSIONS} ]] && - ver_test ${REPLACING_VERSIONS} -lt 390.143 && - grep -qr Coolbits "${EROOT}"/etc/X11/{xorg.conf,xorg.conf.d/*.conf} 2>/dev/null; then - elog - elog "Coolbits support with ${PN} has been restricted to require Xorg" - elog "with root privilege by NVIDIA (being in video group is not sufficient)." - elog "e.g. attempting to change fan speed with nvidia-settings would fail." - elog - elog "Depending on your display manager (e.g. sddm starts X as root, gdm doesn't)" - elog "or if using startx, it may be necessary to emerge x11-base/xorg-server with" - elog 'USE="suid -elogind -systemd" if wish to keep using this feature.' - elog "Bug: https://bugs.gentoo.org/784248" - fi } diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-460.91.03-r1.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-460.91.03-r1.ebuild index 416d84b7d48a..9fff7447aca1 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-460.91.03-r1.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-460.91.03-r1.ebuild @@ -417,20 +417,4 @@ pkg_postinst() { elog "use nvidia-drivers for acceleration without it (e.g. commonly used" elog "with app-emulation/wine-*). Re-enable if needed." fi - - # Try to show this message only to users that may really need it - # given the workaround is discouraged and usage isn't widespread. - if use X && [[ ${REPLACING_VERSIONS} ]] && - ver_test ${REPLACING_VERSIONS} -lt 460.73.01 && - grep -qr Coolbits "${EROOT}"/etc/X11/{xorg.conf,xorg.conf.d/*.conf} 2>/dev/null; then - elog - elog "Coolbits support with ${PN} has been restricted to require Xorg" - elog "with root privilege by NVIDIA (being in video group is not sufficient)." - elog "e.g. attempting to change fan speed with nvidia-settings would fail." - elog - elog "Depending on your display manager (e.g. sddm starts X as root, gdm doesn't)" - elog "or if using startx, it may be necessary to emerge x11-base/xorg-server with" - elog 'USE="suid -elogind -systemd" if wish to keep using this feature.' - elog "Bug: https://bugs.gentoo.org/784248" - fi } diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-460.91.03-r2.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-460.91.03-r2.ebuild new file mode 100644 index 000000000000..61240f76f26d --- /dev/null +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-460.91.03-r2.ebuild @@ -0,0 +1,413 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MODULES_OPTIONAL_USE="driver" +inherit desktop flag-o-matic linux-mod multilib readme.gentoo-r1 \ + systemd toolchain-funcs unpacker + +NV_KERNEL_MAX="5.13" +NV_URI="https://download.nvidia.com/XFree86/" + +DESCRIPTION="NVIDIA Accelerated Graphics Driver" +HOMEPAGE="https://www.nvidia.com/download/index.aspx" +SRC_URI=" + amd64? ( ${NV_URI}Linux-x86_64/${PV}/NVIDIA-Linux-x86_64-${PV}.run ) + arm64? ( ${NV_URI}Linux-aarch64/${PV}/NVIDIA-Linux-aarch64-${PV}.run ) + $(printf "${NV_URI}%s/%s-${PV}.tar.bz2 " \ + nvidia-{installer,modprobe,persistenced,settings,xconfig}{,})" +# nvidia-installer is unused but here for GPL-2's "distribute sources" +S="${WORKDIR}" + +LICENSE="NVIDIA-r2 BSD BSD-2 GPL-2 MIT ZLIB curl openssl" +SLOT="0/${PV%%.*}" +KEYWORDS="-* ~amd64" +IUSE="+X abi_x86_32 abi_x86_64 +driver persistenced static-libs +tools" + +COMMON_DEPEND=" + acct-group/video + persistenced? ( + acct-user/nvpd + net-libs/libtirpc:= + ) + tools? ( + dev-libs/atk + dev-libs/glib:2 + dev-libs/jansson:= + media-libs/harfbuzz:= + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXxf86vm + x11-libs/pango + )" +RDEPEND=" + ${COMMON_DEPEND} + X? ( + media-libs/libglvnd[X,abi_x86_32(-)?] + x11-libs/libX11[abi_x86_32(-)?] + x11-libs/libXext[abi_x86_32(-)?] + )" +DEPEND=" + ${COMMON_DEPEND} + static-libs? ( + x11-libs/libX11 + x11-libs/libXext + ) + tools? ( + media-libs/libglvnd + sys-apps/dbus + x11-base/xorg-proto + x11-libs/libXrandr + x11-libs/libXv + x11-libs/libvdpau + )" +BDEPEND=" + sys-devel/m4 + virtual/pkgconfig" +PDEPEND="X? ( "${T}"/nvidia-persistenced.service || die +} + +src_compile() { + tc-export AR CC LD OBJCOPY + + NV_ARGS=( + PREFIX="${EPREFIX}"/usr + HOST_CC="$(tc-getBUILD_CC)" + HOST_LD="$(tc-getBUILD_LD)" + NV_USE_BUNDLED_LIBJANSSON=0 + NV_VERBOSE=1 DO_STRIP= MANPAGE_GZIP= OUTPUTDIR=out + ) + + use driver && linux-mod_src_compile + + emake "${NV_ARGS[@]}" -C nvidia-modprobe + use persistenced && emake "${NV_ARGS[@]}" -C nvidia-persistenced + use X && emake "${NV_ARGS[@]}" -C nvidia-xconfig + + if use tools; then + # cflags: avoid noisy logs, only use here and set first to let override + # ldflags: abi currently needed if LD=ld.lld + CFLAGS="-Wno-deprecated-declarations ${CFLAGS}" \ + RAW_LDFLAGS="$(get_abi_LDFLAGS) $(raw-ldflags)" \ + emake "${NV_ARGS[@]}" -C nvidia-settings + elif use static-libs; then + emake "${NV_ARGS[@]}" -C nvidia-settings/src out/libXNVCtrl.a + fi +} + +src_install() { + local libdir=$(get_libdir) libdir32=$(ABI=x86 get_libdir) + + NV_ARGS+=( DESTDIR="${D}" LIBDIR="${ED}"/usr/${libdir} ) + + local -A paths=( + [APPLICATION_PROFILE]=/usr/share/nvidia + [CUDA_ICD]=/etc/OpenCL/vendors + [EGL_EXTERNAL_PLATFORM_JSON]=/usr/share/egl/egl_external_platform.d + [GLVND_EGL_ICD_JSON]=/usr/share/glvnd/egl_vendor.d + [VULKAN_ICD_JSON]=/usr/share/vulkan + [XORG_OUTPUTCLASS_CONFIG]=/usr/share/X11/xorg.conf.d + + [GLX_MODULE_SHARED_LIB]=/usr/${libdir}/xorg/modules/extensions + [GLX_MODULE_SYMLINK]=/usr/${libdir}/xorg/modules + [XMODULE_SHARED_LIB]=/usr/${libdir}/xorg/modules + ) + + local skip_files=( + $(usex X '' ' + libGLX_nvidia libglxserver_nvidia + libnvidia-ifr + nvidia_icd.json nvidia_layers.json') + libGLX_indirect # non-glvnd unused fallback + libnvidia-gtk nvidia-{settings,xconfig} # built from source + libnvidia-egl-wayland 10_nvidia_wayland # gui-libs/egl-wayland + ) + local skip_modules=( + $(usex X '' 'nvfbc vdpau xdriver') + installer nvpd # handled separately / built from source + ) + local skip_types=( + GLVND_LIB GLVND_SYMLINK EGL_CLIENT.\* GLX_CLIENT.\* # media-libs/libglvnd + OPENCL_WRAPPER.\* # virtual/opencl + DOCUMENTATION DOT_DESKTOP .\*_SRC DKMS_CONF # handled separately / unused + ) + + local DOCS=( + README.txt NVIDIA_Changelog supported-gpus/supported-gpus.json + nvidia-settings/doc/{FRAMELOCK,NV-CONTROL-API}.txt + ) + local HTML_DOCS=( html/. ) + einstalldocs + + local DISABLE_AUTOFORMATTING=yes + local DOC_CONTENTS="\ +Trusted users should be in the 'video' group to use NVIDIA devices. +You can add yourself by using: gpasswd -a my-user video\ +$(usex driver " + +Like all out-of-tree kernel modules, it is necessary to rebuild +${PN} after upgrading or rebuilding the Linux kernel +by for example running \`emerge @module-rebuild\`. Alternatively, +if using a distribution kernel (sys-kernel/gentoo-kernel{,-bin}), +this can be automated by setting USE=dist-kernel globally. + +Loaded kernel modules also must not mismatch with the installed +${PN} version (excluding -r revision), meaning should +ensure \`eselect kernel list\` points to the kernel that will be +booted before building and preferably reboot after upgrading +${PN} (the ebuild will emit a warning if mismatching). + +See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options." '')\ +$(use amd64 && usex abi_x86_32 '' " + +Note that without USE=abi_x86_32 on ${PN}, 32bit applications +(typically using wine / steam) will not be able to use GPU acceleration.") + +For general information on using ${PN}, please see: +https://wiki.gentoo.org/wiki/NVIDIA/nvidia-drivers" + readme.gentoo_create_doc + + if use driver; then + linux-mod_src_install + + insinto /etc/modprobe.d + newins "${FILESDIR}"/nvidia-470.conf nvidia.conf + + # used for gpu verification with binpkgs (not kept, see pkg_preinst) + insinto /usr/share/nvidia + doins supported-gpus/supported-gpus.json + fi + + emake "${NV_ARGS[@]}" -C nvidia-modprobe install + fowners :video /usr/bin/nvidia-modprobe #505092 + fperms 4710 /usr/bin/nvidia-modprobe + + if use persistenced; then + emake "${NV_ARGS[@]}" -C nvidia-persistenced install + newconfd "${FILESDIR}"/nvidia-persistenced.confd nvidia-persistenced + newinitd "${FILESDIR}"/nvidia-persistenced.initd nvidia-persistenced + systemd_dounit "${T}"/nvidia-persistenced.service + fi + + if use tools; then + emake "${NV_ARGS[@]}" -C nvidia-settings install + + doicon nvidia-settings/doc/nvidia-settings.png + domenu nvidia-settings/doc/nvidia-settings.desktop + + exeinto /etc/X11/xinit/xinitrc.d + newexe "${FILESDIR}"/95-nvidia-settings-r1 95-nvidia-settings + fi + + if use static-libs; then + dolib.a nvidia-settings/src/out/libXNVCtrl.a + + insinto /usr/include/NVCtrl + doins nvidia-settings/src/libXNVCtrl/NVCtrl{Lib,}.h + fi + + use X && emake "${NV_ARGS[@]}" -C nvidia-xconfig install + + # mimic nvidia-installer by reading .manifest to install files + # 0:file 1:perms 2:type 3+:subtype/arguments -:module + local m into + while IFS=' ' read -ra m; do + ! [[ ${#m[@]} -ge 2 && ${m[-1]} =~ MODULE: ]] || + eval '[[ " ${m[0]##*/}" =~ ^(\ '${skip_files[*]/%/.*|\\}' )$ ]]' || + eval '[[ " ${m[2]}" =~ ^(\ '${skip_types[*]/%/|\\}' )$ ]]' || + has ${m[-1]#MODULE:} "${skip_modules[@]}" && continue + + case ${m[2]} in + MANPAGE) + gzip -dc ${m[0]} | newman - ${m[0]%.gz}; assert + continue + ;; + VDPAU_SYMLINK) m[4]=vdpau/; m[5]=${m[5]#vdpau/};; # .so to vdpau/ + esac + + if [[ -v paths[${m[2]}] ]]; then + into=${paths[${m[2]}]} + elif [[ ${m[2]} =~ _BINARY$ ]]; then + into=/opt/bin + elif [[ ${m[3]} == COMPAT32 ]]; then + use abi_x86_32 || continue + into=/usr/${libdir32} + elif [[ ${m[2]} =~ _LIB$|_SYMLINK$ ]]; then + into=/usr/${libdir} + else + die "No known installation path for ${m[0]}" + fi + [[ ${m[3]: -2} == ?/ ]] && into+=/${m[3]%/} + [[ ${m[4]: -2} == ?/ ]] && into+=/${m[4]%/} + + if [[ ${m[2]} =~ _SYMLINK$ ]]; then + [[ ${m[4]: -1} == / ]] && m[4]=${m[5]} + dosym ${m[4]} ${into}/${m[0]} + continue + fi + [[ ${m[0]} =~ ^libnvidia-ngx.so ]] && + dosym ${m[0]} ${into}/${m[0]%.so*}.so.1 # soname not in .manifest + + printf -v m[1] %o $((m[1] | 0200)) # 444->644 + insopts -m${m[1]} + insinto ${into} + doins ${m[0]} + done < .manifest || die + + # MODULE:installer non-skipped extras + exeinto /lib/systemd/system-sleep + doexe nvidia + dobin nvidia-sleep.sh + systemd_dounit nvidia-{hibernate,resume,suspend}.service + + dobin nvidia-bug-report.sh +} + +pkg_preinst() { + has_version "${CATEGORY}/${PN}[abi_x86_32]" && NV_HAD_ABI32= + + use driver || return + linux-mod_pkg_preinst + + # set video group id based on live system (bug #491414) + local g=$(getent group video | cut -d: -f3) + [[ ${g} ]] || die "Failed to determine video group id" + sed -i "s/@VIDEOGID@/${g}/" "${ED}"/etc/modprobe.d/nvidia.conf || die + + # try to find driver mismatches using temporary supported-gpus.json + for g in $(grep -l 0x10de /sys/bus/pci/devices/*/vendor 2>/dev/null); do + g=$(grep -io "\"devid\":\"$(<${g%vendor}device)\"[^}]*branch\":\"[0-9]*" \ + "${ED}"/usr/share/nvidia/supported-gpus.json 2>/dev/null) + if [[ ${g} ]]; then + g=$((${g##*\"}+1)) + if ver_test -ge ${g}; then + NV_LEGACY_MASK=">=${CATEGORY}/${PN}-${g}" + break + fi + fi + done + rm "${ED}"/usr/share/nvidia/supported-gpus.json || die +} + +pkg_postinst() { + use driver && linux-mod_pkg_postinst + + readme.gentoo_print_elog + + if [[ -r /proc/driver/nvidia/version && + $( ${EROOT}/etc/portage/package.mask/${PN}" + else + ewarn " echo '${NV_LEGACY_MASK}' >> ${EROOT}/etc/portage/package.mask" + fi + ewarn "...then downgrade to a legacy branch if possible. For details, see:" + ewarn "https://www.nvidia.com/object/IO_32667.html" + fi + + if use !abi_x86_32 && [[ -v NV_HAD_ABI32 ]]; then + elog + elog "USE=abi_x86_32 is disabled, 32bit applications will not be able to" + elog "use nvidia-drivers for acceleration without it (e.g. commonly used" + elog "with app-emulation/wine-* or steam). Re-enable if needed." + fi +} diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-470.62.16.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-470.62.16.ebuild index 3d69f2220850..6de4753fb633 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-470.62.16.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-470.62.16.ebuild @@ -243,9 +243,22 @@ src_install() { local DISABLE_AUTOFORMATTING=yes local DOC_CONTENTS="\ Trusted users should be in the 'video' group to use NVIDIA devices. -You can add yourself by using: gpasswd -a my-user video - -See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options.\ +You can add yourself by using: gpasswd -a my-user video\ +$(usex driver " + +Like all out-of-tree kernel modules, it is necessary to rebuild +${PN} after upgrading or rebuilding the Linux kernel +by for example running \`emerge @module-rebuild\`. Alternatively, +if using a distribution kernel (sys-kernel/gentoo-kernel{,-bin}), +this can be automated by setting USE=dist-kernel globally. + +Loaded kernel modules also must not mismatch with the installed +${PN} version (excluding -r revision), meaning should +ensure \`eselect kernel list\` points to the kernel that will be +booted before building and preferably reboot after upgrading +${PN} (the ebuild will emit a warning if mismatching). + +See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options." '')\ $(use amd64 && usex abi_x86_32 '' " Note that without USE=abi_x86_32 on ${PN}, 32bit applications @@ -430,20 +443,4 @@ pkg_postinst() { elog "This version of ${PN} only supports EGLStream which is only" elog "supported by a few wayland compositors (e.g. kwin / mutter, not sway)." fi - - # Try to show this message only to users that may really need it - # given the workaround is discouraged and usage isn't widespread. - if use X && [[ ${REPLACING_VERSIONS} ]] && - ver_test ${REPLACING_VERSIONS} -lt 460.73.01 && - grep -qr Coolbits "${EROOT}"/etc/X11/{xorg.conf,xorg.conf.d/*.conf} 2>/dev/null; then - elog - elog "Coolbits support with ${PN} has been restricted to require Xorg" - elog "with root privilege by NVIDIA (being in video group is not sufficient)." - elog "e.g. attempting to change fan speed with nvidia-settings would fail." - elog - elog "Depending on your display manager (e.g. sddm starts X as root, gdm doesn't)" - elog "or if using startx, it may be necessary to emerge x11-base/xorg-server with" - elog 'USE="suid -elogind -systemd" if wish to keep using this feature.' - elog "Bug: https://bugs.gentoo.org/784248" - fi } diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-470.86-r2.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-470.86-r2.ebuild index 6fc46d5276eb..4b35afdaa2c5 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-470.86-r2.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-470.86-r2.ebuild @@ -463,20 +463,4 @@ pkg_postinst() { elog "If you experience issues, please comment out the option from nvidia.conf." elog "Of note, may possibly cause issues with SLI and Reverse PRIME." fi - - # Try to show this message only to users that may really need it - # given the workaround is discouraged and usage isn't widespread. - if use X && [[ ${REPLACING_VERSIONS} ]] && - ver_test ${REPLACING_VERSIONS} -lt 460.73.01 && - grep -qr Coolbits "${EROOT}"/etc/X11/{xorg.conf,xorg.conf.d/*.conf} 2>/dev/null; then - elog - elog "Coolbits support with ${PN} has been restricted to require Xorg" - elog "with root privilege by NVIDIA (being in video group is not sufficient)." - elog "e.g. attempting to change fan speed with nvidia-settings would fail." - elog - elog "Depending on your display manager (e.g. sddm starts X as root, gdm doesn't)" - elog "or if using startx, it may be necessary to emerge x11-base/xorg-server with" - elog 'USE="suid -elogind -systemd" if wish to keep using this feature.' - elog "Bug: https://bugs.gentoo.org/784248" - fi } diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-470.94.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-470.94.ebuild index 22378a87d712..bba3a75169aa 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-470.94.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-470.94.ebuild @@ -22,7 +22,7 @@ S="${WORKDIR}" LICENSE="NVIDIA-r2 BSD BSD-2 GPL-2 MIT ZLIB curl openssl" SLOT="0/${PV%%.*}" -KEYWORDS="-* ~amd64" +KEYWORDS="-* amd64" IUSE="+X abi_x86_32 abi_x86_64 +driver persistenced static-libs +tools wayland" COMMON_DEPEND=" @@ -243,9 +243,22 @@ src_install() { local DISABLE_AUTOFORMATTING=yes local DOC_CONTENTS="\ Trusted users should be in the 'video' group to use NVIDIA devices. -You can add yourself by using: gpasswd -a my-user video - -See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options.\ +You can add yourself by using: gpasswd -a my-user video\ +$(usex driver " + +Like all out-of-tree kernel modules, it is necessary to rebuild +${PN} after upgrading or rebuilding the Linux kernel +by for example running \`emerge @module-rebuild\`. Alternatively, +if using a distribution kernel (sys-kernel/gentoo-kernel{,-bin}), +this can be automated by setting USE=dist-kernel globally. + +Loaded kernel modules also must not mismatch with the installed +${PN} version (excluding -r revision), meaning should +ensure \`eselect kernel list\` points to the kernel that will be +booted before building and preferably reboot after upgrading +${PN} (the ebuild will emit a warning if mismatching). + +See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options." '')\ $(use amd64 && usex abi_x86_32 '' " Note that without USE=abi_x86_32 on ${PN}, 32bit applications @@ -430,20 +443,4 @@ pkg_postinst() { elog "This version of ${PN} only supports EGLStream which is only" elog "supported by a few wayland compositors (e.g. kwin / mutter, not sway)." fi - - # Try to show this message only to users that may really need it - # given the workaround is discouraged and usage isn't widespread. - if use X && [[ ${REPLACING_VERSIONS} ]] && - ver_test ${REPLACING_VERSIONS} -lt 460.73.01 && - grep -qr Coolbits "${EROOT}"/etc/X11/{xorg.conf,xorg.conf.d/*.conf} 2>/dev/null; then - elog - elog "Coolbits support with ${PN} has been restricted to require Xorg" - elog "with root privilege by NVIDIA (being in video group is not sufficient)." - elog "e.g. attempting to change fan speed with nvidia-settings would fail." - elog - elog "Depending on your display manager (e.g. sddm starts X as root, gdm doesn't)" - elog "or if using startx, it may be necessary to emerge x11-base/xorg-server with" - elog 'USE="suid -elogind -systemd" if wish to keep using this feature.' - elog "Bug: https://bugs.gentoo.org/784248" - fi } diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-495.44-r2.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-495.44-r2.ebuild index 45f7181d5c6c..cb68478d1349 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-495.44-r2.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-495.44-r2.ebuild @@ -487,22 +487,6 @@ pkg_postinst() { elog "Of note, may possibly cause issues with SLI and Reverse PRIME." fi - # Try to show this message only to users that may really need it - # given the workaround is discouraged and usage isn't widespread. - if use X && [[ ${REPLACING_VERSIONS} ]] && - ver_test ${REPLACING_VERSIONS} -lt 460.73.01 && - grep -qr Coolbits "${EROOT}"/etc/X11/{xorg.conf,xorg.conf.d/*.conf} 2>/dev/null; then - elog - elog "Coolbits support with ${PN} has been restricted to require Xorg" - elog "with root privilege by NVIDIA (being in video group is not sufficient)." - elog "e.g. attempting to change fan speed with nvidia-settings would fail." - elog - elog "Depending on your display manager (e.g. sddm starts X as root, gdm doesn't)" - elog "or if using startx, it may be necessary to emerge x11-base/xorg-server with" - elog 'USE="suid -elogind -systemd" if wish to keep using this feature.' - elog "Bug: https://bugs.gentoo.org/784248" - fi - ewarn ewarn "This revision of ${PN} is applying a binary patch to prevent heavy" ewarn "dbus spamming while using OpenGL. If you experience issues, please try to" diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-495.46-r10.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-495.46-r10.ebuild index dd05555ba26e..9983bd4e0e6b 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-495.46-r10.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-495.46-r10.ebuild @@ -257,9 +257,22 @@ src_install() { local DISABLE_AUTOFORMATTING=yes local DOC_CONTENTS="\ Trusted users should be in the 'video' group to use NVIDIA devices. -You can add yourself by using: gpasswd -a my-user video - -See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options.\ +You can add yourself by using: gpasswd -a my-user video\ +$(usex driver " + +Like all out-of-tree kernel modules, it is necessary to rebuild +${PN} after upgrading or rebuilding the Linux kernel +by for example running \`emerge @module-rebuild\`. Alternatively, +if using a distribution kernel (sys-kernel/gentoo-kernel{,-bin}), +this can be automated by setting USE=dist-kernel globally. + +Loaded kernel modules also must not mismatch with the installed +${PN} version (excluding -r revision), meaning should +ensure \`eselect kernel list\` points to the kernel that will be +booted before building and preferably reboot after upgrading +${PN} (the ebuild will emit a warning if mismatching). + +See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options." '')\ $(use amd64 && usex abi_x86_32 '' " Note that without USE=abi_x86_32 on ${PN}, 32bit applications @@ -443,22 +456,6 @@ pkg_postinst() { elog "Of note, may possibly cause issues with SLI and Reverse PRIME." fi - # Try to show this message only to users that may really need it - # given the workaround is discouraged and usage isn't widespread. - if use X && [[ ${REPLACING_VERSIONS} ]] && - ver_test ${REPLACING_VERSIONS} -lt 460.73.01 && - grep -qr Coolbits "${EROOT}"/etc/X11/{xorg.conf,xorg.conf.d/*.conf} 2>/dev/null; then - elog - elog "Coolbits support with ${PN} has been restricted to require Xorg" - elog "with root privilege by NVIDIA (being in video group is not sufficient)." - elog "e.g. attempting to change fan speed with nvidia-settings would fail." - elog - elog "Depending on your display manager (e.g. sddm starts X as root, gdm doesn't)" - elog "or if using startx, it may be necessary to emerge x11-base/xorg-server with" - elog 'USE="suid -elogind -systemd" if wish to keep using this feature.' - elog "Bug: https://bugs.gentoo.org/784248" - fi - ewarn ewarn "This revision of ${PN} is applying a binary patch to prevent heavy" ewarn "dbus spamming while using OpenGL. If you experience issues, please try to" diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-495.46-r20.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-495.46-r20.ebuild index 3e93e2f0a367..6ef95b7be24f 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-495.46-r20.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-495.46-r20.ebuild @@ -255,9 +255,22 @@ src_install() { local DISABLE_AUTOFORMATTING=yes local DOC_CONTENTS="\ Trusted users should be in the 'video' group to use NVIDIA devices. -You can add yourself by using: gpasswd -a my-user video - -See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options.\ +You can add yourself by using: gpasswd -a my-user video\ +$(usex driver " + +Like all out-of-tree kernel modules, it is necessary to rebuild +${PN} after upgrading or rebuilding the Linux kernel +by for example running \`emerge @module-rebuild\`. Alternatively, +if using a distribution kernel (sys-kernel/gentoo-kernel{,-bin}), +this can be automated by setting USE=dist-kernel globally. + +Loaded kernel modules also must not mismatch with the installed +${PN} version (excluding -r revision), meaning should +ensure \`eselect kernel list\` points to the kernel that will be +booted before building and preferably reboot after upgrading +${PN} (the ebuild will emit a warning if mismatching). + +See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options." '')\ $(use amd64 && usex abi_x86_32 '' " Note that without USE=abi_x86_32 on ${PN}, 32bit applications @@ -441,22 +454,6 @@ pkg_postinst() { elog "Of note, may possibly cause issues with SLI and Reverse PRIME." fi - # Try to show this message only to users that may really need it - # given the workaround is discouraged and usage isn't widespread. - if use X && [[ ${REPLACING_VERSIONS} ]] && - ver_test ${REPLACING_VERSIONS} -lt 460.73.01 && - grep -qr Coolbits "${EROOT}"/etc/X11/{xorg.conf,xorg.conf.d/*.conf} 2>/dev/null; then - elog - elog "Coolbits support with ${PN} has been restricted to require Xorg" - elog "with root privilege by NVIDIA (being in video group is not sufficient)." - elog "e.g. attempting to change fan speed with nvidia-settings would fail." - elog - elog "Depending on your display manager (e.g. sddm starts X as root, gdm doesn't)" - elog "or if using startx, it may be necessary to emerge x11-base/xorg-server with" - elog 'USE="suid -elogind -systemd" if wish to keep using this feature.' - elog "Bug: https://bugs.gentoo.org/784248" - fi - ewarn ewarn "This revision of ${PN} is applying a binary patch to prevent heavy" ewarn "dbus spamming while using OpenGL. If you experience issues, please try to" diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-495.46.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-495.46.ebuild index cf5827d21dcf..38e290de75f8 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-495.46.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-495.46.ebuild @@ -246,9 +246,22 @@ src_install() { local DISABLE_AUTOFORMATTING=yes local DOC_CONTENTS="\ Trusted users should be in the 'video' group to use NVIDIA devices. -You can add yourself by using: gpasswd -a my-user video - -See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options.\ +You can add yourself by using: gpasswd -a my-user video\ +$(usex driver " + +Like all out-of-tree kernel modules, it is necessary to rebuild +${PN} after upgrading or rebuilding the Linux kernel +by for example running \`emerge @module-rebuild\`. Alternatively, +if using a distribution kernel (sys-kernel/gentoo-kernel{,-bin}), +this can be automated by setting USE=dist-kernel globally. + +Loaded kernel modules also must not mismatch with the installed +${PN} version (excluding -r revision), meaning should +ensure \`eselect kernel list\` points to the kernel that will be +booted before building and preferably reboot after upgrading +${PN} (the ebuild will emit a warning if mismatching). + +See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options." '')\ $(use amd64 && usex abi_x86_32 '' " Note that without USE=abi_x86_32 on ${PN}, 32bit applications @@ -431,20 +444,4 @@ pkg_postinst() { elog "If you experience issues, either disable wayland or edit nvidia.conf." elog "Of note, may possibly cause issues with SLI and Reverse PRIME." fi - - # Try to show this message only to users that may really need it - # given the workaround is discouraged and usage isn't widespread. - if use X && [[ ${REPLACING_VERSIONS} ]] && - ver_test ${REPLACING_VERSIONS} -lt 460.73.01 && - grep -qr Coolbits "${EROOT}"/etc/X11/{xorg.conf,xorg.conf.d/*.conf} 2>/dev/null; then - elog - elog "Coolbits support with ${PN} has been restricted to require Xorg" - elog "with root privilege by NVIDIA (being in video group is not sufficient)." - elog "e.g. attempting to change fan speed with nvidia-settings would fail." - elog - elog "Depending on your display manager (e.g. sddm starts X as root, gdm doesn't)" - elog "or if using startx, it may be necessary to emerge x11-base/xorg-server with" - elog 'USE="suid -elogind -systemd" if wish to keep using this feature.' - elog "Bug: https://bugs.gentoo.org/784248" - fi } diff --git a/x11-terms/Manifest.gz b/x11-terms/Manifest.gz index 78a44245b03b..4d26199e0616 100644 Binary files a/x11-terms/Manifest.gz and b/x11-terms/Manifest.gz differ diff --git a/x11-terms/guake/Manifest b/x11-terms/guake/Manifest index 26e5994e9c91..a7903699d7fb 100644 --- a/x11-terms/guake/Manifest +++ b/x11-terms/guake/Manifest @@ -1,2 +1,3 @@ DIST guake-3.7.0.tar.gz 1215186 BLAKE2B ff60f83fce5fbdd3712e261bbb72247cdcb311b8208af75007183bced88fcc2d2ebe3c49b76e2264786246444e9d07a41f884de949112c249277717070d64c11 SHA512 578c42ed41049acd253e0c409a9ecb103c7f71679fc5efdd94c60461b952ac77c836e59439361e1cd70e5fe6785ab4c15e7bf73b9f4c7d23b47c77468fa05f62 DIST guake-3.8.0.tar.gz 1125090 BLAKE2B 72ee6b5e93c3433fcc2863d2b0aa198326cc4889126454040ce870fdeaa0ba110723410355ae49b5e2e4876fcad3f9d849873adaddfcf1ecfa83dc1583db57eb SHA512 6e0bb6b4a0c92c163bd6151c65936a38d93624166af5a4e2b042f9ade7f28683c8e8fad802b23a07edd478e2dd3b99a559069c9935f1154585be936d1b7a96ed +DIST guake-3.8.1.tar.gz 1127132 BLAKE2B e91f74bf119c76ad214b5c29bceb4fe18f19c97f14dbb2973c6118bbb9affc06e919c56e0cd24f96b710d9c2468006289fcf1c13a2050e93cc01972f0c9ebe99 SHA512 5fbf4cc37bc501e4533bd27c1c7e1f783e570457867289702ab2122fcb6a55708df151e4307c4cf84a242ac1d2874ef5e8eb9411318e24eca140102a42b426f4 diff --git a/x11-terms/guake/guake-3.8.1.ebuild b/x11-terms/guake/guake-3.8.1.ebuild new file mode 100644 index 000000000000..71d4f73f338c --- /dev/null +++ b/x11-terms/guake/guake-3.8.1.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_SINGLE_IMPL=1 +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 gnome2-utils virtualx xdg-utils + +DESCRIPTION="Drop-down terminal for GNOME" +HOMEPAGE="http://guake-project.org/" +SRC_URI="https://github.com/Guake/guake/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="utempter" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/pycairo[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + ') + dev-libs/keybinder:3[introspection] + x11-libs/libnotify[introspection] + x11-libs/libwnck:3[introspection] + x11-libs/vte:2.91[introspection] + utempter? ( sys-libs/libutempter )" +BDEPEND=" + $(python_gen_cond_dep ' + dev-python/pbr[${PYTHON_USEDEP}] + test? ( + dev-python/pyfakefs[${PYTHON_USEDEP}] + dev-python/pytest-mock[${PYTHON_USEDEP}] + ) + ') + dev-libs/glib:2 + gnome-base/gsettings-desktop-schemas + sys-devel/gettext" + +distutils_enable_tests pytest + +python_prepare_all() { + distutils-r1_python_prepare_all + + emake PREFIX="${EPREFIX}/usr" prepare-install # paths.py.in -> paths.py + + export PBR_VERSION=${PV} # needed if using github's tarball +} + +python_test() { + # - uses /usr/bin/bash if SHELL is not exported + # - pytest-xvfb fails with Terminated, virtx alone works + SHELL=${SHELL} virtx epytest -p no:xvfb +} + +python_install() { + # done here so tests don't use the system's + sed -e "/^SCHEMA_DIR/s|=.*|= \"${EPREFIX}/usr/share/glib-2.0/schemas\"|" \ + -e "/def get_default_data_dir/{n;s|=.*|= \"${EPREFIX}/usr/share/guake\"|}" \ + -i "${BUILD_DIR}"/lib/guake/paths.py || die + rm -r "${BUILD_DIR}"/lib/guake/tests || die + + distutils-r1_python_install +} + +python_install_all() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install-{locale,schemas} + + dodoc NEWS.rst README.rst +} + +pkg_postinst() { + gnome2_schemas_update + xdg_desktop_database_update +} + +pkg_postrm() { + gnome2_schemas_update + xdg_desktop_database_update +} diff --git a/x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild b/x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild index 1ad87ebf9625..1bb0f64e489a 100644 --- a/x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild +++ b/x11-terms/rxvt-unicode/rxvt-unicode-9.30.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://dist.schmorp.de/rxvt-unicode/Attic/${P}.tar.bz2 LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86" IUSE="24-bit-color 256-color blink fading-colors +font-styles gdk-pixbuf iso14755 +mousewheel +perl startup-notification unicode3 xft" diff --git a/x11-themes/Manifest.gz b/x11-themes/Manifest.gz index 140d8db8d6bd..c7497e6acca3 100644 Binary files a/x11-themes/Manifest.gz and b/x11-themes/Manifest.gz differ diff --git a/x11-themes/gtk-engines-murrine/gtk-engines-murrine-0.98.2-r3.ebuild b/x11-themes/gtk-engines-murrine/gtk-engines-murrine-0.98.2-r3.ebuild index 1c5274f04bf3..b3b32a918ac0 100644 --- a/x11-themes/gtk-engines-murrine/gtk-engines-murrine-0.98.2-r3.ebuild +++ b/x11-themes/gtk-engines-murrine/gtk-engines-murrine-0.98.2-r3.ebuild @@ -12,7 +12,7 @@ HOMEPAGE="https://tracker.debian.org/pkg/gtk2-engines-murrine" LICENSE="LGPL-2.1 LGPL-3" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm ~arm64 ppc ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" IUSE="+themes animation-rtl" RDEPEND=">=x11-libs/gtk+-2.24.23:2[${MULTILIB_USEDEP}] diff --git a/x11-themes/murrine-themes/murrine-themes-0.98.11.ebuild b/x11-themes/murrine-themes/murrine-themes-0.98.11.ebuild index 8c9273739e5a..86fc56b5d205 100644 --- a/x11-themes/murrine-themes/murrine-themes-0.98.11.ebuild +++ b/x11-themes/murrine-themes/murrine-themes-0.98.11.ebuild @@ -9,7 +9,7 @@ SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ppc ppc64 ~riscv ~x86" RDEPEND=">=x11-themes/gtk-engines-murrine-0.98.0" diff --git a/x11-wm/Manifest.gz b/x11-wm/Manifest.gz index 95d8ff499edd..f2bb6d1785b1 100644 Binary files a/x11-wm/Manifest.gz and b/x11-wm/Manifest.gz differ diff --git a/x11-wm/cwm/Manifest b/x11-wm/cwm/Manifest index b51173f2d84f..400e19579f1e 100644 --- a/x11-wm/cwm/Manifest +++ b/x11-wm/cwm/Manifest @@ -1,2 +1 @@ -DIST cwm-6.6.tar.gz 53062 BLAKE2B 3da762f0c1a48c83c773a1f355cc970c5e4f6100e7294a00f44c6b5b7e1ffe954fde0e3d106991b05cd1f8c898fe055b5305b0bd7bf533df5868d32adbae2c5f SHA512 ff94fd1b7d263f9de538e5b338db58a08e1bec3e4233b84ab0a3ac94c47a45e10b2c772f93b897e70baf9a3c04e1a6fa04604ac71655acb7ebd1d10edb381042 DIST cwm-6.7.tar.gz 53172 BLAKE2B 9e8c6503235ee71f3974a4e64cf45b80675b6ff33a68505b07f003c8d711a68a158f31147f463d5467bb4242c6321ebe0acaee63727689a136ca83c47e7592ea SHA512 5ad0fa56d9c96c36cc32e68128e58d4e3a7483f349bb26be1083c5b5c6d853ff05eec1a783b07ed928bd99a35a2e0b2d7053fc89b828aa9bdfe3589a318c4171 diff --git a/x11-wm/cwm/cwm-6.6.ebuild b/x11-wm/cwm/cwm-6.6.ebuild deleted file mode 100644 index 287fd7fcdde3..000000000000 --- a/x11-wm/cwm/cwm-6.6.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit desktop toolchain-funcs - -DESCRIPTION="OpenBSD fork of calmwm, a clean and lightweight window manager" -HOMEPAGE="https://www.openbsd.org/cgi-bin/cvsweb/xenocara/app/cwm/ - https://github.com/chneukirchen/cwm" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/leahneukirchen/${PN}.git" -else - SRC_URI="https://github.com/leahneukirchen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm ~arm64 x86" -fi - -LICENSE="ISC" -SLOT="0" - -RDEPEND="x11-libs/libXft - x11-libs/libXinerama - x11-libs/libXrandr -" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/bison - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}/${PN}-Makefile.patch" -) - -src_compile() { - emake CFLAGS="${CFLAGS} -D_GNU_SOURCE" CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" -} - -src_install() { - emake DESTDIR="${D}" PREFIX=/usr install - dodoc README - make_session_desktop ${PN} ${PN} -} diff --git a/x11-wm/cwm/files/cwm-Makefile.patch b/x11-wm/cwm/files/cwm-Makefile.patch deleted file mode 100644 index fc26a3808876..000000000000 --- a/x11-wm/cwm/files/cwm-Makefile.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -13,12 +13,14 @@ OBJS= calmwm.o screen.o xmalloc.o client.o menu.o \ - search.o util.o xutil.o conf.o xevents.o group.o \ - kbfunc.o strlcpy.o strlcat.o y.tab.o \ - strtonum.o reallocarray.o -+ -+PKG_CONFIG?= pkg-config - --CPPFLAGS+= `pkg-config --cflags x11 xft xrandr` -+CPPFLAGS+= `${PKG_CONFIG} --cflags x11 xft xrandr` - - CFLAGS?= -Wall -O2 -g -D_GNU_SOURCE - --LDFLAGS+= `pkg-config --libs x11 xft xrandr` -+LDFLAGS+= `${PKG_CONFIG} --libs x11 xft xrandr` - - MANPREFIX?= ${PREFIX}/share/man -