Tue Aug 1 08:04:27 2023 UTC ()
shells/nushell: update to 0.83.1

Nushell 0.83.1 (hot-fix)

A few days ago, we released the 0.83 version of Nushell. As you can see in the
release notes, the release included a major upgrade to the type system as well
as wide-reaching breaking changes.

Extensive efforts were made before the release to mitigate these changes to
make them easier to adopt when 0.93 was released, and included:
 - quite a lot of command signatures have been updated to keep functionalities
   at the same level while adding better type checking
 - major integration scripts from 3rd-party applications have been fixed prior
   to the release

However, as you might have noticed and thanks to the feedback of you the
community, more issues and bugs have been found. Many commands needed additional
updates to play well with the updated type system. We decided to release a
hotfix release to address what had been found, and this is that release.
You can find out more about the hotfix in Tracking issue for 0.83.0 fixup #9812

What does the hot-fix release address?

Most of the type-system-related issues have been fixed, hopefully bringing most
of the command set of Nushell back to its previous feature level with the nice
addition of better input/output type checking and annotations. In a few places,
the type system itself was fixed, as with the case of $rest args now
type-checking correctly in a pipeline.

What will the hot-fix release NOT address?
Bring the let-env command back to life.

Thankfully, the community helped by updating their Nushell integrations and
releasing corresponding new versions.
Please, check your tools like starship for updates.
Fully fix the dataframe integration.

When upgrading the type system for the 0.83, we removed a semi-working system
that enabled the dataframe commands to run both in a lazy and eager mode, but
only if the types were known at parse-time. Due to the complexity of reworking
this and the dataframe support currently being a tier-two feature in Nushell,
we won't be able to fully fix this with this patch release. Thankfully @ayax79
started work in #9858 which promises to make the dataframe commands work again
within the general Nushell type system.

Breaking changes for plugin authors

With the type system changes in 0.83.0 any plugins that declared that their
signature "vectorizes_over_list": true were not able to automatically broadcast
their operation for a type T (e.g. number) over a list<T> input. With this patch
release, we removed this field from nu-protocol.

You need to add the list<T> signature if necessary. Also recompile your
plugins using nu-plugin 0.83.1 or remove the vectorizes_over_list field from
the signature information if you don't use nu-plugin (e.g. plugins not
implemented in Rust).

Breaking changes for plugin users

You may need to recompile or update your plugins and then re-register your
plugins.


(pin)
diff -r1.37 -r1.38 pkgsrc/shells/nushell/Makefile
diff -r1.24 -r1.25 pkgsrc/shells/nushell/cargo-depends.mk
diff -r1.29 -r1.30 pkgsrc/shells/nushell/distinfo

cvs diff -r1.37 -r1.38 pkgsrc/shells/nushell/Makefile (expand / switch to unified diff)

--- pkgsrc/shells/nushell/Makefile 2023/07/26 19:36:37 1.37
+++ pkgsrc/shells/nushell/Makefile 2023/08/01 08:04:27 1.38
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.37 2023/07/26 19:36:37 pin Exp $ 1# $NetBSD: Makefile,v 1.38 2023/08/01 08:04:27 pin Exp $
2 2
3DISTNAME= nushell-0.83.0 3DISTNAME= nushell-0.83.1
4CATEGORIES= shells 4CATEGORIES= shells
5MASTER_SITES= ${MASTER_SITE_GITHUB:=nushell/} 5MASTER_SITES= ${MASTER_SITE_GITHUB:=nushell/}
6 6
7MAINTAINER= pin@NetBSD.org 7MAINTAINER= pin@NetBSD.org
8HOMEPAGE= https://www.nushell.sh/ 8HOMEPAGE= https://www.nushell.sh/
9COMMENT= New type of shell 9COMMENT= New type of shell
10LICENSE= mit 10LICENSE= mit
11 11
12.include "cargo-depends.mk" 12.include "cargo-depends.mk"
13 13
14USE_TOOLS+= pkg-config 14USE_TOOLS+= pkg-config
15 15
16PKG_SHELL= bin/nu 16PKG_SHELL= bin/nu

cvs diff -r1.24 -r1.25 pkgsrc/shells/nushell/cargo-depends.mk (expand / switch to unified diff)

--- pkgsrc/shells/nushell/cargo-depends.mk 2023/07/26 19:36:37 1.24
+++ pkgsrc/shells/nushell/cargo-depends.mk 2023/08/01 08:04:27 1.25
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: cargo-depends.mk,v 1.24 2023/07/26 19:36:37 pin Exp $ 1# $NetBSD: cargo-depends.mk,v 1.25 2023/08/01 08:04:27 pin Exp $
2 2
3CARGO_CRATE_DEPENDS+= Inflector-0.11.4 3CARGO_CRATE_DEPENDS+= Inflector-0.11.4
4CARGO_CRATE_DEPENDS+= addr2line-0.20.0 4CARGO_CRATE_DEPENDS+= addr2line-0.20.0
5CARGO_CRATE_DEPENDS+= adler-1.0.2 5CARGO_CRATE_DEPENDS+= adler-1.0.2
6CARGO_CRATE_DEPENDS+= ahash-0.7.6 6CARGO_CRATE_DEPENDS+= ahash-0.7.6
7CARGO_CRATE_DEPENDS+= ahash-0.8.3 7CARGO_CRATE_DEPENDS+= ahash-0.8.3
8CARGO_CRATE_DEPENDS+= aho-corasick-1.0.2 8CARGO_CRATE_DEPENDS+= aho-corasick-1.0.2
9CARGO_CRATE_DEPENDS+= alloc-no-stdlib-2.0.4 9CARGO_CRATE_DEPENDS+= alloc-no-stdlib-2.0.4
10CARGO_CRATE_DEPENDS+= alloc-stdlib-0.2.2 10CARGO_CRATE_DEPENDS+= alloc-stdlib-0.2.2
11CARGO_CRATE_DEPENDS+= allocator-api2-0.2.15 11CARGO_CRATE_DEPENDS+= allocator-api2-0.2.15
12CARGO_CRATE_DEPENDS+= alphanumeric-sort-1.5.1 12CARGO_CRATE_DEPENDS+= alphanumeric-sort-1.5.1
13CARGO_CRATE_DEPENDS+= android-tzdata-0.1.1 13CARGO_CRATE_DEPENDS+= android-tzdata-0.1.1
14CARGO_CRATE_DEPENDS+= android_system_properties-0.1.5 14CARGO_CRATE_DEPENDS+= android_system_properties-0.1.5
@@ -471,27 +471,27 @@ CARGO_CRATE_DEPENDS+= tiny-keccak-2.0.2 @@ -471,27 +471,27 @@ CARGO_CRATE_DEPENDS+= tiny-keccak-2.0.2
471CARGO_CRATE_DEPENDS+= tinytemplate-1.2.1 471CARGO_CRATE_DEPENDS+= tinytemplate-1.2.1
472CARGO_CRATE_DEPENDS+= tinyvec-1.6.0 472CARGO_CRATE_DEPENDS+= tinyvec-1.6.0
473CARGO_CRATE_DEPENDS+= tinyvec_macros-0.1.1 473CARGO_CRATE_DEPENDS+= tinyvec_macros-0.1.1
474CARGO_CRATE_DEPENDS+= titlecase-2.2.1 474CARGO_CRATE_DEPENDS+= titlecase-2.2.1
475CARGO_CRATE_DEPENDS+= tokio-1.29.1 475CARGO_CRATE_DEPENDS+= tokio-1.29.1
476CARGO_CRATE_DEPENDS+= tokio-macros-2.1.0 476CARGO_CRATE_DEPENDS+= tokio-macros-2.1.0
477CARGO_CRATE_DEPENDS+= tokio-util-0.7.8 477CARGO_CRATE_DEPENDS+= tokio-util-0.7.8
478CARGO_CRATE_DEPENDS+= toml-0.7.6 478CARGO_CRATE_DEPENDS+= toml-0.7.6
479CARGO_CRATE_DEPENDS+= toml_datetime-0.6.3 479CARGO_CRATE_DEPENDS+= toml_datetime-0.6.3
480CARGO_CRATE_DEPENDS+= toml_edit-0.19.12 480CARGO_CRATE_DEPENDS+= toml_edit-0.19.12
481CARGO_CRATE_DEPENDS+= tower-service-0.3.2 481CARGO_CRATE_DEPENDS+= tower-service-0.3.2
482CARGO_CRATE_DEPENDS+= tracing-0.1.37 482CARGO_CRATE_DEPENDS+= tracing-0.1.37
483CARGO_CRATE_DEPENDS+= tracing-core-0.1.31 483CARGO_CRATE_DEPENDS+= tracing-core-0.1.31
484CARGO_CRATE_DEPENDS+= trash-3.0.5 484CARGO_CRATE_DEPENDS+= trash-3.0.6
485CARGO_CRATE_DEPENDS+= try-lock-0.2.4 485CARGO_CRATE_DEPENDS+= try-lock-0.2.4
486CARGO_CRATE_DEPENDS+= typed-arena-1.7.0 486CARGO_CRATE_DEPENDS+= typed-arena-1.7.0
487CARGO_CRATE_DEPENDS+= typenum-1.16.0 487CARGO_CRATE_DEPENDS+= typenum-1.16.0
488CARGO_CRATE_DEPENDS+= typetag-0.2.9 488CARGO_CRATE_DEPENDS+= typetag-0.2.9
489CARGO_CRATE_DEPENDS+= typetag-impl-0.2.9 489CARGO_CRATE_DEPENDS+= typetag-impl-0.2.9
490CARGO_CRATE_DEPENDS+= umask-2.1.0 490CARGO_CRATE_DEPENDS+= umask-2.1.0
491CARGO_CRATE_DEPENDS+= unicase-2.6.0 491CARGO_CRATE_DEPENDS+= unicase-2.6.0
492CARGO_CRATE_DEPENDS+= unicode-bidi-0.3.13 492CARGO_CRATE_DEPENDS+= unicode-bidi-0.3.13
493CARGO_CRATE_DEPENDS+= unicode-ident-1.0.10 493CARGO_CRATE_DEPENDS+= unicode-ident-1.0.10
494CARGO_CRATE_DEPENDS+= unicode-linebreak-0.1.4 494CARGO_CRATE_DEPENDS+= unicode-linebreak-0.1.4
495CARGO_CRATE_DEPENDS+= unicode-normalization-0.1.22 495CARGO_CRATE_DEPENDS+= unicode-normalization-0.1.22
496CARGO_CRATE_DEPENDS+= unicode-segmentation-1.10.1 496CARGO_CRATE_DEPENDS+= unicode-segmentation-1.10.1
497CARGO_CRATE_DEPENDS+= unicode-width-0.1.10 497CARGO_CRATE_DEPENDS+= unicode-width-0.1.10

cvs diff -r1.29 -r1.30 pkgsrc/shells/nushell/distinfo (expand / switch to unified diff)

--- pkgsrc/shells/nushell/distinfo 2023/07/26 19:36:37 1.29
+++ pkgsrc/shells/nushell/distinfo 2023/08/01 08:04:27 1.30
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1$NetBSD: distinfo,v 1.29 2023/07/26 19:36:37 pin Exp $ 1$NetBSD: distinfo,v 1.30 2023/08/01 08:04:27 pin Exp $
2 2
3BLAKE2s (Inflector-0.11.4.crate) = 2f8b4a805230be3b58267c7fb6b9c26c2ec966378d195673d1128a851cca515d 3BLAKE2s (Inflector-0.11.4.crate) = 2f8b4a805230be3b58267c7fb6b9c26c2ec966378d195673d1128a851cca515d
4SHA512 (Inflector-0.11.4.crate) = f1f6463e033b6d3c16c51dc1e1a3f5569954308b95b59058294b7f9310919bbda797e99e6a07529071bb83f0688867a243997d33795a7136b0af73977004296e 4SHA512 (Inflector-0.11.4.crate) = f1f6463e033b6d3c16c51dc1e1a3f5569954308b95b59058294b7f9310919bbda797e99e6a07529071bb83f0688867a243997d33795a7136b0af73977004296e
5Size (Inflector-0.11.4.crate) = 17438 bytes 5Size (Inflector-0.11.4.crate) = 17438 bytes
6BLAKE2s (addr2line-0.20.0.crate) = 325dbd01710a578526165bf191bc3df1e1b7afa6492f90662ecb33b2c2643d2d 6BLAKE2s (addr2line-0.20.0.crate) = 325dbd01710a578526165bf191bc3df1e1b7afa6492f90662ecb33b2c2643d2d
7SHA512 (addr2line-0.20.0.crate) = f9794772a31dd01096b168b4b4ffe311d4850c69fd77dd72c1e532a94ef7b23c31cccb9033848822521510f1fcc2ad0fdd824cf7efb9ed43828dc0165165b319 7SHA512 (addr2line-0.20.0.crate) = f9794772a31dd01096b168b4b4ffe311d4850c69fd77dd72c1e532a94ef7b23c31cccb9033848822521510f1fcc2ad0fdd824cf7efb9ed43828dc0165165b319
8Size (addr2line-0.20.0.crate) = 39558 bytes 8Size (addr2line-0.20.0.crate) = 39558 bytes
9BLAKE2s (adler-1.0.2.crate) = f263779d752af886455fc0f42c997893fb1a09edcf1bd2980605251c2e3602aa 9BLAKE2s (adler-1.0.2.crate) = f263779d752af886455fc0f42c997893fb1a09edcf1bd2980605251c2e3602aa
10SHA512 (adler-1.0.2.crate) = 7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1 10SHA512 (adler-1.0.2.crate) = 7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1
11Size (adler-1.0.2.crate) = 12778 bytes 11Size (adler-1.0.2.crate) = 12778 bytes
12BLAKE2s (ahash-0.7.6.crate) = 5a260485860dccfc4af4ad41b107d11c1a1a0fadb036ef801484ecc98d4a6bc8 12BLAKE2s (ahash-0.7.6.crate) = 5a260485860dccfc4af4ad41b107d11c1a1a0fadb036ef801484ecc98d4a6bc8
13SHA512 (ahash-0.7.6.crate) = 61354688b6fb096359faefb6f34be958cd2215d56b88c22c737d24183eaad433f811bc9e64f927e4852c87d2799c22fda82b55cfbef2ed6357ff74f0c4ffec68 13SHA512 (ahash-0.7.6.crate) = 61354688b6fb096359faefb6f34be958cd2215d56b88c22c737d24183eaad433f811bc9e64f927e4852c87d2799c22fda82b55cfbef2ed6357ff74f0c4ffec68
14Size (ahash-0.7.6.crate) = 38030 bytes 14Size (ahash-0.7.6.crate) = 38030 bytes
@@ -827,29 +827,29 @@ SHA512 (num-rational-0.4.1.crate) = a754 @@ -827,29 +827,29 @@ SHA512 (num-rational-0.4.1.crate) = a754
827Size (num-rational-0.4.1.crate) = 27889 bytes 827Size (num-rational-0.4.1.crate) = 27889 bytes
828BLAKE2s (num-traits-0.2.15.crate) = d26091cb6caaf8d70fbe0d045c852e026461499d2c9a18721a049bbeb0049d3e 828BLAKE2s (num-traits-0.2.15.crate) = d26091cb6caaf8d70fbe0d045c852e026461499d2c9a18721a049bbeb0049d3e
829SHA512 (num-traits-0.2.15.crate) = 5228498af0f15daeac3c9210f3e6e71cfaaeb30beea81dd37f8eb06b9592c8bf3226a47597cd8592ad4c513964a9a40f1ab2c33102ef3dfe3800d22c8d4528e8 829SHA512 (num-traits-0.2.15.crate) = 5228498af0f15daeac3c9210f3e6e71cfaaeb30beea81dd37f8eb06b9592c8bf3226a47597cd8592ad4c513964a9a40f1ab2c33102ef3dfe3800d22c8d4528e8
830Size (num-traits-0.2.15.crate) = 49262 bytes 830Size (num-traits-0.2.15.crate) = 49262 bytes
831BLAKE2s (num_cpus-1.16.0.crate) = 11a89cd1f1f0b340ea987cabf254c5e81cacd02bec2643a17a7ba94b3a7503f4 831BLAKE2s (num_cpus-1.16.0.crate) = 11a89cd1f1f0b340ea987cabf254c5e81cacd02bec2643a17a7ba94b3a7503f4
832SHA512 (num_cpus-1.16.0.crate) = a75863afc4a563e63c64d06471c7921615355d98011ea9497b1f1a7dac2bdfc876509136018e8062ac38575ccf476a196d1fd9231e09e90017333bbf2df4615d 832SHA512 (num_cpus-1.16.0.crate) = a75863afc4a563e63c64d06471c7921615355d98011ea9497b1f1a7dac2bdfc876509136018e8062ac38575ccf476a196d1fd9231e09e90017333bbf2df4615d
833Size (num_cpus-1.16.0.crate) = 15713 bytes 833Size (num_cpus-1.16.0.crate) = 15713 bytes
834BLAKE2s (num_threads-0.1.6.crate) = 16dafe947f10db7667201144859b311f1d2fdcaec5984b5f0986e8de75345e5f 834BLAKE2s (num_threads-0.1.6.crate) = 16dafe947f10db7667201144859b311f1d2fdcaec5984b5f0986e8de75345e5f
835SHA512 (num_threads-0.1.6.crate) = b2d9897e29e59353379b6372a629fc7f9afc89f777b4410eaeac7b4729527948a8dbecb175f056899f9076693ef855cc0d40e725cc54f28af588fbac5f7ce3b6 835SHA512 (num_threads-0.1.6.crate) = b2d9897e29e59353379b6372a629fc7f9afc89f777b4410eaeac7b4729527948a8dbecb175f056899f9076693ef855cc0d40e725cc54f28af588fbac5f7ce3b6
836Size (num_threads-0.1.6.crate) = 7334 bytes 836Size (num_threads-0.1.6.crate) = 7334 bytes
837BLAKE2s (number_prefix-0.4.0.crate) = e2e6caf7fd792ec56ec5665184ed1b66469de944c998ee8e0eee92eb0f7105b5 837BLAKE2s (number_prefix-0.4.0.crate) = e2e6caf7fd792ec56ec5665184ed1b66469de944c998ee8e0eee92eb0f7105b5
838SHA512 (number_prefix-0.4.0.crate) = a43b668d7314218b86ca7451daa9dfef71f6c9f6616bc34c12d94ae6030f182bcca9da83905cb46f3d49d0aa81385a787e92e4f3ae239658067adc249f8174df 838SHA512 (number_prefix-0.4.0.crate) = a43b668d7314218b86ca7451daa9dfef71f6c9f6616bc34c12d94ae6030f182bcca9da83905cb46f3d49d0aa81385a787e92e4f3ae239658067adc249f8174df
839Size (number_prefix-0.4.0.crate) = 6922 bytes 839Size (number_prefix-0.4.0.crate) = 6922 bytes
840BLAKE2s (nushell-0.83.0.tar.gz) = d9e514b916a8bc50f24610edca0b73d59d3c5da7d9871e814852d2b055e6aac0 840BLAKE2s (nushell-0.83.1.tar.gz) = 936cf901119cd75de2a3e771f7a87082aecdafb24abf8c1a44c2a8442a53e0dc
841SHA512 (nushell-0.83.0.tar.gz) = dd6fb80366ff89d6188642562b07409948b8379acb1860b52d78a64f2ac5869729dfe477fa8cab3ddf3627d412cf33193d4c019c78c6ddcb61a99614bfdd6471 841SHA512 (nushell-0.83.1.tar.gz) = b7968e702af382aa00e588dc5f181c9edcd9f01fe2bfdccebc964d6c00d8320d96b59f34d57cc6733c4c5226b69fb9e5026fb0f47948170957c04b7eb1eef482
842Size (nushell-0.83.0.tar.gz) = 2648264 bytes 842Size (nushell-0.83.1.tar.gz) = 2648419 bytes
843BLAKE2s (objc-0.2.7.crate) = e34a570a877d402bef4a22098157a24171ada921812037222da0b82a1424f391 843BLAKE2s (objc-0.2.7.crate) = e34a570a877d402bef4a22098157a24171ada921812037222da0b82a1424f391
844SHA512 (objc-0.2.7.crate) = 7178870c8e4e9154b4c7b4953b3164946b7ce72c956a02b9ba18889353c72be735824bd73e44a485e42ad5f97994820d9153ac684629342755a6a63711ab5988 844SHA512 (objc-0.2.7.crate) = 7178870c8e4e9154b4c7b4953b3164946b7ce72c956a02b9ba18889353c72be735824bd73e44a485e42ad5f97994820d9153ac684629342755a6a63711ab5988
845Size (objc-0.2.7.crate) = 22036 bytes 845Size (objc-0.2.7.crate) = 22036 bytes
846BLAKE2s (object-0.31.1.crate) = c475d45e5cdf99eddfe3c3654461cd7914f05f4e7a7e5eb683a40f60f7152ca3 846BLAKE2s (object-0.31.1.crate) = c475d45e5cdf99eddfe3c3654461cd7914f05f4e7a7e5eb683a40f60f7152ca3
847SHA512 (object-0.31.1.crate) = e9cc2eb5ba516e4a08cf3fd5f496d05bc74ddbf1846d6b6ad6fd25a689aa315652fc5710be6bc68fdd678673b7ec8d63b4ce999f1fcfd5b281154bc25a915e9c 847SHA512 (object-0.31.1.crate) = e9cc2eb5ba516e4a08cf3fd5f496d05bc74ddbf1846d6b6ad6fd25a689aa315652fc5710be6bc68fdd678673b7ec8d63b4ce999f1fcfd5b281154bc25a915e9c
848Size (object-0.31.1.crate) = 272843 bytes 848Size (object-0.31.1.crate) = 272843 bytes
849BLAKE2s (omnipath-0.1.6.crate) = 0f4aaa2cd5be55d257c2976bbbfefab4f5da3b8c181c35030166aa5fea52bae9 849BLAKE2s (omnipath-0.1.6.crate) = 0f4aaa2cd5be55d257c2976bbbfefab4f5da3b8c181c35030166aa5fea52bae9
850SHA512 (omnipath-0.1.6.crate) = e7fa490f95fa8bc3f541d277abe912858989da6434b37bae1fb7da837951f95f2977fc10e08b0a4e026769f6dc8798a7107458b68014a080c4d9e3fdebb75456 850SHA512 (omnipath-0.1.6.crate) = e7fa490f95fa8bc3f541d277abe912858989da6434b37bae1fb7da837951f95f2977fc10e08b0a4e026769f6dc8798a7107458b68014a080c4d9e3fdebb75456
851Size (omnipath-0.1.6.crate) = 11082 bytes 851Size (omnipath-0.1.6.crate) = 11082 bytes
852BLAKE2s (once_cell-1.18.0.crate) = 2f70290489bac1069afecce7999205a621d8f965a25f01836dc147bea532c9fe 852BLAKE2s (once_cell-1.18.0.crate) = 2f70290489bac1069afecce7999205a621d8f965a25f01836dc147bea532c9fe
853SHA512 (once_cell-1.18.0.crate) = 9328968afdf3535b2d9e0113d75afa725259d76994ef2e1948ad7efa4ec8a65bac7cfdc31b749d5cd55ad4e28d2e28ac57b871e3067b89182453c7e2413a13b8 853SHA512 (once_cell-1.18.0.crate) = 9328968afdf3535b2d9e0113d75afa725259d76994ef2e1948ad7efa4ec8a65bac7cfdc31b749d5cd55ad4e28d2e28ac57b871e3067b89182453c7e2413a13b8
854Size (once_cell-1.18.0.crate) = 32969 bytes 854Size (once_cell-1.18.0.crate) = 32969 bytes
855BLAKE2s (oorandom-11.1.3.crate) = c0d14acf22446baea9e4176c4b8bfd89e852e7b293c251606a59346ed7a23f81 855BLAKE2s (oorandom-11.1.3.crate) = c0d14acf22446baea9e4176c4b8bfd89e852e7b293c251606a59346ed7a23f81
@@ -1436,29 +1436,29 @@ SHA512 (toml_datetime-0.6.3.crate) = cab @@ -1436,29 +1436,29 @@ SHA512 (toml_datetime-0.6.3.crate) = cab
1436Size (toml_datetime-0.6.3.crate) = 10770 bytes 1436Size (toml_datetime-0.6.3.crate) = 10770 bytes
1437BLAKE2s (toml_edit-0.19.12.crate) = 3e408d9e4e47cf3d8d96862f9226e4b36156675a2413aa726942d8ad86bdc391 1437BLAKE2s (toml_edit-0.19.12.crate) = 3e408d9e4e47cf3d8d96862f9226e4b36156675a2413aa726942d8ad86bdc391
1438SHA512 (toml_edit-0.19.12.crate) = 79726b5bbe4d350868409f6a9b828a5c9cb0fe48c18461d17943e97accce67d5c5123d49cae8ce8ecf7c2b98fa41a119e6299a2469fc76bfdeb0443f83ba2a30 1438SHA512 (toml_edit-0.19.12.crate) = 79726b5bbe4d350868409f6a9b828a5c9cb0fe48c18461d17943e97accce67d5c5123d49cae8ce8ecf7c2b98fa41a119e6299a2469fc76bfdeb0443f83ba2a30
1439Size (toml_edit-0.19.12.crate) = 96151 bytes 1439Size (toml_edit-0.19.12.crate) = 96151 bytes
1440BLAKE2s (tower-service-0.3.2.crate) = b5c693fadac8e513b9d8f2b9aa4364d23dff6f10d4412481b3ea730ec43506e4 1440BLAKE2s (tower-service-0.3.2.crate) = b5c693fadac8e513b9d8f2b9aa4364d23dff6f10d4412481b3ea730ec43506e4
1441SHA512 (tower-service-0.3.2.crate) = f4578421603067fa708c4ad9eca5ca096b5262b6d51a404f37d9fbb6c64f027cec6114991e4b7f8324cb756c033971a384f1804add28e00d0cd6b2ee01d9e005 1441SHA512 (tower-service-0.3.2.crate) = f4578421603067fa708c4ad9eca5ca096b5262b6d51a404f37d9fbb6c64f027cec6114991e4b7f8324cb756c033971a384f1804add28e00d0cd6b2ee01d9e005
1442Size (tower-service-0.3.2.crate) = 6847 bytes 1442Size (tower-service-0.3.2.crate) = 6847 bytes
1443BLAKE2s (tracing-0.1.37.crate) = 1fd3e0cb061788d2071c763f254ea74b3bb713ace05246852f450a10293836c3 1443BLAKE2s (tracing-0.1.37.crate) = 1fd3e0cb061788d2071c763f254ea74b3bb713ace05246852f450a10293836c3
1444SHA512 (tracing-0.1.37.crate) = 2116045f51b35e90fc933cc136d045d09c0aaa33400a9056051d887fea2d2982b394830e4d4c3bcb4b831e62b9c19f6c751c2d216169f663aa18c4067aed7d75 1444SHA512 (tracing-0.1.37.crate) = 2116045f51b35e90fc933cc136d045d09c0aaa33400a9056051d887fea2d2982b394830e4d4c3bcb4b831e62b9c19f6c751c2d216169f663aa18c4067aed7d75
1445Size (tracing-0.1.37.crate) = 73888 bytes 1445Size (tracing-0.1.37.crate) = 73888 bytes
1446BLAKE2s (tracing-core-0.1.31.crate) = 49a375b6791f68a824c414ce111c7df7fa20854d80e156b3589dd82ede4313e2 1446BLAKE2s (tracing-core-0.1.31.crate) = 49a375b6791f68a824c414ce111c7df7fa20854d80e156b3589dd82ede4313e2
1447SHA512 (tracing-core-0.1.31.crate) = 66fcd0b4f32de3816b1dcbeda1af26fae0a79d088894637984dc6a0ca65b609f5f166cea376601f6a75f8e3a281da6d4450dc796aa0a7177ad615330237e2bed 1447SHA512 (tracing-core-0.1.31.crate) = 66fcd0b4f32de3816b1dcbeda1af26fae0a79d088894637984dc6a0ca65b609f5f166cea376601f6a75f8e3a281da6d4450dc796aa0a7177ad615330237e2bed
1448Size (tracing-core-0.1.31.crate) = 61263 bytes 1448Size (tracing-core-0.1.31.crate) = 61263 bytes
1449BLAKE2s (trash-3.0.5.crate) = e37888bd96e06ea6805002ba2ba8b60932cbc2c8c91f9b4c07503b133a9d0f55 1449BLAKE2s (trash-3.0.6.crate) = e1f932770d3e5b97c3785ff533bd0d2cc54c0bbe40b05ff639e8630842ed7792
1450SHA512 (trash-3.0.5.crate) = 4a21fe8435c3b5f55d2b3c86921d1cbce933de83d0c34182510787e83c2dc926e34257d47bd50f15bb8f91e6eaeaf2adda3944bc9ab0b87878366e239dd0d90d 1450SHA512 (trash-3.0.6.crate) = 2e3558ddc267939f039acb91ed322e9bc2fcc34424c23a034a9044a49e8e823a921538cd80adca36d12f9f5e1a73f4fd5aa4b1389a590e95bf1bd860b5250859
1451Size (trash-3.0.5.crate) = 43254 bytes 1451Size (trash-3.0.6.crate) = 43515 bytes
1452BLAKE2s (try-lock-0.2.4.crate) = 4b69a8f1c883a0a90c13e25e807936a41ced02edf2b71c35e02cf4773fc7e97e 1452BLAKE2s (try-lock-0.2.4.crate) = 4b69a8f1c883a0a90c13e25e807936a41ced02edf2b71c35e02cf4773fc7e97e
1453SHA512 (try-lock-0.2.4.crate) = fbd989589eb0a1fb226de65537d51eceab632603e69710b37708d6109ed09c07333189675d5e560e35cc836e5cd211c726d8ce247186b5ea4529328d46c22632 1453SHA512 (try-lock-0.2.4.crate) = fbd989589eb0a1fb226de65537d51eceab632603e69710b37708d6109ed09c07333189675d5e560e35cc836e5cd211c726d8ce247186b5ea4529328d46c22632
1454Size (try-lock-0.2.4.crate) = 4467 bytes 1454Size (try-lock-0.2.4.crate) = 4467 bytes
1455BLAKE2s (typed-arena-1.7.0.crate) = 0e8facff05bc6159280566b8dc087462bedc1049446402df6c09bbd93b82249d 1455BLAKE2s (typed-arena-1.7.0.crate) = 0e8facff05bc6159280566b8dc087462bedc1049446402df6c09bbd93b82249d
1456SHA512 (typed-arena-1.7.0.crate) = 506a90a11576e5a4135b46c5c4705db461a8ec1bba980c9ea65e8c4399bcc85898b7f81312acf4bc0b24a29d1b940d8dfe0352ad59985153743948616da5ed8e 1456SHA512 (typed-arena-1.7.0.crate) = 506a90a11576e5a4135b46c5c4705db461a8ec1bba980c9ea65e8c4399bcc85898b7f81312acf4bc0b24a29d1b940d8dfe0352ad59985153743948616da5ed8e
1457Size (typed-arena-1.7.0.crate) = 9927 bytes 1457Size (typed-arena-1.7.0.crate) = 9927 bytes
1458BLAKE2s (typenum-1.16.0.crate) = 653acff3a7078e5609cf7f74710dd66218922695af6688ed34aed6989a958143 1458BLAKE2s (typenum-1.16.0.crate) = 653acff3a7078e5609cf7f74710dd66218922695af6688ed34aed6989a958143
1459SHA512 (typenum-1.16.0.crate) = 93da3ed62573acbc9d5d31257fb72ae9cfc7d59e4040c1f32d93e8fec94795e1aa20a3bf76ddc64c4b383184306bb2a66e51fd61b64dd4ce46a1bca8238b57b2 1459SHA512 (typenum-1.16.0.crate) = 93da3ed62573acbc9d5d31257fb72ae9cfc7d59e4040c1f32d93e8fec94795e1aa20a3bf76ddc64c4b383184306bb2a66e51fd61b64dd4ce46a1bca8238b57b2
1460Size (typenum-1.16.0.crate) = 42477 bytes 1460Size (typenum-1.16.0.crate) = 42477 bytes
1461BLAKE2s (typetag-0.2.9.crate) = 7929dbbf13648fbba3b6e2a37023dff67051208c6a0a12144cd523ba84ade85c 1461BLAKE2s (typetag-0.2.9.crate) = 7929dbbf13648fbba3b6e2a37023dff67051208c6a0a12144cd523ba84ade85c
1462SHA512 (typetag-0.2.9.crate) = 19105eda1f0850f74bbe8184a2e82e4d52301260e509bc49526f53004b32e5a513aed1f13e55b6c8d27a257591a557b561535a4e5c5190d0394340a90fd8838e 1462SHA512 (typetag-0.2.9.crate) = 19105eda1f0850f74bbe8184a2e82e4d52301260e509bc49526f53004b32e5a513aed1f13e55b6c8d27a257591a557b561535a4e5c5190d0394340a90fd8838e
1463Size (typetag-0.2.9.crate) = 27348 bytes 1463Size (typetag-0.2.9.crate) = 27348 bytes
1464BLAKE2s (typetag-impl-0.2.9.crate) = 6f34abc7735ba9c81a8d1f9a4c3b0fb64268d2f9dae11bacc959f42c5ae0ae22 1464BLAKE2s (typetag-impl-0.2.9.crate) = 6f34abc7735ba9c81a8d1f9a4c3b0fb64268d2f9dae11bacc959f42c5ae0ae22