pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

difftastic: update to 0.24.0.



Module Name:	pkgsrc-wip
Committed By:	Thomas Klausner <tk%giga.or.at@localhost>
Pushed By:	wiz
Date:		Wed Mar 30 11:34:37 2022 +0200
Changeset:	dcc50cd95e43f3dbd61e26a73c93b61a85b7d505

Modified Files:
	difftastic/Makefile
	difftastic/cargo-depends.mk
	difftastic/distinfo

Log Message:
difftastic: update to 0.24.0.

Reduced the default value of DFT_NODE_LIMIT from 100,000 to
30,000. This fixes cases where files near the limit would use too much
memory and not terminate.

Fixed an issue where hunks would be missing lines. This occurred in
certain circumstances when a line contained both changed and unchanged
parts.

Fixed an issue where blank lines at the beginning or end of a file
would be excluded from context.

Fixed an issue where lines containing only whitespace would be
highlighted in purple.

Fixed an issue with changed multiline strings where blank lines were
not highlighted.

Improved Clojure syntax highlighting.

Added support for Dart.

Difftastic will now warn if both arguments point to the same file.

When diffing directories, diff results are printed incrementally
rather than waiting for the results of all files before printing.

Fixed crash where the 'shrink unchanged' logic would not set the
change state on the outer list.

Improved performance on very large files that are compared by text.

Fixed some cases where changing list delimiters would lead to
incorrect diffs.

Fixed an issue where lines were not aligned correctly after correcting
sliders.

Fixed an issue the outermost delimiter in lists was sometimes
incorrectly marked as unchanged, producing non-optimal diffs.

Display now prefers to align blank lines in the display, producing
significantly better results in many cases.

Fixed an issue where some lines in a hunk were not displayed.

Difftastic now requires Rust 1.56 to build.

Added support for PHP.

Fixed handling of `<` `>` delimiters in C++ and Rust.

Difftastic will now split files that contain obviously unchanged
regions, substantially improving performance when a file has multiple
changes that have many unchanged items between them.

Improved diff results when choosing between syntax nodes at different
nesting levels. This is restoring a heuristic that was removed in
0.20.

Improved diff results when lists have unequal sizes.

Improved diff results when the language parser thinks that names occur
in different syntactic positions.

Adjusted the heuristics for 'so much has changed in this expression
that it is confusing to highlight the unchanged parts'. The heuristic
is now less aggressive, which helps performance and seems to produce
slightly better results.

Difftastic now understands `-*-` file headers (as used by Emacs) when
performing language detection.

Improved alignment logic. This fixes a bug where the last line of a
file wasn't displayed, and generally improves how difftastic chooses
to align content.

Fixed a crash when line wrapping produced an entirely blank line.

Improved word diffing (in both comments and textual diffs) when source
contains Unicode characters. Word splitting now uses the Unicode
alphabetic property.

Fixed a crash when comments contained multibyte Unicode characters.

Diffing now correctly handles nodes being moved to parent
lists. Previously this would be ignored, leading to difftastic
incorrectly claiming things were unchanged. This also leads to better
diffing results in general, although is somewhat slower (2x in
testing).

Improved slider logic in larger expressions.

Increased the default value DFT_NODE_LIMIT to 100,000 (from
50,000). This increases the likelihood that files get a syntactic diff
whilst still having acceptable performance.

Fixed an issue where whole file additions/removals were printed twice.

Fixed an issue where difftastic didn't show context on hunks where the
unchanged content was on different lines.

Hunks are now merged if the lines are immediately adjacent
(e.g. hunk 1 ends on line 11, hunk 2 starts on line 12), not just if
they're overlapping.

Difftastic will now use a text dif for large files that are too big to
parse in a reasonable amount of time. This threshold is
configurable with `--byte-limit` and `DFT_BYTE_LIMIT`.

Fixed a crash when called with zero arguments.

Fixed an issue with changes being ignored in OCaml's `{||}` string
literals.

Fixed an issue where larger additions were not lined up with removals.

Improved syntax highlighting for Clojure, Common Lisp and TypeScript.

Comments are now highlighted with italics, making it easier to see
syntax even when text is red.

Built-in constants are now highlighted consistently with other
constants.

Improved minor display issues when one file is longer than the other.

If given binary files, difftastic will now report if the file contents
are identical.

Difftastic will now use a text diff for large files, rather than
trying to use more memory than is available. This threshold is
configurable with `--node-limit` and `DFT_NODE_LIMIT`.

Fixed a bug in the text diff logic where lines weren't shown if they
did not have both word additions and word removals.

Difftastic will now error if either argument does not exist, unless
`--missing-as-empty` (new argument) is passed. This is a better
default, but requires Mercurial uses to [specify this
flag](https://difftastic.wilfred.me.uk/mercurial.html) in their
configuration.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=dcc50cd95e43f3dbd61e26a73c93b61a85b7d505

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 difftastic/Makefile         |  2 +-
 difftastic/cargo-depends.mk | 14 +++++++++----
 difftastic/distinfo         | 48 +++++++++++++++++++++++++++++++--------------
 3 files changed, 44 insertions(+), 20 deletions(-)

diffs:
diff --git a/difftastic/Makefile b/difftastic/Makefile
index 6deb0f72f1..8e9d4a10cb 100644
--- a/difftastic/Makefile
+++ b/difftastic/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD$
 
-DISTNAME=	difftastic-0.18.1
+DISTNAME=	difftastic-0.24.0
 CATEGORIES=	devel
 MASTER_SITES=	${MASTER_SITE_GITHUB:=Wilfred/}
 
diff --git a/difftastic/cargo-depends.mk b/difftastic/cargo-depends.mk
index 254f580914..42660275ef 100644
--- a/difftastic/cargo-depends.mk
+++ b/difftastic/cargo-depends.mk
@@ -2,17 +2,19 @@
 
 CARGO_CRATE_DEPENDS+=	aho-corasick-0.7.18
 CARGO_CRATE_DEPENDS+=	ansi_term-0.12.1
+CARGO_CRATE_DEPENDS+=	archery-0.4.0
 CARGO_CRATE_DEPENDS+=	atty-0.2.14
 CARGO_CRATE_DEPENDS+=	autocfg-1.0.1
 CARGO_CRATE_DEPENDS+=	bitflags-1.3.2
 CARGO_CRATE_DEPENDS+=	cc-1.0.72
 CARGO_CRATE_DEPENDS+=	cfg-if-1.0.0
 CARGO_CRATE_DEPENDS+=	clap-3.0.13
-CARGO_CRATE_DEPENDS+=	colored-2.0.0
+CARGO_CRATE_DEPENDS+=	const_format-0.2.22
+CARGO_CRATE_DEPENDS+=	const_format_proc_macros-0.2.22
 CARGO_CRATE_DEPENDS+=	crossbeam-channel-0.5.1
 CARGO_CRATE_DEPENDS+=	crossbeam-deque-0.8.1
 CARGO_CRATE_DEPENDS+=	crossbeam-epoch-0.9.5
-CARGO_CRATE_DEPENDS+=	crossbeam-utils-0.8.5
+CARGO_CRATE_DEPENDS+=	crossbeam-utils-0.8.7
 CARGO_CRATE_DEPENDS+=	ctor-0.1.21
 CARGO_CRATE_DEPENDS+=	diff-0.1.12
 CARGO_CRATE_DEPENDS+=	either-1.6.1
@@ -32,25 +34,28 @@ CARGO_CRATE_DEPENDS+=	mimalloc-0.1.27
 CARGO_CRATE_DEPENDS+=	num_cpus-1.13.1
 CARGO_CRATE_DEPENDS+=	os_str_bytes-6.0.0
 CARGO_CRATE_DEPENDS+=	output_vt100-0.1.2
+CARGO_CRATE_DEPENDS+=	owo-colors-3.2.0
 CARGO_CRATE_DEPENDS+=	pretty_assertions-1.0.0
 CARGO_CRATE_DEPENDS+=	pretty_env_logger-0.4.0
 CARGO_CRATE_DEPENDS+=	proc-macro2-1.0.36
 CARGO_CRATE_DEPENDS+=	quick-error-1.2.3
 CARGO_CRATE_DEPENDS+=	quote-1.0.13
-CARGO_CRATE_DEPENDS+=	radix-heap-0.4.1
+CARGO_CRATE_DEPENDS+=	radix-heap-0.4.2
 CARGO_CRATE_DEPENDS+=	rayon-1.5.1
 CARGO_CRATE_DEPENDS+=	rayon-core-1.9.1
 CARGO_CRATE_DEPENDS+=	regex-1.5.4
 CARGO_CRATE_DEPENDS+=	regex-syntax-0.6.25
+CARGO_CRATE_DEPENDS+=	rpds-0.11.0
 CARGO_CRATE_DEPENDS+=	rustc-hash-1.1.0
 CARGO_CRATE_DEPENDS+=	same-file-1.0.6
 CARGO_CRATE_DEPENDS+=	scopeguard-1.1.0
+CARGO_CRATE_DEPENDS+=	static_assertions-1.1.0
 CARGO_CRATE_DEPENDS+=	strsim-0.10.0
 CARGO_CRATE_DEPENDS+=	syn-1.0.84
 CARGO_CRATE_DEPENDS+=	term_size-0.3.2
 CARGO_CRATE_DEPENDS+=	termcolor-1.1.2
 CARGO_CRATE_DEPENDS+=	textwrap-0.14.2
-CARGO_CRATE_DEPENDS+=	tree-sitter-0.20.2
+CARGO_CRATE_DEPENDS+=	tree-sitter-0.20.5
 CARGO_CRATE_DEPENDS+=	typed-arena-2.0.1
 CARGO_CRATE_DEPENDS+=	unicode-xid-0.2.2
 CARGO_CRATE_DEPENDS+=	walkdir-2.3.2
@@ -58,3 +63,4 @@ CARGO_CRATE_DEPENDS+=	winapi-0.3.9
 CARGO_CRATE_DEPENDS+=	winapi-i686-pc-windows-gnu-0.4.0
 CARGO_CRATE_DEPENDS+=	winapi-util-0.1.5
 CARGO_CRATE_DEPENDS+=	winapi-x86_64-pc-windows-gnu-0.4.0
+CARGO_CRATE_DEPENDS+=	wu-diff-0.1.2
diff --git a/difftastic/distinfo b/difftastic/distinfo
index 6ffd06e63d..6f849a419a 100644
--- a/difftastic/distinfo
+++ b/difftastic/distinfo
@@ -6,6 +6,9 @@ Size (aho-corasick-0.7.18.crate) = 112923 bytes
 BLAKE2s (ansi_term-0.12.1.crate) = 9d7961fca7b2680f17660048cf2d6171faa0def807ea66b5b5b9110f0623a12f
 SHA512 (ansi_term-0.12.1.crate) = b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671
 Size (ansi_term-0.12.1.crate) = 24838 bytes
+BLAKE2s (archery-0.4.0.crate) = 98cac9f691415d6b19469e1925979a20f4444fbfdc964ebb269279e2efda2322
+SHA512 (archery-0.4.0.crate) = 4726598957f2fda480fe4fb28b518307030dc032b1b79a9ce83a5e58872e57517a632e205cb83870f48937c3090956045faa066171248d615cb6b029127ee693
+Size (archery-0.4.0.crate) = 21265 bytes
 BLAKE2s (atty-0.2.14.crate) = 8a58145c7b668aa6caf8d749e37857ff202211e1bfa9e441f130ff02feb68405
 SHA512 (atty-0.2.14.crate) = d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9
 Size (atty-0.2.14.crate) = 5470 bytes
@@ -24,9 +27,12 @@ Size (cfg-if-1.0.0.crate) = 7934 bytes
 BLAKE2s (clap-3.0.13.crate) = bec65e316816f3b89ce5fa788ee28cb4cc932392c9dccba2771d1a2fd417cc19
 SHA512 (clap-3.0.13.crate) = 10a7a0211377d524d3b2938dc19e94f7ee0ab6416c169050224c6952302c547ee7e7e5c1d150b59edc552ca66bfb176fef82faf237a5496a89ad3956cb7f1c63
 Size (clap-3.0.13.crate) = 191249 bytes
-BLAKE2s (colored-2.0.0.crate) = d662d4cff2fde6538fe02524b0e763f1928411c0dfb593c90c8dd6a6616389ec
-SHA512 (colored-2.0.0.crate) = c9ee830c1e8a32372ab8c7ce569701deaa6533fa369fc1b4c04bed57b1e686ed775fc76c3d9815ad21ee69cfc7c30d645abcbacad39081c7e37ff83ebb6d9e8a
-Size (colored-2.0.0.crate) = 21619 bytes
+BLAKE2s (const_format-0.2.22.crate) = 30a30e1eeb0267d2498e7cf2794560e6ff6d51d594e1e5eac2d0b351a9d00e96
+SHA512 (const_format-0.2.22.crate) = 3ed65106b3fa49fe7cbc0592a8a5b0fc9b99d9d44cb51c1fbdb2fb2eb916d801aa19d9ec568560d6df33373324ea226de3db6e82cbeb9a850426589472a1ec9c
+Size (const_format-0.2.22.crate) = 72234 bytes
+BLAKE2s (const_format_proc_macros-0.2.22.crate) = 5f221f5ad51b95648ef8504d3191cc5f7754457a23674e826edef40d8402fb21
+SHA512 (const_format_proc_macros-0.2.22.crate) = a0382a50502cff46c966fca1518ae1102cc749a9fff142a7fc29c3f3dce4b947ef05576e27248ed682aa9db2e1c0af149f41981d02d8415b63734a0ceccb68f4
+Size (const_format_proc_macros-0.2.22.crate) = 24274 bytes
 BLAKE2s (crossbeam-channel-0.5.1.crate) = fa3946862d6c6657de81dfa9024d422baa65f2593b737adcdf5835ce5f905e7c
 SHA512 (crossbeam-channel-0.5.1.crate) = f15aff67e9105584f5fe41e1ee650ae4fdd0d0ca0fa9202ee83c6f6025398a300decaa50d1b4682e8afb9bd6e11e95b69bcf23f68ae117419aa84df14ee7747b
 Size (crossbeam-channel-0.5.1.crate) = 86919 bytes
@@ -36,18 +42,18 @@ Size (crossbeam-deque-0.8.1.crate) = 20852 bytes
 BLAKE2s (crossbeam-epoch-0.9.5.crate) = 74acaf8d83c134f99c48202bbe6afd4ae62daa434cd5f3e13b5515e9fde666bd
 SHA512 (crossbeam-epoch-0.9.5.crate) = ad822e967e5ef45fa0c4a939f057f44146f1f051032fd032355a75c0f45ae4e0a55e1d31c80bc67c01ff8d9c87a51aba7ccfe9a440f061fd8225c879aa663064
 Size (crossbeam-epoch-0.9.5.crate) = 43883 bytes
-BLAKE2s (crossbeam-utils-0.8.5.crate) = 8ad14d12243d2fb43224bafc0efdb3759c8307a406c82f7c97cdcabb49a2c718
-SHA512 (crossbeam-utils-0.8.5.crate) = fd4d2ae10340bb96c22b31190b300aab54e96b8089fd62489e102c76a944e6a16c582a90bc40f5e188f13f841293a4b9becf30830c2ece04f3ce78c29066532f
-Size (crossbeam-utils-0.8.5.crate) = 38414 bytes
+BLAKE2s (crossbeam-utils-0.8.7.crate) = d17129bf8e489dac5e06ee9dc8e6adcc5772b3c28bdcec3ac3517a9133beea42
+SHA512 (crossbeam-utils-0.8.7.crate) = b9c999f570640513c38c95fe5e50d0e89adfd27a9370952a8ee441118ffc0f092d21f6dbe7c68f653a6e766e5c1aeb209145d49542f1bdaa1f561e6707ad482b
+Size (crossbeam-utils-0.8.7.crate) = 39751 bytes
 BLAKE2s (ctor-0.1.21.crate) = ceff7ec44afb8f9931f3bd519a43347a66f388ce4bbdb1623d5454df0d11d745
 SHA512 (ctor-0.1.21.crate) = 18a914f5bd55172e5ff199778babad9a20dd4214f36f24cc00531db5e169af66f77eacab425e8e64d053907366ebd3b448a0c3275ee1f8244822778b62c4cb71
 Size (ctor-0.1.21.crate) = 9303 bytes
 BLAKE2s (diff-0.1.12.crate) = 97e9a9edde58861f9129c0f531e596f0602a744e070445315118269ae02ad4f7
 SHA512 (diff-0.1.12.crate) = 0e81331c0424e9369963e23894a6412b65a3ed4f3154ccc184fc84cf1c5985b81c586a6b34e8c6c0e5c3afba38fb15277cfd89e7f50c85bd5d8d4d24ba670d16
 Size (diff-0.1.12.crate) = 10223 bytes
-BLAKE2s (difftastic-0.18.1.tar.gz) = 96722da86b45b45d1b03a332abff911a78e5e2c4bc5cf74f2dee01e3f09d4e10
-SHA512 (difftastic-0.18.1.tar.gz) = 675061dc658fdae2fb8029a1048f750cda9d53ac9eb7a1ed16413335d85407446e98b1106b168a6c35e088bc8ce337db596c6696ec539d573552ac540b0aeb42
-Size (difftastic-0.18.1.tar.gz) = 8041266 bytes
+BLAKE2s (difftastic-0.24.0.tar.gz) = 3e49410c13aa09a8c1b50f42738c9228e1d921fa790aad317761c4924c0f0c83
+SHA512 (difftastic-0.24.0.tar.gz) = b2f891aa2ee0a61a08f3dd94811995511f44bac1feaa38ee2ed1d5c00c2fea517ab336c3165bb6f3af8fa7197c02fa375521e8b21907f26a4d5df6c600c4b2e3
+Size (difftastic-0.24.0.tar.gz) = 8461483 bytes
 BLAKE2s (either-1.6.1.crate) = 6bb7f6e21460b5351a6f5a377c2cf08d5e444c0fef34823941742c346e201965
 SHA512 (either-1.6.1.crate) = 4bfe56920e30cbc8eb4f90162db618f7dca653b42db35ab6a7045d3fd9a24ceb1778b1f79613850bdb1a87ad3794fa0d73015e46c48d513f368d8c3776fc9ddf
 Size (either-1.6.1.crate) = 13641 bytes
@@ -99,6 +105,9 @@ Size (os_str_bytes-6.0.0.crate) = 21046 bytes
 BLAKE2s (output_vt100-0.1.2.crate) = c7fbcb2dfb16f1d52b7e4cc8729bb03d07c693e019db6c176a8f40ce6c295c78
 SHA512 (output_vt100-0.1.2.crate) = b8eb00a541bebef2e0bb44975c4547fadfd4ab88a14aa8e31945f3c73531a550cf5729f1f3d18fae5cf36286b82d1a54fb08b28720f1592ab6cfe0814c8d3036
 Size (output_vt100-0.1.2.crate) = 4062 bytes
+BLAKE2s (owo-colors-3.2.0.crate) = f5a11c5d9319e459da3a86a4f0f921bcc96a487ce382b7590eec64c20a250178
+SHA512 (owo-colors-3.2.0.crate) = bac9c5f653447d98a9c324c217b47d40e9df4990593f17a973ae8cf998290cf1ec078221b9608ae548a1ed9c8d2e88feba765a60e118ced946dc48ef6c9edcb1
+Size (owo-colors-3.2.0.crate) = 26928 bytes
 BLAKE2s (pretty_assertions-1.0.0.crate) = 4ae0bda567dc1cd69edc30d8ccc24bc7aa66b2e3b15538d8efbda99d2d48d05e
 SHA512 (pretty_assertions-1.0.0.crate) = 65065b7efc5e7003499063464e4b996c84f22637143a01f8857552369960425156e0ce0571a62e876df3a8ac9d1361548bf5d4676749b0baf5bdd3a22f66b1a5
 Size (pretty_assertions-1.0.0.crate) = 73836 bytes
@@ -114,9 +123,9 @@ Size (quick-error-1.2.3.crate) = 15066 bytes
 BLAKE2s (quote-1.0.13.crate) = 7a149a29d389c25d4e1e444a85284d56eebfd11d8c77f76a2143ab3e96386bbe
 SHA512 (quote-1.0.13.crate) = a0a67ce4ff5e7cfc97467505cbdcf8880cd9be40fac8cb7e5bd57ef398fa1201854ec96a51dc4b163552c237ba19300253c8d87bed777d7eecc7e21a36a6ba06
 Size (quote-1.0.13.crate) = 28042 bytes
-BLAKE2s (radix-heap-0.4.1.crate) = f8c27543595c4bb3db0ccfaa70f58133a603240f06b674843d40b7a26e581881
-SHA512 (radix-heap-0.4.1.crate) = bcfc77abcc5429b0ece2977ee28dbd6ffb5fdbf7d038941c9eaf65e56eb401e647458773ce918338604448539e348dbc5c2c1c67213b7d05817a5b23336e6182
-Size (radix-heap-0.4.1.crate) = 9305 bytes
+BLAKE2s (radix-heap-0.4.2.crate) = 8b14db4ca6c53a86e9c44ccc5cbdd1fdba330f82a9e1dd1e732f1e5bc7d3848e
+SHA512 (radix-heap-0.4.2.crate) = ce80f6abe1d631374aa814830b4e354e4604d8a29b70e3fdc0544d7441fbda9ef3311f5ae55b671c26e543aa54548764c95675b638a8aa060f9047eb077fc715
+Size (radix-heap-0.4.2.crate) = 9323 bytes
 BLAKE2s (rayon-1.5.1.crate) = 89625a469f67dbe9f1b8c8233759c7530ac523093d6779f8c5de3a0c2fde6b37
 SHA512 (rayon-1.5.1.crate) = a68e65aae7040a6f6b0cc33b53b4c22929c15504ed4fdf54f5eb5fcaeab137c220b00c716aed96246b6a762c4f1e8be920356231d6c4a0b3e01132b9ab96ffc9
 Size (rayon-1.5.1.crate) = 160424 bytes
@@ -129,6 +138,9 @@ Size (regex-1.5.4.crate) = 236581 bytes
 BLAKE2s (regex-syntax-0.6.25.crate) = e37642d6bafc62a523b729a9b82712000ee5c603ab3e0d4389af0b5735c64d71
 SHA512 (regex-syntax-0.6.25.crate) = a3d31f82aadc6be1796f76c03152ff24f37fe42d6ce27fb98e2f55ab102f86502bc37ccd563f6e0eba61aab20d002184c618517b678b3b93cb8f0497cc046ca5
 Size (regex-syntax-0.6.25.crate) = 293293 bytes
+BLAKE2s (rpds-0.11.0.crate) = 8459368a13c04935ae12066f56eb8f263063e5b46d6d620832d078f4bc4bf0cc
+SHA512 (rpds-0.11.0.crate) = 664e286c746c29361377379da954c71588cf47ca386bf87bbd9da37aa683c838faae0a7ad906714df127edbca7fb24f7d78e93cb4994870257272009a2fc3437
+Size (rpds-0.11.0.crate) = 67769 bytes
 BLAKE2s (rustc-hash-1.1.0.crate) = ba3940200a72ad4ee115b0ef61c7c32278f6a3fa5d913220d1bd72362ef63aaf
 SHA512 (rustc-hash-1.1.0.crate) = 84e673ea9b046f7b989d47f2c4505557fbd5de991e6fc9f56a03605d40e0b4ba5427cd566954890153cc033ccbec6c984306634571935bfe0d4cdfbe56f39544
 Size (rustc-hash-1.1.0.crate) = 9331 bytes
@@ -138,6 +150,9 @@ Size (same-file-1.0.6.crate) = 10183 bytes
 BLAKE2s (scopeguard-1.1.0.crate) = d3884942354d25131c602303463c5686e520bd94daf216a810679acabf59b82e
 SHA512 (scopeguard-1.1.0.crate) = 368fa5726df8f42b599993681579a9ffd0196480ee3cd0f9f671e8493f3bedd1e1779bdf2beb329e77e0005fa09b816e3385f309490c0f2781568db275d4d17d
 Size (scopeguard-1.1.0.crate) = 11470 bytes
+BLAKE2s (static_assertions-1.1.0.crate) = eb3218e3c4d41feda9dac8901108477074703c4ed397618b14cbe86bfb1ccbe6
+SHA512 (static_assertions-1.1.0.crate) = 46d0e35f77941dee6f60f574c130472248063dc38494c1c4f84f7c048244cc2a58a86fe17c0990e3f0f01406b75ed385a13d00058612b27cf0e867c8d31c92ee
+Size (static_assertions-1.1.0.crate) = 18480 bytes
 BLAKE2s (strsim-0.10.0.crate) = 4893490aaecbb97be0d8268c4ad5653b22237927bc9f08196717dc9a5160de50
 SHA512 (strsim-0.10.0.crate) = 78b318532addfcf5c1ccc1e14539e258aab9d3cd893cc45d82342549bde838c177d90f13c560671f8f32929af47d0b467db35e6876bd7697d8b3f9e055aeeac1
 Size (strsim-0.10.0.crate) = 11355 bytes
@@ -153,9 +168,9 @@ Size (termcolor-1.1.2.crate) = 17287 bytes
 BLAKE2s (textwrap-0.14.2.crate) = fd4222c5777268724d53efad1778b87a3f176dbf175fc0a3442ddb39c87deab7
 SHA512 (textwrap-0.14.2.crate) = 521ab37e03aae8fcce5b909541399fc90a23020e353f95102c658fa94ffc56b9bdff43f47fb3da6e30f5c9cc9447fab72fe21d7276dfa21fe5a1a5a1c874e371
 Size (textwrap-0.14.2.crate) = 52016 bytes
-BLAKE2s (tree-sitter-0.20.2.crate) = d641e5d60b1bd3eeb69f872ded898573816dc135c70abc6888a1d2c7475e8060
-SHA512 (tree-sitter-0.20.2.crate) = 498a6a8add5c79d81add11af76b679322150ab87fb55171aeeaf279b44841ac9afb0ddfe3edb10f67979dacb7c37a1039a32ac4e516270e57e28fb1c020bd284
-Size (tree-sitter-0.20.2.crate) = 127877 bytes
+BLAKE2s (tree-sitter-0.20.5.crate) = 57af58a72edd50a4f059d2b29e471149c8fa1ddbc6261df3f43b31b98784ffb6
+SHA512 (tree-sitter-0.20.5.crate) = f0447b9cbeb1cc276f3617583003d345acfcee954fd021665e695f543a9a70a2220bfda795707dd58cfa20496799456a3572c31f9edcc066d19233402add7c7f
+Size (tree-sitter-0.20.5.crate) = 130915 bytes
 BLAKE2s (typed-arena-2.0.1.crate) = f484d944cc67a0b122c9e02a4b8815bfd3c3843144cbd493052b3bd1666635de
 SHA512 (typed-arena-2.0.1.crate) = 182fdac0ef9b494fc2966005ece2107a3c53b6eafe4eebe9be3d552aebe143e05f3db2b51693c253831744fc265ec2a557d31ee42cf0ba5991b38d075278415d
 Size (typed-arena-2.0.1.crate) = 11439 bytes
@@ -177,3 +192,6 @@ Size (winapi-util-0.1.5.crate) = 10164 bytes
 BLAKE2s (winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 85ecec73b9874f5f443e29d99f93a11889e74ddf5a4bfeb929e2355a7cee32f1
 SHA512 (winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 4a654af6a5d649dc87e00497245096b35a2894ae66f155cb62389902c3b93ddcc5cf7d0d8b9dd97b291d2d80bc686af2298e80abef6ac69883f4a54e79712513
 Size (winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 2947998 bytes
+BLAKE2s (wu-diff-0.1.2.crate) = 6e1850ebdcf02e87b768685a99067acb0f7cf78b1bf0d5af66ed09813998176d
+SHA512 (wu-diff-0.1.2.crate) = 6d93c8854dba66f48f736db3f9e997d11d07a0fef3e13219716e553c0f5936f1d00468b88d9164329cfd195271aa242ec7dfd58560074f1a41e8558719ba5af0
+Size (wu-diff-0.1.2.crate) = 33439 bytes


Home | Main Index | Thread Index | Old Index