pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/py-dulwich
Module Name: pkgsrc
Committed By: adam
Date: Fri Apr 24 11:07:18 UTC 2026
Modified Files:
pkgsrc/devel/py-dulwich: Makefile PLIST cargo-depends.mk distinfo
Log Message:
py-dulwich: updated to 1.2.0
1.2.0 2026-04-21
* Expand ``log`` command options: add ``--oneline``, ``--abbrev-commit``,
``--author``, ``--committer``, ``--grep``, ``--since``/``--after``,
``--until``/``--before``, ``-n``/``--max-count``, ``--no-merges``,
``--merges``, ``--stat``, ``-p``/``--patch``, ``--name-only``,
and ``--follow``.
* Add ``am`` command and ``porcelain.am()`` for applying mailbox-style
email patches (``git am``), with state persistence for
``--continue``, ``--skip``, ``--abort``, and ``--quit`` recovery
operations.
* Add support for ``extensions.relativeworktrees`` repository extension,
allowing Git worktrees to use relative paths instead of absolute paths
when linking worktrees.
* Add support for push options (``-o``/``--push-option``) in the ``push``
command and ``porcelain.push()``, enabling AGit flow and other server-side
push option workflows.
* Add missing push options: ``--all``, ``--tags``, ``--delete``,
``--dry-run``, ``--prune``, ``--set-upstream``, ``--follow-tags``,
and ``--mirror``.
* Add support for atomic push operations (``--atomic``). When enabled,
either all ref updates succeed or none are applied. Both client and
server now negotiate the ``atomic`` capability.
* Add ``apply`` command and ``porcelain.apply_patch()`` for applying
unified diffs, including support for rename/copy detection, binary patches
with Git's base85 encoding, and ``--3way`` merge fallback when patches
don't apply cleanly.
* Add support for ``gc.pruneExpire`` configuration option, which controls
the grace period before unreachable objects are pruned during garbage
collection.
* Add support for ``core.precomposeunicode`` configuration option
for normalizing NFD Unicode paths from macOS filesystems to NFC
form.
* Add support for ``core.gitProxy`` configuration option, which
specifies a proxy command for Git protocol (``git://``) connections.
* Add support for ``core.maxStat`` configuration option, which limits
the number of stat operations performed when checking for unstaged
changes. This improves performance on slow filesystems or very large
repositories.
* Add support for ``core.packedGitLimit`` configuration option, which
limits the total memory used for mmapped pack files. When exceeded,
least-recently-used packs are closed to free memory.
* Add support for ``core.deltaBaseCacheLimit`` configuration option, which
limits the memory used for caching delta base objects during pack
unpacking. Defaults to 96 MiB, matching Git's default.
* Fix GPG signature verification to raise ``BadSignature`` for all
GPG errors, not just ``BadSignatures``. Also detect the case where
GPG returns no signatures at all.
* Fix client incorrectly sending ``unborn`` argument in Git protocol v2
``ls-refs`` requests to servers that advertise ``ls-refs`` capability
without explicitly advertising ``ls-refs=unborn`` support, preventing
clones from older servers like Gerrit 3.12.2.
* Improve error message in ``read_info_refs()`` to show the actual line
content when parsing fails, making it easier to diagnose issues with
malformed server responses.
* HTTP client respects ``http.userAgent`` configuration for customizing the
User-Agent header. Supports both global and URL-specific settings. The
default User-Agent is ``git/dulwich/{version}``.
* Preserve quoted trailing whitespace in config values. Previously, spaces
and tabs inside quoted config values were discarded during parsing.
* Fix ``.gitignore`` parent re-include handling so that a later ``!dir/``
re-include allows a subsequent file-level negation to take effect.
* No longer ship ``contrib/`` as part of the distribution. The ``contrib/``
directory has always been documented as unsupported and is now excluded
from the installed package.
* Fix host key verification in ``contrib/paramiko_vendor.py`` by loading
known hosts and rejecting unknown SSH host keys by default.
To generate a diff of this commit:
cvs rdiff -u -r1.77 -r1.78 pkgsrc/devel/py-dulwich/Makefile
cvs rdiff -u -r1.40 -r1.41 pkgsrc/devel/py-dulwich/PLIST
cvs rdiff -u -r1.14 -r1.15 pkgsrc/devel/py-dulwich/cargo-depends.mk
cvs rdiff -u -r1.72 -r1.73 pkgsrc/devel/py-dulwich/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/py-dulwich/Makefile
diff -u pkgsrc/devel/py-dulwich/Makefile:1.77 pkgsrc/devel/py-dulwich/Makefile:1.78
--- pkgsrc/devel/py-dulwich/Makefile:1.77 Wed Feb 25 14:41:34 2026
+++ pkgsrc/devel/py-dulwich/Makefile Fri Apr 24 11:07:18 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.77 2026/02/25 14:41:34 adam Exp $
+# $NetBSD: Makefile,v 1.78 2026/04/24 11:07:18 adam Exp $
-DISTNAME= dulwich-1.1.0
+DISTNAME= dulwich-1.2.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=d/dulwich/}
@@ -25,11 +25,7 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-requests-[
DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=4.6.0:../../devel/py-typing-extensions
.endif
-post-install:
-.for bin in dul-receive-pack dul-upload-pack dulwich
- cd ${DESTDIR}${PREFIX}/bin && \
- ${MV} ${bin} ${bin}-${PYVERSSUFFIX} || ${TRUE}
-.endfor
+PY_RENAME_BINARIES= dul-receive-pack dul-upload-pack dulwich
pre-test:
# uses atheris
Index: pkgsrc/devel/py-dulwich/PLIST
diff -u pkgsrc/devel/py-dulwich/PLIST:1.40 pkgsrc/devel/py-dulwich/PLIST:1.41
--- pkgsrc/devel/py-dulwich/PLIST:1.40 Wed Feb 25 14:41:34 2026
+++ pkgsrc/devel/py-dulwich/PLIST Fri Apr 24 11:07:18 2026
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.40 2026/02/25 14:41:34 adam Exp $
+@comment $NetBSD: PLIST,v 1.41 2026/04/24 11:07:18 adam Exp $
bin/dul-receive-pack-${PYVERSSUFFIX}
bin/dul-upload-pack-${PYVERSSUFFIX}
bin/dulwich-${PYVERSSUFFIX}
@@ -26,6 +26,9 @@ ${PYSITELIB}/dulwich/aiohttp/__init__.py
${PYSITELIB}/dulwich/aiohttp/server.py
${PYSITELIB}/dulwich/aiohttp/server.pyc
${PYSITELIB}/dulwich/aiohttp/server.pyo
+${PYSITELIB}/dulwich/am.py
+${PYSITELIB}/dulwich/am.pyc
+${PYSITELIB}/dulwich/am.pyo
${PYSITELIB}/dulwich/annotate.py
${PYSITELIB}/dulwich/annotate.pyc
${PYSITELIB}/dulwich/annotate.pyo
@@ -68,25 +71,6 @@ ${PYSITELIB}/dulwich/commit_graph.pyo
${PYSITELIB}/dulwich/config.py
${PYSITELIB}/dulwich/config.pyc
${PYSITELIB}/dulwich/config.pyo
-${PYSITELIB}/dulwich/contrib/README.swift.rst
-${PYSITELIB}/dulwich/contrib/__init__.py
-${PYSITELIB}/dulwich/contrib/__init__.pyc
-${PYSITELIB}/dulwich/contrib/__init__.pyo
-${PYSITELIB}/dulwich/contrib/greenthreads.py
-${PYSITELIB}/dulwich/contrib/greenthreads.pyc
-${PYSITELIB}/dulwich/contrib/greenthreads.pyo
-${PYSITELIB}/dulwich/contrib/paramiko_vendor.py
-${PYSITELIB}/dulwich/contrib/paramiko_vendor.pyc
-${PYSITELIB}/dulwich/contrib/paramiko_vendor.pyo
-${PYSITELIB}/dulwich/contrib/release_robot.py
-${PYSITELIB}/dulwich/contrib/release_robot.pyc
-${PYSITELIB}/dulwich/contrib/release_robot.pyo
-${PYSITELIB}/dulwich/contrib/requests_vendor.py
-${PYSITELIB}/dulwich/contrib/requests_vendor.pyc
-${PYSITELIB}/dulwich/contrib/requests_vendor.pyo
-${PYSITELIB}/dulwich/contrib/swift.py
-${PYSITELIB}/dulwich/contrib/swift.pyc
-${PYSITELIB}/dulwich/contrib/swift.pyo
${PYSITELIB}/dulwich/credentials.py
${PYSITELIB}/dulwich/credentials.pyc
${PYSITELIB}/dulwich/credentials.pyo
Index: pkgsrc/devel/py-dulwich/cargo-depends.mk
diff -u pkgsrc/devel/py-dulwich/cargo-depends.mk:1.14 pkgsrc/devel/py-dulwich/cargo-depends.mk:1.15
--- pkgsrc/devel/py-dulwich/cargo-depends.mk:1.14 Wed Feb 25 14:41:34 2026
+++ pkgsrc/devel/py-dulwich/cargo-depends.mk Fri Apr 24 11:07:18 2026
@@ -1,23 +1,18 @@
-# $NetBSD: cargo-depends.mk,v 1.14 2026/02/25 14:41:34 adam Exp $
+# $NetBSD: cargo-depends.mk,v 1.15 2026/04/24 11:07:18 adam Exp $
-CARGO_CRATE_DEPENDS+= autocfg-1.5.0
CARGO_CRATE_DEPENDS+= heck-0.5.0
-CARGO_CRATE_DEPENDS+= indoc-2.0.7
-CARGO_CRATE_DEPENDS+= libc-0.2.182
+CARGO_CRATE_DEPENDS+= libc-0.2.185
CARGO_CRATE_DEPENDS+= memchr-2.8.0
-CARGO_CRATE_DEPENDS+= memoffset-0.9.1
-CARGO_CRATE_DEPENDS+= once_cell-1.21.3
+CARGO_CRATE_DEPENDS+= once_cell-1.21.4
CARGO_CRATE_DEPENDS+= portable-atomic-1.13.1
CARGO_CRATE_DEPENDS+= proc-macro2-1.0.106
-CARGO_CRATE_DEPENDS+= pyo3-0.27.2
-CARGO_CRATE_DEPENDS+= pyo3-build-config-0.27.2
-CARGO_CRATE_DEPENDS+= pyo3-ffi-0.27.2
-CARGO_CRATE_DEPENDS+= pyo3-macros-0.27.2
-CARGO_CRATE_DEPENDS+= pyo3-macros-backend-0.27.2
-CARGO_CRATE_DEPENDS+= quote-1.0.44
-CARGO_CRATE_DEPENDS+= rustversion-1.0.22
+CARGO_CRATE_DEPENDS+= pyo3-0.28.3
+CARGO_CRATE_DEPENDS+= pyo3-build-config-0.28.3
+CARGO_CRATE_DEPENDS+= pyo3-ffi-0.28.3
+CARGO_CRATE_DEPENDS+= pyo3-macros-0.28.3
+CARGO_CRATE_DEPENDS+= pyo3-macros-backend-0.28.3
+CARGO_CRATE_DEPENDS+= quote-1.0.45
CARGO_CRATE_DEPENDS+= similar-2.7.0
-CARGO_CRATE_DEPENDS+= syn-2.0.116
+CARGO_CRATE_DEPENDS+= syn-2.0.117
CARGO_CRATE_DEPENDS+= target-lexicon-0.13.5
CARGO_CRATE_DEPENDS+= unicode-ident-1.0.24
-CARGO_CRATE_DEPENDS+= unindent-0.2.4
Index: pkgsrc/devel/py-dulwich/distinfo
diff -u pkgsrc/devel/py-dulwich/distinfo:1.72 pkgsrc/devel/py-dulwich/distinfo:1.73
--- pkgsrc/devel/py-dulwich/distinfo:1.72 Wed Feb 25 14:41:34 2026
+++ pkgsrc/devel/py-dulwich/distinfo Fri Apr 24 11:07:18 2026
@@ -1,68 +1,53 @@
-$NetBSD: distinfo,v 1.72 2026/02/25 14:41:34 adam Exp $
+$NetBSD: distinfo,v 1.73 2026/04/24 11:07:18 adam Exp $
-BLAKE2s (autocfg-1.5.0.crate) = d9738bc6755bf80a73705691ef930ca883cd58e4a2d1162b5c0a09cdc7029304
-SHA512 (autocfg-1.5.0.crate) = f279856f234d39d369623576acf9546a1ca24d7fe449f36d4fb93ea75a7efaf2c4015b9616a69bbbed358c5e5882e16b045352f046aa4c049b3d13b1e8257b08
-Size (autocfg-1.5.0.crate) = 18729 bytes
-BLAKE2s (dulwich-1.1.0.tar.gz) = bbdec622c4bfe49c872cab7f53e0931ffd05eaacdfa19e21dded4a06affc93f6
-SHA512 (dulwich-1.1.0.tar.gz) = 010576262ea78b86cceb64e9a19fa133068457669f675ee68b060de26f2387207a7a8305492e57ffabb3c3d01a8e5b98a132d1f7396a1c9bc3c2565867b2f3af
-Size (dulwich-1.1.0.tar.gz) = 1178580 bytes
+BLAKE2s (dulwich-1.2.0.tar.gz) = 56ec6a7eb3667fcda0f89bd5e31519e6bfe45ccae6e0592b2eb3e3a04f888916
+SHA512 (dulwich-1.2.0.tar.gz) = 99912be6aaf0a7a710952dc548c8ccc21739a62371ed7a67d83dc6ac287d09dc6d95ee212ab95e5fedd155d20a2189562d026990f11e6e07d6591791fde829c5
+Size (dulwich-1.2.0.tar.gz) = 1214743 bytes
BLAKE2s (heck-0.5.0.crate) = 0bc71a5746c9d1e7c913d096fb68f1d422464744e18adc592540b291882f5660
SHA512 (heck-0.5.0.crate) = f044fc9c3d22466629fd8f772ec0555350fd611c0cfadca51d99a3d2f10e155f77c1091916c8a95a6b9b499f366c2e99a5fbf45b010f988bfb9b2501bf9f6a76
Size (heck-0.5.0.crate) = 11517 bytes
-BLAKE2s (indoc-2.0.7.crate) = e898ba91d49e7e941386132ecf6002a4bb76db1f87f507518bbb5920aaa472d8
-SHA512 (indoc-2.0.7.crate) = 6e80cf927001821606488a822fd0f67ae1a569b022c98e727e6b1571c88d87775166f088322bd5f17abb8fc1fde62c9d14fb2e99f1e50918487252d823e48f73
-Size (indoc-2.0.7.crate) = 17184 bytes
-BLAKE2s (libc-0.2.182.crate) = 3eb736adcdd92597270d9d9b48776b6cdca0b8d42e4b3e7753a716d20da13530
-SHA512 (libc-0.2.182.crate) = 7923eeb0ee1db8b5b00a6a4352cf5fd3f877a2f727af5857ca49ceeab2dc7519137eb3a982f5a763ae61fbe422ba8f0fe83d92dcabcfa18c23fae619960f96db
-Size (libc-0.2.182.crate) = 814873 bytes
+BLAKE2s (libc-0.2.185.crate) = 4571ea59c09944dc900f3e23b2729201780fa042c594cf127bf8140222daf20b
+SHA512 (libc-0.2.185.crate) = c8dbcaaf2e5d8377a4d1003af4a7210fbfe4f9b1e8497f07d88a231a8d5c9f67014e650a5e18e913e7b4d6a1835c4cbc9c31ce0cd224ea28acbdbb39034a300e
+Size (libc-0.2.185.crate) = 821775 bytes
BLAKE2s (memchr-2.8.0.crate) = 9d6dade02bc948818801a90933500c8aecf86116a976d3c68dfc7e427b027efd
SHA512 (memchr-2.8.0.crate) = 8089238153493a0ff6adf980efd1ea2ba10eeff9f33fff200268692662d24152a8c14a4dac37fbc6a55dca741701fd256174f10a9838ca66f038f08e090de12f
Size (memchr-2.8.0.crate) = 97780 bytes
-BLAKE2s (memoffset-0.9.1.crate) = c4113c19eb1531bdfa4760d70eb45284a0c72f042b5b013028b700331804b4f4
-SHA512 (memoffset-0.9.1.crate) = 3a236c0f481e36973b9f805e454c2efe4dd375e6b4ee406b57145136c70d5fbf4e1183d563ebf3b5fbde7363bbf5f08f0d88e507aae5bda4cc75664ecd0e33aa
-Size (memoffset-0.9.1.crate) = 9032 bytes
-BLAKE2s (once_cell-1.21.3.crate) = 5b077d9ff947a795057e5647e50cf1bead07170110d0adb8337b88fa28b9e289
-SHA512 (once_cell-1.21.3.crate) = 32a87506c6f4598f3ca2c88556014ef2093d5db9a08602335e847caa537a866492fa74c894e7e1da2e4289a1d3dbffcb90a9e37a4a1453203832f434b8206990
-Size (once_cell-1.21.3.crate) = 34534 bytes
+BLAKE2s (once_cell-1.21.4.crate) = 5945879c1e46e46585a2692e5f3ac0beaa15f111aa45611e0419b50abb21fb4e
+SHA512 (once_cell-1.21.4.crate) = af67669b0107f44268ba74c355200cb2ed1aab235a6989a8bc54323eb2c9a45677010f8672e7790edadd4c981e939436e0c3a099d33c06dce9c14fd5ede86155
+Size (once_cell-1.21.4.crate) = 35010 bytes
BLAKE2s (portable-atomic-1.13.1.crate) = b3a6549f02086b4648b923c66555c2cf4f46719746faeaf5372cae8ec0e52e11
SHA512 (portable-atomic-1.13.1.crate) = 2a1b31ac9814af884640b3398ab824a9795c72d260527a0966b193113808cfbb3345d50cd1beaebb45863437c3d06c8706d34b26efecceefc649319a4bc274a3
Size (portable-atomic-1.13.1.crate) = 197001 bytes
BLAKE2s (proc-macro2-1.0.106.crate) = d914a8fc313c5a898a0a9381a19dfbdfe9b94efba3f431759ea2c7ce43cd5362
SHA512 (proc-macro2-1.0.106.crate) = b726e2c92af434bfa88cd4f53c3fe6db647503567675fb439890dee3d15f5111137e3242b28d164114ce081c10acf3fd11950753ddb349190c87ee04e7d97744
Size (proc-macro2-1.0.106.crate) = 59765 bytes
-BLAKE2s (pyo3-0.27.2.crate) = 7332a4d08f14c932ec31673b4cf55320151e126ab50022920ad5c9ea0a9e913b
-SHA512 (pyo3-0.27.2.crate) = b20f502bda6cc6d283012acbb2e0225219ccd77af09990872c76b0088947050d886eb47ed88e9e0dcb327d08ab4bf09119f7cab527dfde358e01df5a32bb64c2
-Size (pyo3-0.27.2.crate) = 1171342 bytes
-BLAKE2s (pyo3-build-config-0.27.2.crate) = 47eedb2a2b03ee21c0514e574aa6c26ee83b915190c71777c469102a633e0721
-SHA512 (pyo3-build-config-0.27.2.crate) = dc7cee79ce7febddeec9e70dd5de3b59696a5cf38afeccdfeda00307cc22166d0e9649d5e34e9801b7f495b31c104fa78dac2241248787daae8b9ea1f4551ce5
-Size (pyo3-build-config-0.27.2.crate) = 35564 bytes
-BLAKE2s (pyo3-ffi-0.27.2.crate) = 20fac60cd265542b03f720596d2a94876524c4b462ac3a2bb7aa9a80217f761f
-SHA512 (pyo3-ffi-0.27.2.crate) = 29936c7a0fa524304ca8b017ac912e2c3e9237a86ac8510c17b96b75c7e83948599884f064428640456cd5fb256246d536da432d096f924e78360efd973cee0b
-Size (pyo3-ffi-0.27.2.crate) = 78552 bytes
-BLAKE2s (pyo3-macros-0.27.2.crate) = 87dfa7978d8d2d0a551eb9dca1e6033031833b2ef564238139486377c8df7b8a
-SHA512 (pyo3-macros-0.27.2.crate) = b05f6b61c5b320e83e879384691cdb9ad57ade3ce5a9fdfb587ccd13ea1c92d2b210e2d7ca242c3d1a5f5173076a25578d3d81f5a8c3935a43f010bfa8452153
-Size (pyo3-macros-0.27.2.crate) = 8913 bytes
-BLAKE2s (pyo3-macros-backend-0.27.2.crate) = 54f717334168316b98b3140b92ca0271639e0a3342cd32c610cd589061e62582
-SHA512 (pyo3-macros-backend-0.27.2.crate) = 811fa48ceb5a87d23312b968efa9d8464653289cefc8a1e27838f03285eef67092652ba89eba655d243fa435edd97674a981267870d208e0b11390db32d1ad9f
-Size (pyo3-macros-backend-0.27.2.crate) = 82513 bytes
-BLAKE2s (quote-1.0.44.crate) = 09d1bf6552c75930a6136c2dd0788730041a1719a3d89c4c1fbf5031533bac5c
-SHA512 (quote-1.0.44.crate) = 6c1e9b31e0c8bd13cd865e6846dc243d88f2c057adeb8e674117bdcb46947219a6a352a6a50be1132c483f55331e6556275ac514513dbf017825c64e5d96010d
-Size (quote-1.0.44.crate) = 31629 bytes
-BLAKE2s (rustversion-1.0.22.crate) = 94885d422b9c942ceab679e86d0a2b8e6f322f655091475a6a475f0b796f48b9
-SHA512 (rustversion-1.0.22.crate) = 7929352df3e5279ac88cebb26ca89bb13c755f46986d2d1f514d18a3239a63638bf64f8ff153920569d173185d988d692ee676335afba0bf72d47f71babe0e15
-Size (rustversion-1.0.22.crate) = 21096 bytes
+BLAKE2s (pyo3-0.28.3.crate) = 3c6aaac1c9811198ec6da1c9fc48d2f6838f322132ada3667eacb8ed65c418f3
+SHA512 (pyo3-0.28.3.crate) = f955957eec4b95cc9337d331bba3bba52b4754b301cf86cd974601e64eb20c2424023b19be89a224661fe2e185de646cd3d0d00705b6b5cbd139856c9443a247
+Size (pyo3-0.28.3.crate) = 1204476 bytes
+BLAKE2s (pyo3-build-config-0.28.3.crate) = fbf0abd806eefd9d8e61c5c0074bed592f2cdfbf3a82db8e1d78996c13adc5ad
+SHA512 (pyo3-build-config-0.28.3.crate) = 78f85696901b16540d42187d10e888bd929b9f23415faeb73f9798abda1af3506a308145dd4113b070521271c72624d7930fb4b19bad25aa1afd3082030c9126
+Size (pyo3-build-config-0.28.3.crate) = 35961 bytes
+BLAKE2s (pyo3-ffi-0.28.3.crate) = e6ec195e9898889c1bd58068700c10823bb34dc8292bbf0c1ebb473563fc7aae
+SHA512 (pyo3-ffi-0.28.3.crate) = ec49b5cc67d19f46c9daea76b37b4988af0f63b9ed67c71190f015a0aa9691d4a8ffd4128413de430928428e1e8e26d44c3103f561e6b71b7e8c4597ab602d9f
+Size (pyo3-ffi-0.28.3.crate) = 80881 bytes
+BLAKE2s (pyo3-macros-0.28.3.crate) = 91c533aadcfafb9c1aac727e81e88fb1daf48ee50292f10de2fa67623d3d909d
+SHA512 (pyo3-macros-0.28.3.crate) = 57d178bd9b53dd98916e60c89bc26c34f9949829dc17bf7d6cc15b704bba7c874d85d6bd3c827d401268660a79230a6e32711048da939ec4e22342f3e08046d1
+Size (pyo3-macros-0.28.3.crate) = 8963 bytes
+BLAKE2s (pyo3-macros-backend-0.28.3.crate) = 4566cb08ea39578f852a847f909c3aa2b5fd0b9e65cf862a8a418e6982a8cdd0
+SHA512 (pyo3-macros-backend-0.28.3.crate) = 45ce31ed64ee4fd0249736d480c9840a756bc45934d6803ae11e0680057ecf4cc74c71b47ccf9241fc3ab5c1e0b9c758426f08bd523d1ace92fc308302ea3c84
+Size (pyo3-macros-backend-0.28.3.crate) = 88063 bytes
+BLAKE2s (quote-1.0.45.crate) = 20533b49c424d16a57b48d77fd05ff08c31355221b3dd0d6fd917c60da7f748b
+SHA512 (quote-1.0.45.crate) = df96ede01ebd0ed642b758bf1d0862d0e116fc2b3343e14edb657ce5438ccabe743dec4a0a40de4dee98c134d169af9aba459faadf9c7a832b26377e755d49b0
+Size (quote-1.0.45.crate) = 31564 bytes
BLAKE2s (similar-2.7.0.crate) = cbcc450d798ccb4a8000a81702e71e2c6542770e5933810ac5831548bc696020
SHA512 (similar-2.7.0.crate) = 4a2559d2e47e7747eb2bde0f02a0e652ff0e116d1d3c3756dd86fd48f114e2b42157b860165e5cc29c2123cf19c64ebd17f023aaa05950de03ab5752562206b3
Size (similar-2.7.0.crate) = 53928 bytes
-BLAKE2s (syn-2.0.116.crate) = 8e8fa11e4f127afde5ee477420af6f00e86fc7e6e384290ed5c82ef56c2fb404
-SHA512 (syn-2.0.116.crate) = 81e1a5388d688a4aaf00ba35428ac82b9b4bb6e703c4321a898140d6fd40cdaa32762bf0e0ea0d9276f4322f673dbc39d3c46c275dcf69533c57ba4d68702ea1
-Size (syn-2.0.116.crate) = 305969 bytes
+BLAKE2s (syn-2.0.117.crate) = 03f50444ef7a3b5f28a72c59696d1676df1b8f5c334b19648d2755927e8b2f43
+SHA512 (syn-2.0.117.crate) = 035c2e63542592b6a4058a2a82d4c2c1f5793f84fb1b04cbd393337a26fcf661a1f3bea439ce98a1fe943b1c4d36d2bda16df3bbc3fa6ca35e1548d530dc8416
+Size (syn-2.0.117.crate) = 306011 bytes
BLAKE2s (target-lexicon-0.13.5.crate) = 68bf6c69ac036b1df41f1073b8a85e072da1e13c570340afe4f59722e4c95fd0
SHA512 (target-lexicon-0.13.5.crate) = 956df27c01e1186c5356117ffd07810fc0b62fb919d5bfd215955ba85be00ef675212a3c0dc36679986be7b825442fec5c93c7643b7e1e19c04572e6463546fc
Size (target-lexicon-0.13.5.crate) = 26928 bytes
BLAKE2s (unicode-ident-1.0.24.crate) = 48314ea8c9272549000bbd39fab6a52df9a467bedfcdcda02f183d7549b620b2
SHA512 (unicode-ident-1.0.24.crate) = 7be712d8d0075ac9341790180e312f66264d3e0255c91b38df0951baa5e446dec24551bb2125a66a1cb9b6ca2f1ea37c0cc15fa3dd74f398ecf4d5302c7dc259
Size (unicode-ident-1.0.24.crate) = 49298 bytes
-BLAKE2s (unindent-0.2.4.crate) = 23a02b24120d8f537193f44f8a2cc72b54f19168991988f18f864f962aa88ac0
-SHA512 (unindent-0.2.4.crate) = 58bd4fd20a0b0a7200e0ea3ea70553cea135a5a8f7a2fb178520c41228f435becce4b9981019b7c73a17df87a2ee9b2a47c4cec29a3011bfe848d48b2473761b
-Size (unindent-0.2.4.crate) = 7422 bytes
Home |
Main Index |
Thread Index |
Old Index