pkgsrc-Changes archive

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

CVS commit: pkgsrc/shells/nushell



Module Name:    pkgsrc
Committed By:   pin
Date:           Thu Aug 24 11:32:36 UTC 2023

Modified Files:
        pkgsrc/shells/nushell: Makefile cargo-depends.mk distinfo

Log Message:
shell/nushell: update to 0.84.0

Themes of this release / New features
*(Major Breaking Change!) str replace matches substring by default (kubouch)

str replace now matches a substring instead of a regular expression by default
and the -s/--string flag is deprecated (will be removed altogether in 0.85).
Matching a substring by default makes it more consistent with the rest of the
Nushell's commands.

Note! Since str replace is a widely used command, many scripts are going to
break. Fixing it is easy:
 - If you used str replace without the -s/--string flag, you used regex matching
   and you should add --regex flag to keep the previous functionality.
 - If you used str replace with the -s/--string flag, you will get a deprecation
   warning. To get rid of the warning, simply remove the flag.

*Constants from modules (WindSoilder, kubouch)

You can now use constants in modules and export them. Calling use on a module
will create record containing all module's constants. You can also import the
constants directly, for example with use module.nu const-name, without creating
the module's record.

The exported values are true constants which means that you can use them in some
scenarios where you cannot use normal variables.

*New options for more compact table display (@zhiburt, #9796)

To save screen space, you can now display tables with the header directly
displayed on the border through the $env.config.table.header_on_separator
option.
Additionally you can now configure the padding left and right of the table cell
content either separately or all at once to adjust the layout for your
readability needs.

*More consistent format ... commands (@sholderbach, @WindSoilder)
With this release we moved several commands that serve to produce string output
from a particular data type as format subcommands.

   - date format has been renamed to format date (#9788).
   - into duration --convert was previously used to provide string
     representations of durations. This option has been removed and you should
     now use format duration. (#9902)
   - format filesize that was previously moved into the --features extra set is
     back in the core (#9978).

*scope commands enhancements (kubouch, kubouch)

scope commands received a significant amount of improvements making them more
useful for advanced introspection of Nushell's definitions.
   - scope externs now lists known externals (defined with extern)
   - scope aliases is now fixed and lists names and usages of the aliases, not
     of the aliased commands (this used to cause some confusion)
   - scope modules now lists all the exportable of the module, including
     submodules with their contents
   - all scope commands now list the definition's ID which can be used for
     reliable tracking of definitions. For example, a command foo imported from
     a module spam using use spam will be named spam foo, therefore, relying
     solely on names of the definitions can sometimes be misleading.
   - module_name field is no longer present
   - scope variables now denotes whether a variable is a constant or not

*http commands now handle headers better (@jflics6460, @ineu)
You can now pass headers directly as a record to the -H flag.
When running a http command with --full to get additional metadata about the
response you can now get both the request and the reponse header.

*Work on the optional dataframe features (@ayax79)
@ayax79 has been working hard to update our dataframe command to work again
with the stricter type check by consolidating internal logic (#9860, #9951).

Furthermore, dfr open now suppports the avro exchange format and a new dfr
to-avro command was added in #10019

*Changes to other commands
Since last release, some commands have changed, here is a list of some
interesting changed
 - @atahabaki in #9841, #9856 and #9940: Some refinement of the str expand
   command (it's a really cool command, i recommend you check it out 😃)
 - @fdncred in #9987: Allow select to take a variable with a list of columns
 - @fdncred in #10048: Allow int as a cellpath for select

*Command organization (@storm, @jntrnr)
In our efforts towards stabilization we moved several commands either behind
the --features extra build-flag or back into the core set of commands. The
special str *-case commands for example have been moved out of the core set,
while the bytes commands to deal with bytes in arbitrary encodings have returned
to the core set. Furthermore all commands in the core set should now have
helpful categories associated with them.

*Deprecation and removal of commands (@amtoine, @sholderbach)
We previously used the term "deprecation" pretty loosely to describe the removal
of commands while emitting a helpful error. We intend to now start to use
deprecation to warn you before the final removal of a particular option or
command. When we removed a command we will now properly refer to it as removal
and started adding warnings where appropriate (e.g. str replace --string). As
part of this update we removed some very old error helpers nudging you to
upgrade to new commands.

*Documentation
Thanks to @rgwood, @sholderbach, @kubouch and @fdncred the documentation has
become a bit better in #9961, #9996, #10004 and #10057.

*Notable bugfixes
  - A panic when parsing the context of let assignments has been fixed
    (@mengsuenyan in #9851)
  - Invoking --help on a script with a def main command will now report the
    script's name instead of a more confusing main (@jntrnr in #9948)
  - Serious bugs in parse that produced incorrect output when given a long
    input stream have been fixed (@panicbit in #9925, #9950)

*Breaking changes
  - #9902 date format has been renamed to format date for consistency.
  - #9788 The option into duration --convert to format durations has been
    removed. Use the format duration command instead.
  - #10038 str replace now by default matches to strings by default. If you
    want to use regexes you need to use the -r flag. The --strings flag has
    been removed
  - #9632 To be unambiguous the duration type now does not report months or
    years. The largest unit reported is weeks as they have a consistent length
    compared to months or years.
  - #9926 We moved some of the more exotic str case-commands behind the
    --features extra build-flag. This affects:
     - str camel-case
     - str kebab-case
     - str pascal-case
     - str screaming-snake-case
     - str snake-case
     - str title-case
  - #10053 make the charpage optional for std clip
  - #10023 The output of the scope commands has changed

*Internal breaking change only affecting plugin authors
  - #9927 Make Value::columns return slice instead of cloned Vec


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 pkgsrc/shells/nushell/Makefile
cvs rdiff -u -r1.25 -r1.26 pkgsrc/shells/nushell/cargo-depends.mk
cvs rdiff -u -r1.30 -r1.31 pkgsrc/shells/nushell/distinfo

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

Modified files:

Index: pkgsrc/shells/nushell/Makefile
diff -u pkgsrc/shells/nushell/Makefile:1.38 pkgsrc/shells/nushell/Makefile:1.39
--- pkgsrc/shells/nushell/Makefile:1.38 Tue Aug  1 08:04:27 2023
+++ pkgsrc/shells/nushell/Makefile      Thu Aug 24 11:32:36 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.38 2023/08/01 08:04:27 pin Exp $
+# $NetBSD: Makefile,v 1.39 2023/08/24 11:32:36 pin Exp $
 
-DISTNAME=      nushell-0.83.1
+DISTNAME=      nushell-0.84.0
 CATEGORIES=    shells
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=nushell/}
 

Index: pkgsrc/shells/nushell/cargo-depends.mk
diff -u pkgsrc/shells/nushell/cargo-depends.mk:1.25 pkgsrc/shells/nushell/cargo-depends.mk:1.26
--- pkgsrc/shells/nushell/cargo-depends.mk:1.25 Tue Aug  1 08:04:27 2023
+++ pkgsrc/shells/nushell/cargo-depends.mk      Thu Aug 24 11:32:36 2023
@@ -1,9 +1,9 @@
-# $NetBSD: cargo-depends.mk,v 1.25 2023/08/01 08:04:27 pin Exp $
+# $NetBSD: cargo-depends.mk,v 1.26 2023/08/24 11:32:36 pin Exp $
 
 CARGO_CRATE_DEPENDS+=  Inflector-0.11.4
 CARGO_CRATE_DEPENDS+=  addr2line-0.20.0
 CARGO_CRATE_DEPENDS+=  adler-1.0.2
-CARGO_CRATE_DEPENDS+=  ahash-0.7.6
+CARGO_CRATE_DEPENDS+=  adler32-1.2.0
 CARGO_CRATE_DEPENDS+=  ahash-0.8.3
 CARGO_CRATE_DEPENDS+=  aho-corasick-1.0.2
 CARGO_CRATE_DEPENDS+=  alloc-no-stdlib-2.0.4
@@ -30,6 +30,7 @@ CARGO_CRATE_DEPENDS+= async-trait-0.1.71
 CARGO_CRATE_DEPENDS+=  atoi-2.0.0
 CARGO_CRATE_DEPENDS+=  atomic-polyfill-0.1.11
 CARGO_CRATE_DEPENDS+=  autocfg-1.1.0
+CARGO_CRATE_DEPENDS+=  avro-schema-0.3.0
 CARGO_CRATE_DEPENDS+=  backtrace-0.3.68
 CARGO_CRATE_DEPENDS+=  base64-0.21.2
 CARGO_CRATE_DEPENDS+=  bincode-1.3.3
@@ -39,7 +40,7 @@ CARGO_CRATE_DEPENDS+= bit-vec-0.6.3
 CARGO_CRATE_DEPENDS+=  bitflags-1.3.2
 CARGO_CRATE_DEPENDS+=  bitflags-2.3.3
 CARGO_CRATE_DEPENDS+=  block-buffer-0.10.4
-CARGO_CRATE_DEPENDS+=  bracoxide-0.1.1
+CARGO_CRATE_DEPENDS+=  bracoxide-0.1.2
 CARGO_CRATE_DEPENDS+=  brotli-3.3.4
 CARGO_CRATE_DEPENDS+=  brotli-decompressor-2.3.4
 CARGO_CRATE_DEPENDS+=  brownstone-3.0.0
@@ -80,6 +81,8 @@ CARGO_CRATE_DEPENDS+= const_format_proc_
 CARGO_CRATE_DEPENDS+=  core-foundation-0.9.3
 CARGO_CRATE_DEPENDS+=  core-foundation-sys-0.8.4
 CARGO_CRATE_DEPENDS+=  cpufeatures-0.2.9
+CARGO_CRATE_DEPENDS+=  crc-2.1.0
+CARGO_CRATE_DEPENDS+=  crc-catalog-1.1.1
 CARGO_CRATE_DEPENDS+=  crc32fast-1.3.2
 CARGO_CRATE_DEPENDS+=  criterion-0.5.1
 CARGO_CRATE_DEPENDS+=  criterion-plot-0.5.0
@@ -150,6 +153,7 @@ CARGO_CRATE_DEPENDS+=       futures-io-0.3.28
 CARGO_CRATE_DEPENDS+=  futures-macro-0.3.28
 CARGO_CRATE_DEPENDS+=  futures-sink-0.3.28
 CARGO_CRATE_DEPENDS+=  futures-task-0.3.28
+CARGO_CRATE_DEPENDS+=  futures-timer-3.0.2
 CARGO_CRATE_DEPENDS+=  futures-util-0.3.28
 CARGO_CRATE_DEPENDS+=  fuzzy-matcher-0.3.7
 CARGO_CRATE_DEPENDS+=  fxhash-0.2.1
@@ -217,6 +221,8 @@ CARGO_CRATE_DEPENDS+=       lexical-util-0.8.5
 CARGO_CRATE_DEPENDS+=  lexical-write-float-0.8.5
 CARGO_CRATE_DEPENDS+=  lexical-write-integer-0.8.5
 CARGO_CRATE_DEPENDS+=  libc-0.2.147
+CARGO_CRATE_DEPENDS+=  libflate-1.4.0
+CARGO_CRATE_DEPENDS+=  libflate_lz77-1.2.0
 CARGO_CRATE_DEPENDS+=  libgit2-sys-0.15.2+1.6.4
 CARGO_CRATE_DEPENDS+=  libloading-0.7.4
 CARGO_CRATE_DEPENDS+=  libm-0.2.7
@@ -293,7 +299,7 @@ CARGO_CRATE_DEPENDS+=       openssl-sys-0.9.90
 CARGO_CRATE_DEPENDS+=  ordered-multimap-0.6.0
 CARGO_CRATE_DEPENDS+=  os_pipe-1.1.4
 CARGO_CRATE_DEPENDS+=  owo-colors-3.5.0
-CARGO_CRATE_DEPENDS+=  papergrid-0.9.1
+CARGO_CRATE_DEPENDS+=  papergrid-0.10.0
 CARGO_CRATE_DEPENDS+=  parking_lot-0.11.2
 CARGO_CRATE_DEPENDS+=  parking_lot-0.12.1
 CARGO_CRATE_DEPENDS+=  parking_lot_core-0.8.6
@@ -353,7 +359,7 @@ CARGO_CRATE_DEPENDS+=       pure-rust-locales-
 CARGO_CRATE_DEPENDS+=  pwd-1.4.0
 CARGO_CRATE_DEPENDS+=  quick-error-1.2.3
 CARGO_CRATE_DEPENDS+=  quick-xml-0.28.2
-CARGO_CRATE_DEPENDS+=  quick-xml-0.29.0
+CARGO_CRATE_DEPENDS+=  quick-xml-0.30.0
 CARGO_CRATE_DEPENDS+=  quickcheck-1.0.3
 CARGO_CRATE_DEPENDS+=  quickcheck_macros-1.0.0
 CARGO_CRATE_DEPENDS+=  quote-1.0.29
@@ -367,17 +373,19 @@ CARGO_CRATE_DEPENDS+=     rayon-core-1.11.0
 CARGO_CRATE_DEPENDS+=  redox_syscall-0.2.16
 CARGO_CRATE_DEPENDS+=  redox_syscall-0.3.5
 CARGO_CRATE_DEPENDS+=  redox_users-0.4.3
-CARGO_CRATE_DEPENDS+=  reedline-0.22.0
+CARGO_CRATE_DEPENDS+=  reedline-0.23.0
 CARGO_CRATE_DEPENDS+=  regex-1.9.0
 CARGO_CRATE_DEPENDS+=  regex-automata-0.1.10
 CARGO_CRATE_DEPENDS+=  regex-automata-0.3.0
 CARGO_CRATE_DEPENDS+=  regex-syntax-0.6.29
 CARGO_CRATE_DEPENDS+=  regex-syntax-0.7.3
+CARGO_CRATE_DEPENDS+=  relative-path-1.8.0
+CARGO_CRATE_DEPENDS+=  rle-decode-fast-1.0.3
 CARGO_CRATE_DEPENDS+=  rmp-0.8.11
 CARGO_CRATE_DEPENDS+=  rmp-serde-1.1.1
 CARGO_CRATE_DEPENDS+=  roxmltree-0.18.0
-CARGO_CRATE_DEPENDS+=  rstest-0.17.0
-CARGO_CRATE_DEPENDS+=  rstest_macros-0.17.0
+CARGO_CRATE_DEPENDS+=  rstest-0.18.1
+CARGO_CRATE_DEPENDS+=  rstest_macros-0.18.1
 CARGO_CRATE_DEPENDS+=  rusqlite-0.29.0
 CARGO_CRATE_DEPENDS+=  rust-embed-6.8.1
 CARGO_CRATE_DEPENDS+=  rust-embed-impl-6.8.1
@@ -437,7 +445,7 @@ CARGO_CRATE_DEPENDS+=       streaming-iterator
 CARGO_CRATE_DEPENDS+=  strength_reduce-0.2.4
 CARGO_CRATE_DEPENDS+=  string_cache-0.8.7
 CARGO_CRATE_DEPENDS+=  string_cache_codegen-0.5.2
-CARGO_CRATE_DEPENDS+=  strip-ansi-escapes-0.1.1
+CARGO_CRATE_DEPENDS+=  strip-ansi-escapes-0.2.0
 CARGO_CRATE_DEPENDS+=  strum-0.24.1
 CARGO_CRATE_DEPENDS+=  strum-0.25.0
 CARGO_CRATE_DEPENDS+=  strum_macros-0.24.3
@@ -451,7 +459,7 @@ CARGO_CRATE_DEPENDS+=       syn-1.0.109
 CARGO_CRATE_DEPENDS+=  syn-2.0.23
 CARGO_CRATE_DEPENDS+=  sys-locale-0.3.0
 CARGO_CRATE_DEPENDS+=  sysinfo-0.29.4
-CARGO_CRATE_DEPENDS+=  tabled-0.12.2
+CARGO_CRATE_DEPENDS+=  tabled-0.14.0
 CARGO_CRATE_DEPENDS+=  target-features-0.1.4
 CARGO_CRATE_DEPENDS+=  tempfile-3.7.0
 CARGO_CRATE_DEPENDS+=  tendril-0.4.3
@@ -491,7 +499,7 @@ CARGO_CRATE_DEPENDS+=       umask-2.1.0
 CARGO_CRATE_DEPENDS+=  unicase-2.6.0
 CARGO_CRATE_DEPENDS+=  unicode-bidi-0.3.13
 CARGO_CRATE_DEPENDS+=  unicode-ident-1.0.10
-CARGO_CRATE_DEPENDS+=  unicode-linebreak-0.1.4
+CARGO_CRATE_DEPENDS+=  unicode-linebreak-0.1.5
 CARGO_CRATE_DEPENDS+=  unicode-normalization-0.1.22
 CARGO_CRATE_DEPENDS+=  unicode-segmentation-1.10.1
 CARGO_CRATE_DEPENDS+=  unicode-width-0.1.10
@@ -507,6 +515,7 @@ CARGO_CRATE_DEPENDS+=       value-trait-0.6.1
 CARGO_CRATE_DEPENDS+=  vcpkg-0.2.15
 CARGO_CRATE_DEPENDS+=  version_check-0.9.4
 CARGO_CRATE_DEPENDS+=  vte-0.10.1
+CARGO_CRATE_DEPENDS+=  vte-0.11.1
 CARGO_CRATE_DEPENDS+=  vte_generate_state_changes-0.1.1
 CARGO_CRATE_DEPENDS+=  wait-timeout-0.2.0
 CARGO_CRATE_DEPENDS+=  walkdir-2.3.3

Index: pkgsrc/shells/nushell/distinfo
diff -u pkgsrc/shells/nushell/distinfo:1.30 pkgsrc/shells/nushell/distinfo:1.31
--- pkgsrc/shells/nushell/distinfo:1.30 Tue Aug  1 08:04:27 2023
+++ pkgsrc/shells/nushell/distinfo      Thu Aug 24 11:32:36 2023
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.30 2023/08/01 08:04:27 pin Exp $
+$NetBSD: distinfo,v 1.31 2023/08/24 11:32:36 pin Exp $
 
 BLAKE2s (Inflector-0.11.4.crate) = 2f8b4a805230be3b58267c7fb6b9c26c2ec966378d195673d1128a851cca515d
 SHA512 (Inflector-0.11.4.crate) = f1f6463e033b6d3c16c51dc1e1a3f5569954308b95b59058294b7f9310919bbda797e99e6a07529071bb83f0688867a243997d33795a7136b0af73977004296e
@@ -9,9 +9,9 @@ Size (addr2line-0.20.0.crate) = 39558 by
 BLAKE2s (adler-1.0.2.crate) = f263779d752af886455fc0f42c997893fb1a09edcf1bd2980605251c2e3602aa
 SHA512 (adler-1.0.2.crate) = 7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1
 Size (adler-1.0.2.crate) = 12778 bytes
-BLAKE2s (ahash-0.7.6.crate) = 5a260485860dccfc4af4ad41b107d11c1a1a0fadb036ef801484ecc98d4a6bc8
-SHA512 (ahash-0.7.6.crate) = 61354688b6fb096359faefb6f34be958cd2215d56b88c22c737d24183eaad433f811bc9e64f927e4852c87d2799c22fda82b55cfbef2ed6357ff74f0c4ffec68
-Size (ahash-0.7.6.crate) = 38030 bytes
+BLAKE2s (adler32-1.2.0.crate) = 8bc63ca383f40390bb522c750ef33e14b5e49bc48eb0ec33a140f615c598a6df
+SHA512 (adler32-1.2.0.crate) = 8ed72612fb78e213fc92963fdae0508ef26988656c939e6c9cddccbe2658d4a956a8ae934d9658262a8b2687dc446b3f1ee7614128b440487c81e606526dfda3
+Size (adler32-1.2.0.crate) = 6411 bytes
 BLAKE2s (ahash-0.8.3.crate) = 463c4e49539eb24c885915c860ed4fc060bc31e8d50069c2a3539c755ebc3f51
 SHA512 (ahash-0.8.3.crate) = cf2d2f1201ac0969cf4e2a0c47090bee971b2287ac44b5e091c90a9eced03cf6ff56d7900cc0f529d4acedc30bd400261c15e50efabdd1731f79951b449af53e
 Size (ahash-0.8.3.crate) = 42416 bytes
@@ -90,6 +90,9 @@ Size (atomic-polyfill-0.1.11.crate) = 11
 BLAKE2s (autocfg-1.1.0.crate) = dd57bc2348994ace592664469f4b2389f230343402c627a9981eb582f10b0060
 SHA512 (autocfg-1.1.0.crate) = df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f
 Size (autocfg-1.1.0.crate) = 13272 bytes
+BLAKE2s (avro-schema-0.3.0.crate) = dab3828832792b6e84534487c988d6822fb6a2b3b827385d221c95d20e6442a5
+SHA512 (avro-schema-0.3.0.crate) = b5e80204d0910b67ec4706a96b138f5ac21865a1422c5deb1c6d1c537416fb04459e4979dc90de91e8014462fe857dabc57a46358afe114cf7c0d776e48352f3
+Size (avro-schema-0.3.0.crate) = 19318 bytes
 BLAKE2s (backtrace-0.3.68.crate) = 851a76e52a49dd7da712f130bad9d58d60513f812c6d2fae1bdc9da49d4ad7be
 SHA512 (backtrace-0.3.68.crate) = 4c4e5d47154e64d2192a6358d0861097e31b5a53d5863b03dd38562dccda7cbec584e006ce29563cadfd03b0031ed7a16fa43328f515cc66a296048c9a2f5d89
 Size (backtrace-0.3.68.crate) = 79891 bytes
@@ -117,9 +120,9 @@ Size (bitflags-2.3.3.crate) = 34320 byte
 BLAKE2s (block-buffer-0.10.4.crate) = 4422d2b2ea2e697a7339956a06cff79b3c5d6b263fbf51993c90fef1f9a0a9ef
 SHA512 (block-buffer-0.10.4.crate) = b7d436d8e627e16e6ddc300ee8f706a6cef28ff6f09eff848eedee46f84bdcd03601303c92ab8996042e55922866a59259948177c0a4496eed723523e77f6fdb
 Size (block-buffer-0.10.4.crate) = 10538 bytes
-BLAKE2s (bracoxide-0.1.1.crate) = 2436b6bdfeba31f3ec24f66e963e48c73c3779edfa259bb852fd16fcde20542b
-SHA512 (bracoxide-0.1.1.crate) = 07ff5963aff470ab79d5ceff1d1e52cb47117c75e8d14115e1f59c19bdf44de193c407ea585f98a86531e8d926f46ee84ecdd19208c40b276eea36a5c8f9b08e
-Size (bracoxide-0.1.1.crate) = 14068 bytes
+BLAKE2s (bracoxide-0.1.2.crate) = 648ea416aaf4f8522584c9768540efb2efedbbb000d00dd1e199caa94fe98dff
+SHA512 (bracoxide-0.1.2.crate) = c9f2cfdf90cba9c151be787ac268581074ece5b4748abbb9b0f31779d71a5400378eef055a86e92c49a0175da650940929d9edad6c82a4ab962ebe7da1b3c48f
+Size (bracoxide-0.1.2.crate) = 14162 bytes
 BLAKE2s (brotli-3.3.4.crate) = 3e5423de8456cba604e3b50059dc47a8116cec48241319b2cb45ce2b075753d1
 SHA512 (brotli-3.3.4.crate) = e312842abd713b5dd750ae92dbac297136291bef22b95572b52141c7d991f9d8bc84dc605f30c062a9cdd42d610ba5eb2f8e1ce3a8489f4ba816fca5eca7e5d8
 Size (brotli-3.3.4.crate) = 1369026 bytes
@@ -240,6 +243,12 @@ Size (core-foundation-sys-0.8.4.crate) =
 BLAKE2s (cpufeatures-0.2.9.crate) = 210674bf29b11128393d8a1334f0747e9490dccb30be4617f4961c5bb16fb589
 SHA512 (cpufeatures-0.2.9.crate) = 88235b7d7152f4578a321ebc4f83f69070206b2acaf0e6331b52e1a6633e96edc787f9a409ac2e2799106a259166a302150fa4ddc88352b7739d50ac6ca9038f
 Size (cpufeatures-0.2.9.crate) = 11895 bytes
+BLAKE2s (crc-2.1.0.crate) = 8695b86b44994e97ed27f0560833010511e2dbb08f6e6e40d415483ea8696353
+SHA512 (crc-2.1.0.crate) = 45109925b4da84c9c60f0b6c2f79bde09a0dcdb4b901e3e0856a763b779ea02d251a1b150d6e588848ee517d8b63e16ee3b93522a0ccf8c10e4fd1f71345bca5
+Size (crc-2.1.0.crate) = 8683 bytes
+BLAKE2s (crc-catalog-1.1.1.crate) = bc74c590dc32fd07fa690eacd2965d5e87a77990c621d3b8ec7a977af16c8243
+SHA512 (crc-catalog-1.1.1.crate) = 8785fedc82721901c39ad858a4c92b8d6246ecc496bf0c755386c4d8577ce7e6fe8b2f815bde7d892505e1f8125bc028864951f00c76faca2f58f9129986a7f8
+Size (crc-catalog-1.1.1.crate) = 8698 bytes
 BLAKE2s (crc32fast-1.3.2.crate) = c60cd89cc50c52d5bedb1e7ce6c6299196d26700152f85282218c6fe15ec2a8b
 SHA512 (crc32fast-1.3.2.crate) = a683943e252afdb1b9d626a07533ed11cf7a63af603c19640056c5d2b9c884ad9aff33ac54c0853ffca2f6cf94b0730eae6c05abf3e53e55e709d180c8152357
 Size (crc32fast-1.3.2.crate) = 38661 bytes
@@ -450,6 +459,9 @@ Size (futures-sink-0.3.28.crate) = 7852 
 BLAKE2s (futures-task-0.3.28.crate) = 640ca4c89136d60ca43f38733bc154e36f55fde3f03a10d92fafe08cac83c877
 SHA512 (futures-task-0.3.28.crate) = 198f3efa51b1a8492a4151a6e4ef6e7abd09f2f537f5ffc2b8f2cf739718fb9714718226ee1cde7a58d41a2e623445ae64013f02e7f00489320c06292465fa82
 Size (futures-task-0.3.28.crate) = 11848 bytes
+BLAKE2s (futures-timer-3.0.2.crate) = 6a173217c8bc0924002161a312a39d4bb9afb494f2e62a37baaa7243a496feb3
+SHA512 (futures-timer-3.0.2.crate) = 47cc68f9f134e557d66a003d942d8a4201b1db56f1ed2ae276a2fe6f56b24c06ccd108d9852f9fd9db7d254bf8aefafa56cc0410bea41c3805d7e4bc3dc4d73c
+Size (futures-timer-3.0.2.crate) = 19879 bytes
 BLAKE2s (futures-util-0.3.28.crate) = 48975437f872f9334c12ebb792f3724dde1e9d755f0943ea87abbb5a12281bcc
 SHA512 (futures-util-0.3.28.crate) = 0c7dd3701b7ab0a443a56aa64e6d9b6ba7bb9ccba4c05dfe17608df3e2bed1c2fa460a0cb4abb9fb25289d3a776128ffcc4fced75ca73a65d40b18ee2e9a46e4
 Size (futures-util-0.3.28.crate) = 158510 bytes
@@ -651,6 +663,12 @@ Size (lexical-write-integer-0.8.5.crate)
 BLAKE2s (libc-0.2.147.crate) = 84b4227ac3264ec16af0072f1783c1a0bba74399caaa382bc03ae681dbc0fc82
 SHA512 (libc-0.2.147.crate) = bfb3c230b59d623b98726f92b7c3f897b47ba3d22fe9834c15f5b4c1b662289aba35a0ae3acfc704ad74696db8c691ee007b9cc6fa03ae65a18eb6bedc81931e
 Size (libc-0.2.147.crate) = 686772 bytes
+BLAKE2s (libflate-1.4.0.crate) = ea29c05951ccdf3d463ba7a3dedf7ad172c5902082e0712fd0c98b813a31c2ca
+SHA512 (libflate-1.4.0.crate) = ebdfdad0b67e835218a269a2b00389b86afbb95cb4bdf9accd4ea3c866917dbdd756a91c38ca34695ebbb80b02055eac738fa4144f86a61116cf477af52e3838
+Size (libflate-1.4.0.crate) = 42600 bytes
+BLAKE2s (libflate_lz77-1.2.0.crate) = 06b96136baea03675f8003d9d3f24308205bc41507a11bbf33953581672e287a
+SHA512 (libflate_lz77-1.2.0.crate) = 5aeb0d1ab0bef43a87552f93dca760450e6fcb0213c9dfdc0ed2f72fcb6ee1b26add02705f7c5a8552c975c9673b1a147fa036b6f4c42c07675a11b3cb1929d0
+Size (libflate_lz77-1.2.0.crate) = 5964 bytes
 BLAKE2s (libgit2-sys-0.15.2+1.6.4.crate) = 5e142c6bb9a4f89ba24c4fb2b1fb842486381ef0c4484c9d33f207c1321508fa
 SHA512 (libgit2-sys-0.15.2+1.6.4.crate) = 28b66ffe6da956bd1127aef295b222b55681b25c1820e016284802531f5360e6d21c11c695be569d26a318321868a0ce0b2c848bfcc887f09f47fbaadb13b478
 Size (libgit2-sys-0.15.2+1.6.4.crate) = 1755413 bytes
@@ -837,9 +855,9 @@ Size (num_threads-0.1.6.crate) = 7334 by
 BLAKE2s (number_prefix-0.4.0.crate) = e2e6caf7fd792ec56ec5665184ed1b66469de944c998ee8e0eee92eb0f7105b5
 SHA512 (number_prefix-0.4.0.crate) = a43b668d7314218b86ca7451daa9dfef71f6c9f6616bc34c12d94ae6030f182bcca9da83905cb46f3d49d0aa81385a787e92e4f3ae239658067adc249f8174df
 Size (number_prefix-0.4.0.crate) = 6922 bytes
-BLAKE2s (nushell-0.83.1.tar.gz) = 936cf901119cd75de2a3e771f7a87082aecdafb24abf8c1a44c2a8442a53e0dc
-SHA512 (nushell-0.83.1.tar.gz) = b7968e702af382aa00e588dc5f181c9edcd9f01fe2bfdccebc964d6c00d8320d96b59f34d57cc6733c4c5226b69fb9e5026fb0f47948170957c04b7eb1eef482
-Size (nushell-0.83.1.tar.gz) = 2648419 bytes
+BLAKE2s (nushell-0.84.0.tar.gz) = 11b63a72d6f0fd3cbed6a5e09905ac8907e99ae2c204a2c79137b907fc052599
+SHA512 (nushell-0.84.0.tar.gz) = d3bd4b312a86a604e738cf7e0da8931de255858e0f2f430e28afa7af93203845c8e559bf944b966d6f18e837b6a589cc3d0372a58425940432e59096ed564e78
+Size (nushell-0.84.0.tar.gz) = 2667049 bytes
 BLAKE2s (objc-0.2.7.crate) = e34a570a877d402bef4a22098157a24171ada921812037222da0b82a1424f391
 SHA512 (objc-0.2.7.crate) = 7178870c8e4e9154b4c7b4953b3164946b7ce72c956a02b9ba18889353c72be735824bd73e44a485e42ad5f97994820d9153ac684629342755a6a63711ab5988
 Size (objc-0.2.7.crate) = 22036 bytes
@@ -882,9 +900,9 @@ Size (os_pipe-1.1.4.crate) = 11436 bytes
 BLAKE2s (owo-colors-3.5.0.crate) = 2a514aead6ecf77fe1beebcc8740a8fa221c1025460f7aad1021dc46f76e5c11
 SHA512 (owo-colors-3.5.0.crate) = 1718f03d9f3296ffe3145161e038ebdb8dc40b69c0e2cb80a51866b519cf857b6573aedb7704895401e10cea11ca422a384c3594b8762be29eaa90908e24f7aa
 Size (owo-colors-3.5.0.crate) = 30310 bytes
-BLAKE2s (papergrid-0.9.1.crate) = 18fc289901adbee4132f2994e1f6b96a60345db1112568427e272a232e76a2ce
-SHA512 (papergrid-0.9.1.crate) = 326dd36ac890a6d7c7843d2c9b92ca1c1249e2078635c4a80a0e82037a8caed98a4d12857b15d92e9463e6cac3759bb15e5dd20825334cdf3fe7b83b55e97990
-Size (papergrid-0.9.1.crate) = 51314 bytes
+BLAKE2s (papergrid-0.10.0.crate) = bdb131ed8e4b797bb46cb582b36a4cb15d5ab3d9845f61c414030ab12e630730
+SHA512 (papergrid-0.10.0.crate) = 6351f17e31b327a44274056274a7a901c7d85b5656a5fde2a7d363c9923dd8d3b3af9c854b5a23bb9efdfcc9f674efbf581ca7207e0026018e9c839654309ab7
+Size (papergrid-0.10.0.crate) = 52097 bytes
 BLAKE2s (parking_lot-0.11.2.crate) = f71d251ca07227ef3e0bd33ba4c7cae8bd77958eb847d00ff7e462aeb3e4e8ea
 SHA512 (parking_lot-0.11.2.crate) = 526b176363dffa59501c18324bb723a3846ef5b0ff9bf1d890e40ad10e7023284f7c8012eda87520eaa94515ee828d9ef52692a9ed590a55e176383d6d472f9e
 Size (parking_lot-0.11.2.crate) = 39869 bytes
@@ -1062,9 +1080,9 @@ Size (quick-error-1.2.3.crate) = 15066 b
 BLAKE2s (quick-xml-0.28.2.crate) = 616a16f7359e27da4a9f557e3526fcb295188b51ec29d733757c6743f30cb338
 SHA512 (quick-xml-0.28.2.crate) = 24913a45e962c144c82f13a6ab4877ab7c91fd51f34becc6412a47dd91e75436590a646f85c346236ed2729d480242b20781ccfdd1d42bc2a510bc883966a0a0
 Size (quick-xml-0.28.2.crate) = 156462 bytes
-BLAKE2s (quick-xml-0.29.0.crate) = 8f108b8f14f484e2bf0c79c0c69f6274a624e9da72ada8eab195f92e5be8889b
-SHA512 (quick-xml-0.29.0.crate) = 1a6d61e2161e3701e2d4e4b243d1a20072d546a3a0e3389c185f1c9a53bd6af172ed1b791f9a329cec67a2dd9babae44048bebb7293dfdc0efacfce0aba820fb
-Size (quick-xml-0.29.0.crate) = 160308 bytes
+BLAKE2s (quick-xml-0.30.0.crate) = ca44135a2f76bff40075252252459e6719a28c6593832ad13b29ff559a167764
+SHA512 (quick-xml-0.30.0.crate) = e731f9c6795da7ad705c96544b39560dc27e2ea3c468c3dffe9589bb314074e96acbc0ab454f94556e0d9569c55d6cd8d1c7be2c823a77bbb3165ec8393d9aee
+Size (quick-xml-0.30.0.crate) = 161923 bytes
 BLAKE2s (quickcheck-1.0.3.crate) = 00d23a6629fde53de62fe9c0c3ecfb76d7dfeaac5a91cd41e466564bbf7d0f98
 SHA512 (quickcheck-1.0.3.crate) = 07dd707c9d3fd0b9cedbba545bc8b4fc1ca2770d169e444f8c96f8306d3161a6a3e9189cc5d0d6b3dc4221f7dbc05887dfe2dedc914f88d5e69ab2b94179185a
 Size (quickcheck-1.0.3.crate) = 28069 bytes
@@ -1104,9 +1122,9 @@ Size (redox_syscall-0.3.5.crate) = 23404
 BLAKE2s (redox_users-0.4.3.crate) = fafe5c327db7de7f8b6340807a14fb60bdea5ac74634a60379b62c4793cb447b
 SHA512 (redox_users-0.4.3.crate) = 0d3366e23cf93e1b0e025a29025eaebfcd1145bd158e2663b94fd952dc2d8a25566819e3a03c4136ca16a6408d37396e2ead0814c3f0c2bb10334dfd0b838fda
 Size (redox_users-0.4.3.crate) = 15353 bytes
-BLAKE2s (reedline-0.22.0.crate) = baa9186ba1688159395461a7fece967bab010ee9ebb0b5712e831026e07e5c6e
-SHA512 (reedline-0.22.0.crate) = 7c420f3666233981a2fe758e6d83856219c104455207c65a6f144c262793a2600f32a339b3fcdb254a0d57c95fe66a5acff22816e862f38fd3d6d5f06403a5ad
-Size (reedline-0.22.0.crate) = 112365 bytes
+BLAKE2s (reedline-0.23.0.crate) = b4c6ab16d630382521af57a33a3d79aa478daeca83e57547486ee91adef0a277
+SHA512 (reedline-0.23.0.crate) = 20473219ae1a33e3b0a1594cc03ff3d1d031cb9b0253177f21aa933e97a53a253d9bfd5a2f999db5bf6e5357a7f0fbacfc01c04f9030cd73152b74301a655701
+Size (reedline-0.23.0.crate) = 112287 bytes
 BLAKE2s (regex-1.9.0.crate) = 01a429d579249cb8926e3787eda3320420b6c5cbaa175f3081cbd32183cf285c
 SHA512 (regex-1.9.0.crate) = 46750a200e329531a60527df437ad1202471f940383e0b3930151a53df816bf79106f6671a1ede3be0dfb954a340e399b37f4d0cd1d661e851558e341eb9ea82
 Size (regex-1.9.0.crate) = 250963 bytes
@@ -1122,6 +1140,12 @@ Size (regex-syntax-0.6.29.crate) = 29975
 BLAKE2s (regex-syntax-0.7.3.crate) = 7ae6f90e7527672483173f54ae5654324f72efb3bdd20144bfb1662e26c4215f
 SHA512 (regex-syntax-0.7.3.crate) = 0eb46957533efbcc6743258384854136a3a2c838533913d4b4573f6374248961bec05c55498b938ff0eb0979a98b13ff5d448e47588b6543766c3d63658c4767
 Size (regex-syntax-0.7.3.crate) = 343354 bytes
+BLAKE2s (relative-path-1.8.0.crate) = 2fb6092e6048d18f09ea58da9ab82c283d0ce031750519b64991db6f7ff47544
+SHA512 (relative-path-1.8.0.crate) = 80079cf06d0f908822a0c63c5c2f29826f3b458c56036b300f00f94e090f391013144419b8d0147c7269639c109363775e2d286c207b159f68fe63650d32633b
+Size (relative-path-1.8.0.crate) = 24865 bytes
+BLAKE2s (rle-decode-fast-1.0.3.crate) = e766d81a782d226b466712741b10e0462ca31728cf5c2b38bd7f45bead4aca2f
+SHA512 (rle-decode-fast-1.0.3.crate) = f647cfd9ae0bbaca4a189cd1f8d1f8531f6dc0ffa1fd296c75cfe405fc9060e25be74581558a9195364ea90e32c7ccd60e066d21704cae836d41606b5799301a
+Size (rle-decode-fast-1.0.3.crate) = 62086 bytes
 BLAKE2s (rmp-0.8.11.crate) = 0bcf8a0508b0ef9a58f8e6d393daac051631a05f0d3f180db344c4a09b825d61
 SHA512 (rmp-0.8.11.crate) = 27a499316542722a4d9fe4fa9cc005b6b5fa75dcf66686a5c08aa6130497b67511c0283419adb64fec09a51a563f4991f2039280d2e74f8ea4102afbe4977f38
 Size (rmp-0.8.11.crate) = 28829 bytes
@@ -1131,12 +1155,12 @@ Size (rmp-serde-1.1.1.crate) = 30360 byt
 BLAKE2s (roxmltree-0.18.0.crate) = 3a7d3b6d4b534b50488264842b607df8d0104df38f1069b1c457b4d6b8c4405f
 SHA512 (roxmltree-0.18.0.crate) = cdc7f08bb761f7b5e4853afb9e451ddcbe9d9d436f5cbb78a126c7fb42c99f5ae1a9b1fd4738d169c2ae101a7ec7215e2ad4bf2f37c78a7d3e13b1a6d2410a4b
 Size (roxmltree-0.18.0.crate) = 42463 bytes
-BLAKE2s (rstest-0.17.0.crate) = 709c50f473ce88f64bcecf3758d2f24171a867a9353308ca8ec2b376518d5f56
-SHA512 (rstest-0.17.0.crate) = 1672cb72052ac96b61617f1bfc5eefa173c5d963ca5efd03792e1f614b4b23e7088237430a21dd4256d74e00b14fc86fe40b26b25dfdcf815067d3ff817d223e
-Size (rstest-0.17.0.crate) = 26737 bytes
-BLAKE2s (rstest_macros-0.17.0.crate) = 7d0848768a69a36159c30227998e1f5208483068c9b0bd22d73b734b2babea24
-SHA512 (rstest_macros-0.17.0.crate) = e54b6a165405831f76295f1f816440597e5ceb52fc52e6f3ed085d28e0c4ab6f263b5b6fe1001406dc8daf4ed37c10b3c5cf4f76abf06909eff6212c7f7e2e46
-Size (rstest_macros-0.17.0.crate) = 50678 bytes
+BLAKE2s (rstest-0.18.1.crate) = 1bd906eeeea75c85dd4d0c5566c76fc197a26c86195ac7510da81730a72d38d9
+SHA512 (rstest-0.18.1.crate) = 22b0ebfce03414ca0b38f483b93731461ba7da70c8d0d1ee38f73f16ea92730e31eb647fe2860476b86b8541687d79405c25b34bfd7fd9c915841eaa9f4b41f7
+Size (rstest-0.18.1.crate) = 28670 bytes
+BLAKE2s (rstest_macros-0.18.1.crate) = 31521c717ceb47608366fe3bc965926b37f58f45a7d612cfb66cd7cb5d5e890b
+SHA512 (rstest_macros-0.18.1.crate) = e53fa8b0850e18c53185c702293984607c5e13ef5a1c57beb34ab14b279fd138449c2a09cb4984c377c53e4a19ac83a6bb411d4068dc3ac882490948fd050e57
+Size (rstest_macros-0.18.1.crate) = 56971 bytes
 BLAKE2s (rusqlite-0.29.0.crate) = 479600ed01058ad787ba71774a71f9e972bbe89dc145ed4921973fc49018021c
 SHA512 (rusqlite-0.29.0.crate) = 63e5722f7391a335773d2fe554ebf285f388ecdce7279f767f9c3293bc776abedd15badfaa29c4abaa356707667ffda11dd14bf50fb4bae670df0e102283e055
 Size (rusqlite-0.29.0.crate) = 137156 bytes
@@ -1314,9 +1338,9 @@ Size (string_cache-0.8.7.crate) = 16655 
 BLAKE2s (string_cache_codegen-0.5.2.crate) = efefb70e1a210ec7c031c77a34533efa0254066d4e758ae959ada70e3519e75b
 SHA512 (string_cache_codegen-0.5.2.crate) = 01b9b1a865878537f657adf908159fd04f3f2ba4e70f8c632b73d0ed5a8a09fe2bb9ac8ac4397dec1f50d771dec33fc5d3f9e68dbf80cc177118665b2c67e864
 Size (string_cache_codegen-0.5.2.crate) = 8156 bytes
-BLAKE2s (strip-ansi-escapes-0.1.1.crate) = 40836c3dbe34184fe483d731c88a60dcd2ae004ddbedc34f9c2450037dbb56ef
-SHA512 (strip-ansi-escapes-0.1.1.crate) = ebcddc0af68f7263726d8f9dc3825819ea75389bc6f97f97f0238b17a06e0596f1562ddcf065178940e4f1963bf7a2b99eb02ec124f9f633b2fab1b443bb5717
-Size (strip-ansi-escapes-0.1.1.crate) = 8668 bytes
+BLAKE2s (strip-ansi-escapes-0.2.0.crate) = dcf7d037934c7e62d43c80d1bd9b2a2e8207705cd71deaa190a8c3a75b3c3b27
+SHA512 (strip-ansi-escapes-0.2.0.crate) = 726b91683746a0bb928673c95f12f22d58d142638f7f44634db72a6c4275c6e3d78183f1dc47f046ac0400706e3a33d0c15bc84a66ace4432dd4f189d49557b8
+Size (strip-ansi-escapes-0.2.0.crate) = 8625 bytes
 BLAKE2s (strum-0.24.1.crate) = f2d293c4d5f11e802850fdbf19779cc4b0d9689e40ef580b18f4cd0178315233
 SHA512 (strum-0.24.1.crate) = d842464b762790f4b785e494f72f7bae47b5a068cd06ddaad7a491d1abff53fa9cde280b06bbbb6b39a3a8f350a2384080ec4b3e4f16226cb076b1df153e6197
 Size (strum-0.24.1.crate) = 5636 bytes
@@ -1356,9 +1380,9 @@ Size (sys-locale-0.3.0.crate) = 14548 by
 BLAKE2s (sysinfo-0.29.4.crate) = 92efd51c2654badcc3b937af4faf0351b4bcb819531e03175b82b1e4936add08
 SHA512 (sysinfo-0.29.4.crate) = ff08e40e1906f5502c4151d3d384623d834e698cc9c12f883812a7fac31b5fbd8df9a4c35b0cc43910e3c13c949df80084abc1bbf78b0d6bf66d878526a7ff4b
 Size (sysinfo-0.29.4.crate) = 153776 bytes
-BLAKE2s (tabled-0.12.2.crate) = 45d004ae925149ac6f889b23bd46dfe0f491449b6c34d0128619ec74e427c701
-SHA512 (tabled-0.12.2.crate) = e88cf42c7f11abb939139b3028096aabff535e46e7dbffc9259cb2780e350d66945fce452d2e44db411a1828349bb27db4f36370c19e242ef58bc22b7ccbd629
-Size (tabled-0.12.2.crate) = 181257 bytes
+BLAKE2s (tabled-0.14.0.crate) = e799d2acb5b96ed6fe57a61b7dff92dc3cb18d6f8beba3b92e62cb8d381740d3
+SHA512 (tabled-0.14.0.crate) = 14a4930d39afd52c40f7d3eb0d0cbf9e956354a8001363464c091dd167221bf22f7192fb386728a43f6714ec44222fe82afaa7ac0458ba0ea92bc9ab886d51e7
+Size (tabled-0.14.0.crate) = 192117 bytes
 BLAKE2s (target-features-0.1.4.crate) = bf57c827017a3c1ce30111522cd91824e1ef0732eaa516c3ea22323ac1e44b54
 SHA512 (target-features-0.1.4.crate) = 9934bfa849f31ff8caef4da5a05a06976545dbe0f801683ae5cbc5bf87e705fe891f96bb23305351a7cd9d693e826def7c164b04879f3158e1aa3a99088fe2eb
 Size (target-features-0.1.4.crate) = 18176 bytes
@@ -1476,9 +1500,9 @@ Size (unicode-bidi-0.3.13.crate) = 44477
 BLAKE2s (unicode-ident-1.0.10.crate) = 66b26a485183b7f3bd4fe87aad36a4cc03ed7152b69129c6b709c99d6cca1552
 SHA512 (unicode-ident-1.0.10.crate) = 5dcc24e138a86f84cb05290332d02953b0ca18839ead1e74b0319bc361ea449700e04d62a51e435cba266121e463643e017718d3023a84f844a59e4ca4475686
 Size (unicode-ident-1.0.10.crate) = 42039 bytes
-BLAKE2s (unicode-linebreak-0.1.4.crate) = f7f7b7ead2ce832097bc4387eaf8be63c8dd87a85d3562bd29130d6c249f308c
-SHA512 (unicode-linebreak-0.1.4.crate) = 4c4a1cb4d8d9563740a6a5bc8ea5db8bab88b1cfbd751fdf33dbdb3923478a4bb716e3ce7441aca0d84426894834959cbc845f3cc2bc1379c5935019dc3f703d
-Size (unicode-linebreak-0.1.4.crate) = 74962 bytes
+BLAKE2s (unicode-linebreak-0.1.5.crate) = 0db0468e07923b457116045c9732846e8c7d21aeb4749379096a7db54ece66b0
+SHA512 (unicode-linebreak-0.1.5.crate) = f37be2f7b04b886e95bb7d0f33bd392b78bb940ef9a01cec487062cf31ec0367306650fad7004df556887a324c714eeb28f697044aad9a429ce07b7b7344af60
+Size (unicode-linebreak-0.1.5.crate) = 15324 bytes
 BLAKE2s (unicode-normalization-0.1.22.crate) = 2b18e16ecf7fc6163fa8668a3e454d9f1262024700dd4a2062189efbe9164094
 SHA512 (unicode-normalization-0.1.22.crate) = a5810d5e9cd93dbb80e013997aa9d38e60834619483a6623eb2859ec5d59a5aec3fc4db123dc7f4e2fe9f2b8799cf6af48bdff22d69a00a23707240e8bf3bb3c
 Size (unicode-normalization-0.1.22.crate) = 122604 bytes
@@ -1524,6 +1548,9 @@ Size (version_check-0.9.4.crate) = 14895
 BLAKE2s (vte-0.10.1.crate) = d0138242553fceb8f4e1440536ae478453c676c644b035965f199e93e19b3e7c
 SHA512 (vte-0.10.1.crate) = 0c8fed2cfca5ad07d2a146e1e26979d390347a409cdc2b960246fc2fadd85019b9febf2dfd618f7a144493084b55f285c58ef5204e613bd9013af26faa9f2033
 Size (vte-0.10.1.crate) = 24947 bytes
+BLAKE2s (vte-0.11.1.crate) = 2574236aa1d65f9dd5e270d1198c25f70bf256368e94dcde64bc7810fe8f6ad7
+SHA512 (vte-0.11.1.crate) = 43dbad0fe71305159736c5578f015a4cb2668922263f43cf09019efb40b09e5bfff13816ffa9aa1cd8d3a20dcbbc9ea12f223edaee1b44ed8e3f112f97020a5b
+Size (vte-0.11.1.crate) = 40455 bytes
 BLAKE2s (vte_generate_state_changes-0.1.1.crate) = 9e4aabd30a0a6a067e0c56bca713d7ea27f4c456b6b34ac32824b33d5ded04bc
 SHA512 (vte_generate_state_changes-0.1.1.crate) = ba09352e037cbd279cbf5641c9783a24f76e54f1f09e13f0ab1ca99c9646c1e3c958e8e302d7cc88431073bad2e2d5619410f2f93f96f1db25f0f0ded0236f7e
 Size (vte_generate_state_changes-0.1.1.crate) = 2422 bytes



Home | Main Index | Thread Index | Old Index