pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
shells/nushell: update to 0.73.0
Module Name: pkgsrc-wip
Committed By: pin <voidpin%protonmail.com@localhost>
Pushed By: pin
Date: Wed Dec 21 10:24:52 2022 +0100
Changeset: 6bf3f128bfc3ce97a7bef573acec0e598e8a662a
Modified Files:
nushell/Makefile
nushell/cargo-depends.mk
nushell/distinfo
Log Message:
shells/nushell: update to 0.73.0
0.73.0
Themes of this release / New features
PLEASE NOTE: Boolean && and || have changed
- The boolean && is now and and the boolean || is now or. These were deprecated
in the 0.72 release and have now been removed. Existing scripts will need to
be updated to the new syntax to run in 0.73.
- Experimental interactive explore command (zhiburt). This release includes a
new experimental command called explore for viewing Nu data in an
interactive UI. Some things to try:
- pipe a large table to explore (ex: ls | explore) and use explore as a
fancy pager
- run explore, then type :try and press the Enter key to enter a mode where
you can run commands inside explore
explore is highly experimental and we expect it to change in the future.
Please report any issues you discover.
- New math commands (sholderbach). With this release we include a larger number
of math commands for real valued math such as trigonometric functions and
logarithms. The goal is to remove the math eval command that operates on
strings instead of proper nushell expressions.
- Changes to commands with predicates (kubouch). any, all, skip until,
skip while, take until, and take while now accept a closure instead of a row
condition. This makes them slightly more verbose but it is a part of an
effort to refactor our parser to allow defining concrete grammar rules for
the Nu language. Row condition is currently accepted only in the where
command which becomes a parser built-in command (like use or let).
- New filter command and simpler where (kubouch). We found the -b flag of
where quite confusing and decided to remove it in favor of a new filter
command. Both filter and where have similar functionality but where now only
accepts a row condition and filter accepts a closure. Why is it useful to
have two commands doing the same thing? Because with the filter command,
you can store the closure in a variable. On the other hand, where is more
concise ([{a: 1} {a: 2}] | where a > 1) but you can't store its condition in
a variable. The choice is yours!
- New command uniq-by (raccmonteiro). To complement uniq which can identify
unique or duplicated values in a collection or report the number of
occurrences for a particular entry, we now have uniq-by. It supports
filtering a table by entries appearing in a particular column.
- Mutable data structures can now have their inner values mutated using
= (webbedspace). If a variable has been defined as mutable using the
recently-added mut keyword, you can now deeply mutate its inner values
using =. This syntax enhancement was added primarily to make modifying
$env.config during a normal session much easier. Now, $env.config is
considered inherently mutable. You can change a single config value.
- More sophisticated coloring of data values using closures (webbedspace).
The color_config config record has new functionality: instead of specifying
a single color name for all values of a given type, you may now alternatively
provide a closure that dynamically computes a color for each individual
value. The closure takes, as input, a single value of the given type, and
must produce either a string value representing a color, or a
{ fg, bg, attr } record (the same as what color_config already accepts as a
color value). This feature can be used to provide important visual
distinctions between ranges of values in data.
This causes all filesize values to be colored using dark_gray if they equal
0b, cyan_bold if they are less than 1mb, and blue_bold otherwise. This means
that, in ls output, empty files can be more easily distinguished from
non-empty ones. This colors true in light_cyan, and false in light_gray.
This can be useful when browsing a large table of booleans. The themes in
the default config.nu file have been updated with further examples of these
closures.
In certain situations (most notably, during a single ls call that isn't
piped to anything else) Nushell will parallelize the execution of these
closures. As such, you cannot expect that they will run in the same order
as each value appears in the output data.
WARNING
Currently, closures are only supported for output values - they do not work
with color settings that begin with shape_, such as shape_literal. They also
do not work with the color configuration for the new explore command. Only
values inside of tables are highlighted using closures.
Breaking Changes
- split row command will retain an empty string if splitted string is empty.
(#7413)
- split list now properly removes the separator in all positions (#7355)
- The --show-created-paths flag has been replaced by --verbose from mkdir.
- fetch removes --output, --bin, --append flags, use fetch with save to save
fetched page to a file. (#7468)
- changes to how get works with deep cell paths (#7480)
- mkdir's -s/--show-created-paths has been renamed to -v/--verbose for better
consistency (#7462)
- && is now and and || is now or
- any, all, skip until, skip while, take until, take while now take only a
closure as an argument.
- where now takes only row condition argument, -b flag removed.
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=6bf3f128bfc3ce97a7bef573acec0e598e8a662a
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
nushell/Makefile | 2 +-
nushell/cargo-depends.mk | 24 +++++++--------
nushell/distinfo | 78 ++++++++++++++++++++----------------------------
3 files changed, 44 insertions(+), 60 deletions(-)
diffs:
diff --git a/nushell/Makefile b/nushell/Makefile
index 9a5c67ae39..637cda4e73 100644
--- a/nushell/Makefile
+++ b/nushell/Makefile
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.24 2022/11/10 22:01:15 pin Exp $
-DISTNAME= nushell-0.72.1
+DISTNAME= nushell-0.73.0
CATEGORIES= shells
MASTER_SITES= ${MASTER_SITE_GITHUB:=nushell/}
diff --git a/nushell/cargo-depends.mk b/nushell/cargo-depends.mk
index effe4193de..5a06c1d7b7 100644
--- a/nushell/cargo-depends.mk
+++ b/nushell/cargo-depends.mk
@@ -10,8 +10,9 @@ CARGO_CRATE_DEPENDS+= alloc-stdlib-0.2.2
CARGO_CRATE_DEPENDS+= alphanumeric-sort-1.4.4
CARGO_CRATE_DEPENDS+= android_system_properties-0.1.5
CARGO_CRATE_DEPENDS+= ansi-str-0.5.0
+CARGO_CRATE_DEPENDS+= ansi-str-0.7.2
CARGO_CRATE_DEPENDS+= ansitok-0.2.0
-CARGO_CRATE_DEPENDS+= anyhow-1.0.65
+CARGO_CRATE_DEPENDS+= anyhow-1.0.66
CARGO_CRATE_DEPENDS+= array-init-cursor-0.2.0
CARGO_CRATE_DEPENDS+= arrayvec-0.5.2
CARGO_CRATE_DEPENDS+= arrayvec-0.7.2
@@ -47,7 +48,8 @@ CARGO_CRATE_DEPENDS+= bytemuck_derive-1.2.1
CARGO_CRATE_DEPENDS+= byteorder-1.4.3
CARGO_CRATE_DEPENDS+= bytes-1.2.1
CARGO_CRATE_DEPENDS+= bytesize-1.1.0
-CARGO_CRATE_DEPENDS+= calamine-0.18.0
+CARGO_CRATE_DEPENDS+= calamine-0.19.1
+CARGO_CRATE_DEPENDS+= cassowary-0.3.0
CARGO_CRATE_DEPENDS+= cast-0.3.0
CARGO_CRATE_DEPENDS+= cc-1.0.73
CARGO_CRATE_DEPENDS+= cexpr-0.6.0
@@ -132,7 +134,6 @@ CARGO_CRATE_DEPENDS+= form_urlencoded-1.1.0
CARGO_CRATE_DEPENDS+= fs_extra-1.2.0
CARGO_CRATE_DEPENDS+= fsevent-0.4.0
CARGO_CRATE_DEPENDS+= fsevent-sys-2.0.1
-CARGO_CRATE_DEPENDS+= fuchsia-cprng-0.1.1
CARGO_CRATE_DEPENDS+= fuchsia-zircon-0.3.3
CARGO_CRATE_DEPENDS+= fuchsia-zircon-sys-0.3.3
CARGO_CRATE_DEPENDS+= futf-0.1.5
@@ -198,7 +199,7 @@ CARGO_CRATE_DEPENDS+= jobserver-0.1.25
CARGO_CRATE_DEPENDS+= joinery-2.1.0
CARGO_CRATE_DEPENDS+= js-sys-0.3.60
CARGO_CRATE_DEPENDS+= json-deserializer-0.4.2
-CARGO_CRATE_DEPENDS+= json_to_table-0.2.0
+CARGO_CRATE_DEPENDS+= json_to_table-0.3.1
CARGO_CRATE_DEPENDS+= kernel32-sys-0.2.2
CARGO_CRATE_DEPENDS+= lazy_static-1.4.0
CARGO_CRATE_DEPENDS+= lazycell-1.3.0
@@ -344,18 +345,14 @@ CARGO_CRATE_DEPENDS+= pure-rust-locales-0.5.6
CARGO_CRATE_DEPENDS+= pwd-1.4.0
CARGO_CRATE_DEPENDS+= quick-error-1.2.3
CARGO_CRATE_DEPENDS+= quick-error-2.0.1
-CARGO_CRATE_DEPENDS+= quick-xml-0.19.0
-CARGO_CRATE_DEPENDS+= quick-xml-0.23.1
+CARGO_CRATE_DEPENDS+= quick-xml-0.25.0
CARGO_CRATE_DEPENDS+= quickcheck-1.0.3
CARGO_CRATE_DEPENDS+= quickcheck_macros-1.0.0
CARGO_CRATE_DEPENDS+= quote-1.0.21
-CARGO_CRATE_DEPENDS+= rand-0.4.6
CARGO_CRATE_DEPENDS+= rand-0.7.3
CARGO_CRATE_DEPENDS+= rand-0.8.5
CARGO_CRATE_DEPENDS+= rand_chacha-0.2.2
CARGO_CRATE_DEPENDS+= rand_chacha-0.3.1
-CARGO_CRATE_DEPENDS+= rand_core-0.3.1
-CARGO_CRATE_DEPENDS+= rand_core-0.4.2
CARGO_CRATE_DEPENDS+= rand_core-0.5.1
CARGO_CRATE_DEPENDS+= rand_core-0.6.4
CARGO_CRATE_DEPENDS+= rand_distr-0.4.3
@@ -364,7 +361,6 @@ CARGO_CRATE_DEPENDS+= rand_pcg-0.2.1
CARGO_CRATE_DEPENDS+= rand_xorshift-0.3.0
CARGO_CRATE_DEPENDS+= rayon-1.5.3
CARGO_CRATE_DEPENDS+= rayon-core-1.9.3
-CARGO_CRATE_DEPENDS+= rdrand-0.4.0
CARGO_CRATE_DEPENDS+= redox_syscall-0.2.16
CARGO_CRATE_DEPENDS+= redox_users-0.4.3
CARGO_CRATE_DEPENDS+= reedline-0.14.0
@@ -378,7 +374,7 @@ CARGO_CRATE_DEPENDS+= riscv-0.7.0
CARGO_CRATE_DEPENDS+= riscv-target-0.1.2
CARGO_CRATE_DEPENDS+= rmp-0.8.11
CARGO_CRATE_DEPENDS+= rmp-serde-1.1.1
-CARGO_CRATE_DEPENDS+= roxmltree-0.14.1
+CARGO_CRATE_DEPENDS+= roxmltree-0.16.0
CARGO_CRATE_DEPENDS+= rstest-0.15.0
CARGO_CRATE_DEPENDS+= rstest_macros-0.14.0
CARGO_CRATE_DEPENDS+= rusqlite-0.28.0
@@ -454,7 +450,6 @@ CARGO_CRATE_DEPENDS+= sys-locale-0.2.1
CARGO_CRATE_DEPENDS+= sysinfo-0.26.4
CARGO_CRATE_DEPENDS+= tabled-0.10.0
CARGO_CRATE_DEPENDS+= tabled_derive-0.5.0
-CARGO_CRATE_DEPENDS+= tempdir-0.3.7
CARGO_CRATE_DEPENDS+= tempfile-3.3.0
CARGO_CRATE_DEPENDS+= tendril-0.4.3
CARGO_CRATE_DEPENDS+= termcolor-1.1.3
@@ -483,6 +478,7 @@ CARGO_CRATE_DEPENDS+= tracing-0.1.36
CARGO_CRATE_DEPENDS+= tracing-core-0.1.29
CARGO_CRATE_DEPENDS+= trash-3.0.0
CARGO_CRATE_DEPENDS+= try-lock-0.2.3
+CARGO_CRATE_DEPENDS+= tui-0.19.0
CARGO_CRATE_DEPENDS+= typed-arena-1.7.0
CARGO_CRATE_DEPENDS+= typenum-1.15.0
CARGO_CRATE_DEPENDS+= typetag-0.1.8
@@ -551,9 +547,9 @@ CARGO_CRATE_DEPENDS+= windows_x86_64_msvc-0.42.0
CARGO_CRATE_DEPENDS+= winreg-0.10.1
CARGO_CRATE_DEPENDS+= winres-0.1.12
CARGO_CRATE_DEPENDS+= ws2_32-sys-0.2.1
-CARGO_CRATE_DEPENDS+= xmlparser-0.13.3
+CARGO_CRATE_DEPENDS+= xmlparser-0.13.5
CARGO_CRATE_DEPENDS+= yansi-0.5.1
-CARGO_CRATE_DEPENDS+= zip-0.5.13
+CARGO_CRATE_DEPENDS+= zip-0.6.3
CARGO_CRATE_DEPENDS+= zstd-0.11.2+zstd.1.5.2
CARGO_CRATE_DEPENDS+= zstd-safe-5.0.2+zstd.1.5.2
CARGO_CRATE_DEPENDS+= zstd-sys-2.0.1+zstd.1.5.2
diff --git a/nushell/distinfo b/nushell/distinfo
index 51f6203794..6fc01815c7 100644
--- a/nushell/distinfo
+++ b/nushell/distinfo
@@ -30,12 +30,15 @@ Size (android_system_properties-0.1.5.crate) = 5243 bytes
BLAKE2s (ansi-str-0.5.0.crate) = ab92284ed0eda18605301a67ef507146d13805e0695dbcded0e9ceca04db912b
SHA512 (ansi-str-0.5.0.crate) = 7da1b479a3272e372806e64df4829b7069ccdc0bd89194c9d07f7fc4b436e24f434ef2dd15c07472d33d68f8a0fd784afd899b53036b3e2453e0a39009871d8b
Size (ansi-str-0.5.0.crate) = 17279 bytes
+BLAKE2s (ansi-str-0.7.2.crate) = 54a4ab1f0994ef3d2499517e3aa6f46c0e74ab079f70e64042decbef20365376
+SHA512 (ansi-str-0.7.2.crate) = 52462c001507b6cb6a2722ba276a5eb8b77b8697997c6333e6f0fda2e0111e291ab403284f26064f33ca4c75aa31d6b48248cd322ade54949705e6e20cec3b08
+Size (ansi-str-0.7.2.crate) = 19141 bytes
BLAKE2s (ansitok-0.2.0.crate) = eddacbceda8687d716725e29559411f2219590904fd2c355a38a15702b216118
SHA512 (ansitok-0.2.0.crate) = 7619a51777ee642d3f96f8e47cce96f677085d57600875893779a12affd92915d6db9dd767814f6fab81713200d371d0579ba16cd004d3d5238ed067e5e77c19
Size (ansitok-0.2.0.crate) = 18021 bytes
-BLAKE2s (anyhow-1.0.65.crate) = 9800c69ba5bc16c800af9db6744294b1a3a6c82b37abcc65be081d725ddc8e15
-SHA512 (anyhow-1.0.65.crate) = 86b83c88fbc343f4ff1bfba5bf91f3c5133fbed8276e78f4222b28e38ada79c4245e2780934897525b41cbd4b8a9d0bc9cbd8b6c2dd32544ba124d458f5a490c
-Size (anyhow-1.0.65.crate) = 43585 bytes
+BLAKE2s (anyhow-1.0.66.crate) = 8f80332ec72132612603d853a1e995ad30c019fa19ecee858f6a117bf134a72d
+SHA512 (anyhow-1.0.66.crate) = 7b4078906df2805d491dc2f29c4eec85a9f43078c0dcd9c05261c2706ed655953b693c4f59fda62547681b29cda9ac7a0789f1359bb18110403cfe34e9fb0dc3
+Size (anyhow-1.0.66.crate) = 43770 bytes
BLAKE2s (array-init-cursor-0.2.0.crate) = b7a6ff1ed40bcf16c9c40b9a7f0ddff53e03935bc5b63337e1bb7bfa93ae3cb2
SHA512 (array-init-cursor-0.2.0.crate) = f4698cbf9ab3011ef8a0f9fc29d9d58d2572df0db336ad4ee6e72dec0bf4be89d06e2693d7037082788b6d120cb2ad5f1223932c185e25258a1594c60d429eba
Size (array-init-cursor-0.2.0.crate) = 2590 bytes
@@ -141,9 +144,12 @@ Size (bytes-1.2.1.crate) = 54857 bytes
BLAKE2s (bytesize-1.1.0.crate) = e2c9860037dea32c01df57f12d94e76b4180147adc32b52d61ee9e7b2a01d612
SHA512 (bytesize-1.1.0.crate) = 36f35cf53c468cf011b231d3fc5d00c5224fa3d917854e347daeaaae53ae7ee36c4d8ba26788460d56c922c9ffb0eeebc60655fef7366ae42e221950d03f6715
Size (bytesize-1.1.0.crate) = 9370 bytes
-BLAKE2s (calamine-0.18.0.crate) = a949b31ab6c6dc96676a8f62215cced7a851f38a680d6391e96dcf5aa8a5cd14
-SHA512 (calamine-0.18.0.crate) = 9740b7621a862ddcd45820a07baae72f244dad903880d637d2761756e0c7c8ef608b0c12bf59ad0a30fd91b50d42dac510099128c6153af7721be80711d91e75
-Size (calamine-0.18.0.crate) = 60972 bytes
+BLAKE2s (calamine-0.19.1.crate) = 06156a5eda66bda296d17136cbce336818d20040c5841f491a0b5b697d9fcf80
+SHA512 (calamine-0.19.1.crate) = 0a41b82c2f47e1fc6ec3d6af9294a157070d25dcc10870e8416552714038f8fa40df9488f9d350abee9b4c92a52be8111aca61c24b52ca0daecdaa8a6c21a593
+Size (calamine-0.19.1.crate) = 64781 bytes
+BLAKE2s (cassowary-0.3.0.crate) = b17facbc17a2111cef15ced2fdcbee59ae6747e942e059144b8b67ca7c13d9d2
+SHA512 (cassowary-0.3.0.crate) = 0838c0b79ed31f0c514fe4ac82633976e34b0d6cb08616313cda0e00623514fc6498c6c308cfef54ea029f1fdbaafe2991ca8ac3c38437a113ac62e37f9397f8
+Size (cassowary-0.3.0.crate) = 22876 bytes
BLAKE2s (cast-0.3.0.crate) = b7eb7925f63a001fded24ee7c24d6e990639a3b7af75e26b5534a59d91a45865
SHA512 (cast-0.3.0.crate) = 4a3e19bc1e9e5ecc03aaef9bcdce01624ac0e6858c065fa1c41693db0ac172b9735ce872064561347cd9e79f00a274129011f6e4ccf9e61d960c8bb684b6d396
Size (cast-0.3.0.crate) = 11452 bytes
@@ -396,9 +402,6 @@ Size (fsevent-0.4.0.crate) = 7292 bytes
BLAKE2s (fsevent-sys-2.0.1.crate) = 7cf351c6bb1a3c1ed38d360d874e97dbabdcfc2e85b0d474c51368cfaedcfcb5
SHA512 (fsevent-sys-2.0.1.crate) = 4c7f96586c4564f804390c3ad22388456a138bef1902a5985463515ca9b56976fc14c993f08ac188897c449b2d2843890c2357398eb3ef5eb064326881e7167d
Size (fsevent-sys-2.0.1.crate) = 3984 bytes
-BLAKE2s (fuchsia-cprng-0.1.1.crate) = 1bc2fd5a4a533d5b8d16f500852428c4f128cd1b30ef7ec8addfe51d23c68d93
-SHA512 (fuchsia-cprng-0.1.1.crate) = ea9f5beb0dfcb023c22cfc2b37ce52dfcf3a2cbbed0f79ffffc332878858386805c65dce8469a431002367562d857a6c064e075688540c27fcb4056a110059d2
-Size (fuchsia-cprng-0.1.1.crate) = 2950 bytes
BLAKE2s (fuchsia-zircon-0.3.3.crate) = 8804c4e9c1ceda779cf1605095d961f6cf9f1324677fe334e9ba87cb7379c99b
SHA512 (fuchsia-zircon-0.3.3.crate) = a43ee59452d49742111e506d6bdd8b8399a3a646e08648e25292864d7f71460c1dd1f2d77b8efa8ed09ac21fa4ff0442a2709f16d8833a3849bde0c388d83a93
Size (fuchsia-zircon-0.3.3.crate) = 22565 bytes
@@ -594,9 +597,9 @@ Size (js-sys-0.3.60.crate) = 79257 bytes
BLAKE2s (json-deserializer-0.4.2.crate) = 1dd18350b8d9bd9252a6de05fc80078db79a7bdc18c9ff3e56dc909da4023f3f
SHA512 (json-deserializer-0.4.2.crate) = 403c19b6cf6e84bab575fd01b2a3fa910008e62098718a31d900614c14f949b0122234177b7bbc797c7faa66bf9f8c5b85cb5bd9b699e6c780d7a57de5cfcd25
Size (json-deserializer-0.4.2.crate) = 10294 bytes
-BLAKE2s (json_to_table-0.2.0.crate) = fd2005ad7b3095d0bf654ae00bb5a2018a17f69ed6dab3182ce03e1ef60683a4
-SHA512 (json_to_table-0.2.0.crate) = 43d01da1ada739f2d4c05943b57bbb5426c4c975a61ce6396dcfdcd952c7075d03ae74c1d8e8bfeeef9b09606f69c32014e76a6fc907a2f748dea9a0ba6a9f5c
-Size (json_to_table-0.2.0.crate) = 16865 bytes
+BLAKE2s (json_to_table-0.3.1.crate) = 8f11536f76771ae97234fd1efb059e94f823a160fc41ad500fbf2d6a9ba8f99f
+SHA512 (json_to_table-0.3.1.crate) = d4703fc23a81ff18bc28f8bbba9d3648c4d536c00be60dac6e91deb28327b2783714cb1a00d9c0a16e78466813bad3a3aba741723f477faae0b8672e4e5f391b
+Size (json_to_table-0.3.1.crate) = 17448 bytes
BLAKE2s (kernel32-sys-0.2.2.crate) = 2a73eb843541bef4f489f04fab855898e7fd655ce608882114685205fbd759fe
SHA512 (kernel32-sys-0.2.2.crate) = 682bc7c629aefd035966a2873518fd60719121cca7d63d89d6c97ff5306f24d8b5055a3c91b4eedaec22b1d5dd3fb8b48ff7341a05bbd72d86e06c422dab473b
Size (kernel32-sys-0.2.2.crate) = 24537 bytes
@@ -816,9 +819,9 @@ Size (num_cpus-1.13.1.crate) = 14752 bytes
BLAKE2s (num_threads-0.1.6.crate) = 16dafe947f10db7667201144859b311f1d2fdcaec5984b5f0986e8de75345e5f
SHA512 (num_threads-0.1.6.crate) = b2d9897e29e59353379b6372a629fc7f9afc89f777b4410eaeac7b4729527948a8dbecb175f056899f9076693ef855cc0d40e725cc54f28af588fbac5f7ce3b6
Size (num_threads-0.1.6.crate) = 7334 bytes
-BLAKE2s (nushell-0.72.1.tar.gz) = 7b9912c992a25e7b04b2adaa57f390740e270d2de4818072681f6384351100d7
-SHA512 (nushell-0.72.1.tar.gz) = 24ea7ff0d081db385896a222c0fd520a3d991ffdca1f952f1f7e9fa476327c95013f6b06506628acd0aa9d8d9d54fb0b222698284bfd6d3781327a9c51d298e5
-Size (nushell-0.72.1.tar.gz) = 2428247 bytes
+BLAKE2s (nushell-0.73.0.tar.gz) = c9620dabea16f1b1cf6b902a59202c88dc86502ff22e2e4a85ff567e5fe42ee0
+SHA512 (nushell-0.73.0.tar.gz) = 9f300e9dd1fec930477bcf85d8fc23f49cf39ba625a4494c857a0c68cde9a5e98f4d4fd7585abaf61296e8787b81aaf9d15c35b8a02c96171bad2cd01d7b7d00
+Size (nushell-0.73.0.tar.gz) = 2506182 bytes
BLAKE2s (objc-0.2.7.crate) = e34a570a877d402bef4a22098157a24171ada921812037222da0b82a1424f391
SHA512 (objc-0.2.7.crate) = 7178870c8e4e9154b4c7b4953b3164946b7ce72c956a02b9ba18889353c72be735824bd73e44a485e42ad5f97994820d9153ac684629342755a6a63711ab5988
Size (objc-0.2.7.crate) = 22036 bytes
@@ -1035,12 +1038,9 @@ Size (quick-error-1.2.3.crate) = 15066 bytes
BLAKE2s (quick-error-2.0.1.crate) = b5baa20597127843f2ea703488925348d57077126e4c5741bf35bc415b1489b6
SHA512 (quick-error-2.0.1.crate) = e028deb598466ae91663e5d090606be4f117662d0fa6e0c0b0043c7261f26787057e84e644cae72a45b1a0a7b1fb03fc9712faa3abee94b97ce2c8d25c365c32
Size (quick-error-2.0.1.crate) = 14265 bytes
-BLAKE2s (quick-xml-0.19.0.crate) = 3a230839e17ceeb573ae8139d89fb881c327debbf252c887406cced2407f769d
-SHA512 (quick-xml-0.19.0.crate) = 4806683fd622671c801d66f83726e677b4cfe85632e10501d8e876b78c2271fc5786341fb778a890d073ebe384fc844b82bc3575cbc8c5bbc92ca58953674034
-Size (quick-xml-0.19.0.crate) = 109155 bytes
-BLAKE2s (quick-xml-0.23.1.crate) = c53d23614be76e3a32d4830c315aeb9f9874176904738e63373b62b937813523
-SHA512 (quick-xml-0.23.1.crate) = 885477b984ba86d4d42c563a4a0af4c5b5a272f75289e45e5ab891ed44b0bfb4d5bf5e15553e245473c115f648fafbb86ca2b96897260c0ec14910aea537d688
-Size (quick-xml-0.23.1.crate) = 161488 bytes
+BLAKE2s (quick-xml-0.25.0.crate) = 0c630e9efbd54a4e80560179254e76a7b018a77dbcdefdcbc2aea5352b92eedd
+SHA512 (quick-xml-0.25.0.crate) = e887baba28d68aa6cff93221e3641d1a86ad2a4c8402037b32485fa27b27e2911e61eb9ffa72ed8d2b6b0aa3d1bb9fa1f6767c2c790fda526e0c4ecde50b07c9
+Size (quick-xml-0.25.0.crate) = 1295759 bytes
BLAKE2s (quickcheck-1.0.3.crate) = 00d23a6629fde53de62fe9c0c3ecfb76d7dfeaac5a91cd41e466564bbf7d0f98
SHA512 (quickcheck-1.0.3.crate) = 07dd707c9d3fd0b9cedbba545bc8b4fc1ca2770d169e444f8c96f8306d3161a6a3e9189cc5d0d6b3dc4221f7dbc05887dfe2dedc914f88d5e69ab2b94179185a
Size (quickcheck-1.0.3.crate) = 28069 bytes
@@ -1050,9 +1050,6 @@ Size (quickcheck_macros-1.0.0.crate) = 5275 bytes
BLAKE2s (quote-1.0.21.crate) = 35d526b76a740996fdcd393d2d077d4929f971b5f341498682b878c7cac7ebc0
SHA512 (quote-1.0.21.crate) = 0728eb4df7e1f7c4d32ab08c901c2c969db8eb46b03bcec3e4956a4f6b360939d32abc6b6ebd7a31058e8e9b69c3d995a24cb484f93656f05b4ee963be1c74fc
Size (quote-1.0.21.crate) = 28030 bytes
-BLAKE2s (rand-0.4.6.crate) = b05813bcd03baa0c8fdaa1733b04ca44aa3efdbdb964755d825dfee707c7bb89
-SHA512 (rand-0.4.6.crate) = a91c6da7188b426bf9cb832892ee2af87c4cd65fad505c34e9c63343da71efe8c0c67b75c405dca5345317b7940d1d0fc0b20be85afd6b3089203e5698d86f0a
-Size (rand-0.4.6.crate) = 76401 bytes
BLAKE2s (rand-0.7.3.crate) = 4799f94d7d054b269caf818193a2b748557a9d83c3c164d17f408649c4c4e96b
SHA512 (rand-0.7.3.crate) = f9b68ef9446f1ca2c8092c50990f15c1b4cb5529eeeac4df8d69755e0b7253c663c587775e7cb0a7298c31edb444975dda34926759306541f6d43d0d3cf57b7e
Size (rand-0.7.3.crate) = 112246 bytes
@@ -1065,12 +1062,6 @@ Size (rand_chacha-0.2.2.crate) = 13267 bytes
BLAKE2s (rand_chacha-0.3.1.crate) = 610f5bba921c6e9d0527a13b5bf3ac43ffcddbbfc58522a8c086baef788895c4
SHA512 (rand_chacha-0.3.1.crate) = 8198c580b1b9b0429758ffa49cd8138fa3ce724f0dcf73c767ea7e55611d6a2e4c7cad9950896510def500ce4062b594386c947ac3d89425b4e5c9b04d0b8075
Size (rand_chacha-0.3.1.crate) = 15251 bytes
-BLAKE2s (rand_core-0.3.1.crate) = 8841b3bc27fad660e621e5eead7a3accbd33c0eda1bacf0afe6d14944fe5299a
-SHA512 (rand_core-0.3.1.crate) = 5a7ae601124502bede760fd3179c2b28059ebc3b5983bfcb6b8fa62fb58df95cedc1aeb2734e792d894dfa4620801c13c29702f9cbee64243121575d4b6b9114
-Size (rand_core-0.3.1.crate) = 15483 bytes
-BLAKE2s (rand_core-0.4.2.crate) = 1d90a57288413d1dfda38432bbc103785e2e006a366de2211018fa28a0ec0a8e
-SHA512 (rand_core-0.4.2.crate) = f7ae3b690e2cc1fbf2707ee04b752bc5472433f737ab581f9872f7c5660966bc6be45f0c5d2cd8771105df6d4a9d206c55f5cc6ffc1693b46e1ae03a2883b028
-Size (rand_core-0.4.2.crate) = 20243 bytes
BLAKE2s (rand_core-0.5.1.crate) = 6873229e385cff778b4ac96d1b1d9a7b31611c9219bacc24f6d920573eb30d35
SHA512 (rand_core-0.5.1.crate) = 4f7500b35e165e6c817fdd67a50745d5497d24e554bb554705097e37258751e8755c4d6b8a69fcb5e1977708ba78620bc35d640e4e018fcd4e88d9dbdbebdcbf
Size (rand_core-0.5.1.crate) = 21116 bytes
@@ -1095,9 +1086,6 @@ Size (rayon-1.5.3.crate) = 167246 bytes
BLAKE2s (rayon-core-1.9.3.crate) = 42b60193f986172f6dc6ebf1dd5394b92f3affbddb39b9f3421480be38064fe5
SHA512 (rayon-core-1.9.3.crate) = 4b852f083766e7e414132840cc8dfef148e15db47967eeedc2ddbff9a4372521c296dd4f66e0b6990f49a8ce88ebed9d44e7ad674df42f96b99b24469b1852a5
Size (rayon-core-1.9.3.crate) = 65300 bytes
-BLAKE2s (rdrand-0.4.0.crate) = aa9ec3125d9646b82a616e90ab4bc7824baac14a2e827f5221f643a6a5dc0e9d
-SHA512 (rdrand-0.4.0.crate) = 6476275d124bee28747191471e8d8f321a3b1c148c1f2a7ece4175f5244a7de90afe5f99d2eba5244d886b92e38232398864bf90e6d434b09494533942c8d894
-Size (rdrand-0.4.0.crate) = 6456 bytes
BLAKE2s (redox_syscall-0.2.16.crate) = 5d05ce546323fbcedb872cf55da0403e1ae5c6fc354eb2adf263bf7d671971b8
SHA512 (redox_syscall-0.2.16.crate) = 63b5d876baaf99f5cf737679bc6ac7a9e3d8a41aa93f5c59416ce7e3841e2513bff678773553cfe62fb452707f82acc384ea63aec932a31bf94679cd1caddd27
Size (redox_syscall-0.2.16.crate) = 24012 bytes
@@ -1137,9 +1125,9 @@ Size (rmp-0.8.11.crate) = 28829 bytes
BLAKE2s (rmp-serde-1.1.1.crate) = 2d85c0659de5b0ccb2fe087ec03a2730a05a2c537d0d747edc01bdc589b41fda
SHA512 (rmp-serde-1.1.1.crate) = 6b7dc7c17bbf255e692e69cdec6b6efe3c757ef7a6ffdb27defd5b9e831849a3fd969a37709aae845aa60bf90e8d4f779fb7edb1a260988fd9d2092b4fdb1826
Size (rmp-serde-1.1.1.crate) = 30360 bytes
-BLAKE2s (roxmltree-0.14.1.crate) = b79be5d64a34f8421957528e4377884bae38b08c5a1e9744dd21e429531d5504
-SHA512 (roxmltree-0.14.1.crate) = 6ddf07cf54604d5e5feff2ba9c4ba3aeddb3e43f9630e7a66bd01cae7f96255eb678a9d3b7d408bf6677bbbf8243c30c057fb5634e6cef99b445d0022834a6f7
-Size (roxmltree-0.14.1.crate) = 39163 bytes
+BLAKE2s (roxmltree-0.16.0.crate) = a395242d553b07f70a9c121be079ec8b051dfbcce83b263f42a47a4ad61d4050
+SHA512 (roxmltree-0.16.0.crate) = 7136cd557299da961202c45556f9a87ab5c548ddfe57a4c0bf5b449bdf088f0b6dc341a2ea42a5c81e38eea247d1132350b4445fca11dcafabb118042cb9bb98
+Size (roxmltree-0.16.0.crate) = 40718 bytes
BLAKE2s (rstest-0.15.0.crate) = 8ef0ce989031963cfec0f952d38230d100ae1eda846e835e1506b4aa5f27b02c
SHA512 (rstest-0.15.0.crate) = 7ec914263c9fecdeee8a1bd3eeeb8c356a08617f2fb17201d9511e0f0183607158e5fad42b4ef39fba16a9c2c5fd06b95b07282d474da61ad684c232c4f954e0
Size (rstest-0.15.0.crate) = 24882 bytes
@@ -1365,9 +1353,6 @@ Size (tabled-0.10.0.crate) = 150005 bytes
BLAKE2s (tabled_derive-0.5.0.crate) = 90234beb08fdeefacce1ebd8786ab35506a1ad06335936526361f25d9d69d5f5
SHA512 (tabled_derive-0.5.0.crate) = 968c5d7052801b0c36d76b6ccaa4c69c2e8d50f7a4768e9c0d21304088dfd1168e3ce0d8833905764d356170907af4affe6e2adeae7c0f3c8358e032c3f84f81
Size (tabled_derive-0.5.0.crate) = 7419 bytes
-BLAKE2s (tempdir-0.3.7.crate) = dc09385d5ed6c2016bc4115b2a7525ccb43639ea4c69ffeda886544caa26a9c2
-SHA512 (tempdir-0.3.7.crate) = e5b02f7d260ff594fc2dbbd441eb8adfa36ede937f32c8c812b458167c0e49f5cf493c6ebf83ce8007a0aeb97016169fda7f5d2996fecc72f9409d6f463d9bbe
-Size (tempdir-0.3.7.crate) = 11468 bytes
BLAKE2s (tempfile-3.3.0.crate) = 3f8dfc1e86cc3d08789877ed1d8af54dbc0e3857031c552845d34df0dd35338a
SHA512 (tempfile-3.3.0.crate) = ba6faafb2dd56d694efe424752099a2efb50316afc0a4db9fdb7620ae3f1a31dfbb2a7b41724878cb977fa11f7568a406bd3b6a4f7cfc0b88b86b2cc616b953e
Size (tempfile-3.3.0.crate) = 27578 bytes
@@ -1452,6 +1437,9 @@ Size (trash-3.0.0.crate) = 40292 bytes
BLAKE2s (try-lock-0.2.3.crate) = 7293ce5d84b0272de938d6be94e4aace28cdcf2584e617daed1e58fe68a9c068
SHA512 (try-lock-0.2.3.crate) = ebae7ba9227e6fc20499b48ab85169943765342d4790bb4a31ac33a2be0af9401e2854c8e00b9d3b7e225d16875c90700b1c3fa99af07833d3b7a91b7a414fc3
Size (try-lock-0.2.3.crate) = 4158 bytes
+BLAKE2s (tui-0.19.0.crate) = 81a0e89ddaed4153e19a5439b2547478c031110ed804c6b17a20d6e8f997bcf3
+SHA512 (tui-0.19.0.crate) = b90497d06181ca74ad0a976ed57bfd6e6495e6fc96651ee96fe9e326ebf773b6627d87cae07aec26d17800a4274624ad3e835a86c37258c51077c86e667078a8
+Size (tui-0.19.0.crate) = 141279 bytes
BLAKE2s (typed-arena-1.7.0.crate) = 0e8facff05bc6159280566b8dc087462bedc1049446402df6c09bbd93b82249d
SHA512 (typed-arena-1.7.0.crate) = 506a90a11576e5a4135b46c5c4705db461a8ec1bba980c9ea65e8c4399bcc85898b7f81312acf4bc0b24a29d1b940d8dfe0352ad59985153743948616da5ed8e
Size (typed-arena-1.7.0.crate) = 9927 bytes
@@ -1656,15 +1644,15 @@ Size (winres-0.1.12.crate) = 19772 bytes
BLAKE2s (ws2_32-sys-0.2.1.crate) = 46eaf04aad996fd11714a438cad2036248eafcd7ff2d25903dfc48926017f1f7
SHA512 (ws2_32-sys-0.2.1.crate) = 18356861fc595efe7d0180afb8ce7649da35a4f9ba456271d2068679ab258a861af32a2e016e241fbfbf5f6ef0eb33127b26eabfc11428af39506538faa4821f
Size (ws2_32-sys-0.2.1.crate) = 4697 bytes
-BLAKE2s (xmlparser-0.13.3.crate) = 6fe351861f5ab63cd2a3d3dab7df6883917375e724fd67fc9a6ba22546f34aff
-SHA512 (xmlparser-0.13.3.crate) = aefe23681c42b82274d9deed6fb65af12cf815ee150b385220c1184de0d4b588fa1bb02eb54e52cf8336c19bdae771711efc77e016781b19ce97711908fa91f5
-Size (xmlparser-0.13.3.crate) = 25732 bytes
+BLAKE2s (xmlparser-0.13.5.crate) = b9254659a6cd10a8508e0911b0380729c5c55c1cffa94205168085d1c63bdea0
+SHA512 (xmlparser-0.13.5.crate) = 349ebd1945a2b8804a8c6004e45b859cc0a0925c6ce0ca24a7dcddf08622f00f4ca7daa5f9f2e0da2932f630773f83aba8270bba14f4999b1c00306cfead35ee
+Size (xmlparser-0.13.5.crate) = 26225 bytes
BLAKE2s (yansi-0.5.1.crate) = 320911635584dafa034235f47c39057166574bad71fa932fb689f67e63e8ee14
SHA512 (yansi-0.5.1.crate) = 7b33005a066cc612408a65df6533e8718d1de43efc0fd57416a19dc2b811497570e6e18f100fb26073565e395e711518c27de7d644ae64777713f1a102eb16d2
Size (yansi-0.5.1.crate) = 16525 bytes
-BLAKE2s (zip-0.5.13.crate) = ee4ef46046e475079f77dc094c7bf9e75e27d03dc2c58668ff1186ef428dd880
-SHA512 (zip-0.5.13.crate) = b30950ede91cdb1d4ef4f9d6aee8f62a3aa5a1a6422bd10507dfd76edc02c1bd24d41c7bf2ac416a5ee045562cacda0d17cd04938ec02b8be0a0d64acbaf7e01
-Size (zip-0.5.13.crate) = 48237 bytes
+BLAKE2s (zip-0.6.3.crate) = c25ab774f11a84710e9cbd92c742f5f3a83c4a130fc73894f77f60fcb4db8e81
+SHA512 (zip-0.6.3.crate) = b19fd29c8a212f61b6c1810dfef7514d3f346c4589a35b18e8113b864d6bb612342c0bcbffb56dc0f36efc29149b8454b6a5a7ef4db5c13614ab761e18d1bd01
+Size (zip-0.6.3.crate) = 61785 bytes
BLAKE2s (zstd-0.11.2+zstd.1.5.2.crate) = 457697ab32001616cbce03e1a82cb73cf39d5a41dfa26548c8dac5d624903268
SHA512 (zstd-0.11.2+zstd.1.5.2.crate) = d3f053c4acbdb45f3dadc9590db56095c761f0ff8899d22461f664701de766dde2fac2960a4477cd05d0a9c7ec200caa02ff891eb1f04630734996e0c38d10dd
Size (zstd-0.11.2+zstd.1.5.2.crate) = 28987 bytes
Home |
Main Index |
Thread Index |
Old Index