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 Feb 23 07:33:55 UTC 2023

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

Log Message:
shells/nushell: update to 0.76.0

Debugging
We've added a few new commands to help with nushell debugging.
 - ast - The ast command works the same as before and produces an ast for any
   pipeline you give it.
 - debug - The debug command works the same as before and produces some
   output about nushell values.
 - explain - Provides detailed information about pipeline contents in a
  closure

The explain command attempts to explain to you how the pipeline, in the passed
in block, is going to be interpreted. It shows the pipeline and command index,
the looked up and found command name, the command argument data type, and
argument details, among other things. Note that spans are also included and can
be used with view span.

 - inspect - Immediately prints out the contents of a pipeline

The purpose of the inspect command is to help to debug pipelines. It works by
allowing you to inject the inspect command into a pipeline at any point. Then it
shows you what the input description is and what the input values are that are
passed into inspect. With each step it prints this information out while also
passing the value information on to the next step in the pipeline.

 - metadata - The metadata command works the same as before.
 - profile - Recursively profile pipelines and pipeline elements within a
   closure.

Enables fine-grained profiling of individual pipeline elements and recursively
stepping into blocks/closures. The recursion depth can be controlled (default is
1) and it can optionally collect the profiled source segments for easier
orientation and value in each step for easier debugging.

Note: There are known limitations that the profiler can't run. For example, it
can't collect data from subexpressions and loop iterations. It is caused by
profiling data being collected as pipeline metadata and a known bug that
pipeline metadata is not preserved in some cases.

 - timeit (formerly known as benchmark, same functionality)
 - view files - Lists source code inputs loaded into Nushell since the beginning
of the session

view files lists the files and entries loaded into nushell's EngineState memory.
Note the spans, for use with view span and the size of each file's contents
stored.

 - view source (formerly known as view-source, same functionality)
 - view span - View contents of a span

Spans are important to nushell. One of their uses is to show where errors are.
For instance, in this example below, the leader lines pointing to parts of the
command line are able to point to 10, /, and "bob" because each of those items
have a span.

In an effort to have a little more organization, we've assigned a category of
Debug to all commands that participate in nushell script debugging.
Here is a list of commands that are in that category now.

-ast
-debug
-explain
-inspect
-metadata
-profile
-timeit
-view
-view files
-view source
-view span

- "Multiplication" of strings and lists is now supported. (WindSoilder)
Like in Python you can now use the multiplication operator * to create n
concatenated copies of a string or list. Here n has to be an int value.

This can be useful if you want to quickly build ASCII art 😃!
Note that the operation is commutative.

- Dataframe commands are again explicitly separated from core nushell
commands. (#7998)
- Dataframe commands have all been renamed in order to avoid confusion with
nushell commands. It also makes our help commands less confusing.
For instance, you can now do help select and understand how to use the
traditional nushell select command and you can do help dfr select and
understand how to use the dataframe specific select command. Previously this
was a source of cryptic error messages that were confusing to users.

-PATH vs Path (#8003)
We fixed a PATH vs. Path bug in completions, so now you should be able to do
commands like cod<tab> and get completions like code and code.cmd across all
operating systems.

- More commands become plugins and plugins get first-class help support
(WindSoilder, #7984, #7942)
In an effort to both make the core nushell binary smaller and to improve our
plugins system along the way we moved the commands for several less common
file formats to nu_plugin_formats.

To make sure you still have a first-class experience while using these commands,
our plugins can now support code examples in the help and F1 menu.

As a result, plugin authors need to slightly update their command Signature to
PluginSignature which supports the examples and recompile.

- Improved error messages for int and string literals
Nushell now gives more specific and helpful messages when it detects syntax
errors. In this release we've improved errors for string and int literals but
we hope to improve more in the future. #7952

Errors in the format of escapes within double-quoted strings are reported
specifically.
Invalid digits in radix-prefixed int literals are now flagged as a specific
error. The old parser treated these invalid ints as bare strings.

- General housekeeping in the Nu codebase (Hofer-Julian, fdncred, rgwood,
sholderbach)
We are very lucky that we recently had a number of new contributors starting
to help out with bug fixes and improvements to Nushell. We want to thank you
and want to welcome you all!

In the background a number of contributors spent some time improving and
refactoring the codebase to get us up-to-date and make it more approachable for
newcomers. This includes work to break up less readable code in important
places, and a significant effort to get us up-to-speed on some coding standards.
We also updated a number of dependencies and want to continue to improve our
dependency tree. We recently enlisted the relentless help of the dependabot.
Furthermore, we enabled rudimentary tracking of test coverage through
codecov.io. This should help us identify areas were additional tests are needed
and can be a great contribution to the project.

- Breaking changes
- load-env can not accidentally set $env.PWD anymore (#7963)
- The --numbered flag to enumerate entries has been removed from each, par-each,
each while, and reduce. Use the enumerate command added in 0.75 instead. (#7777)
- Plugin system: nu_plugin::Plugin::signature has changed from fn
signature(&self) -> Vec<Signature> to fn signature(&self) ->
Vec<PluginSignature> to support examples on plugin commands. Plugin authors have
to update the relative structure to apply these changes. Normally you just need
to perform a global search/replace from Signature to PluginSignature, then
rebuild and run with the latest nushell version. (#7984)
- benchmark renamed to timeit (#8018)
- dataframe commands renamed with a prefix of dfr (#7998)
- view-source renamed to view source (#7989)
- Plugin commands can now include examples, which necessitated a change to the
plugin signature, which causes all plugins to need to be recompiled for use.
(#7984)
- str lpad and str rpad have been superceeded by fill in order to provide
 alignment (7846)
- from ini, from vcf, from ics, from eml commands are moved to plugin called
nu_plugin_formats to reduce the number of commands in nushell core, you need to
install and register the plugin manually to use these command. (#7942)
- http get -t,--timeout parameter is now -m,--max-time (8088)
- Filesystem commands now print to stderr when using --verbose flag (8014)
- The parse command will now create 0 indexed columns instead of 1 indexed
(7897)


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 pkgsrc/shells/nushell/Makefile
cvs rdiff -u -r1.16 -r1.17 pkgsrc/shells/nushell/cargo-depends.mk
cvs rdiff -u -r1.20 -r1.21 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.28 pkgsrc/shells/nushell/Makefile:1.29
--- pkgsrc/shells/nushell/Makefile:1.28 Wed Feb  1 20:37:38 2023
+++ pkgsrc/shells/nushell/Makefile      Thu Feb 23 07:33:55 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.28 2023/02/01 20:37:38 pin Exp $
+# $NetBSD: Makefile,v 1.29 2023/02/23 07:33:55 pin Exp $
 
-DISTNAME=      nushell-0.75.0
+DISTNAME=      nushell-0.76.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.16 pkgsrc/shells/nushell/cargo-depends.mk:1.17
--- pkgsrc/shells/nushell/cargo-depends.mk:1.16 Wed Feb  1 20:37:38 2023
+++ pkgsrc/shells/nushell/cargo-depends.mk      Thu Feb 23 07:33:55 2023
@@ -1,4 +1,4 @@
-# $NetBSD: cargo-depends.mk,v 1.16 2023/02/01 20:37:38 pin Exp $
+# $NetBSD: cargo-depends.mk,v 1.17 2023/02/23 07:33:55 pin Exp $
 
 CARGO_CRATE_DEPENDS+=  Inflector-0.11.4
 CARGO_CRATE_DEPENDS+=  adler-1.0.2
@@ -110,6 +110,7 @@ CARGO_CRATE_DEPENDS+=       dirs-4.0.0
 CARGO_CRATE_DEPENDS+=  dirs-next-2.0.0
 CARGO_CRATE_DEPENDS+=  dirs-sys-0.3.7
 CARGO_CRATE_DEPENDS+=  dirs-sys-next-0.1.2
+CARGO_CRATE_DEPENDS+=  dlv-list-0.3.0
 CARGO_CRATE_DEPENDS+=  doc-comment-0.3.3
 CARGO_CRATE_DEPENDS+=  dtoa-0.4.8
 CARGO_CRATE_DEPENDS+=  dtoa-short-0.3.3
@@ -141,7 +142,7 @@ CARGO_CRATE_DEPENDS+=       foreign-types-0.3.
 CARGO_CRATE_DEPENDS+=  foreign-types-shared-0.1.1
 CARGO_CRATE_DEPENDS+=  foreign_vec-0.1.0
 CARGO_CRATE_DEPENDS+=  form_urlencoded-1.1.0
-CARGO_CRATE_DEPENDS+=  fs_extra-1.2.0
+CARGO_CRATE_DEPENDS+=  fs_extra-1.3.0
 CARGO_CRATE_DEPENDS+=  fsevent-0.4.0
 CARGO_CRATE_DEPENDS+=  fsevent-sys-2.0.1
 CARGO_CRATE_DEPENDS+=  fuchsia-zircon-0.3.3
@@ -188,7 +189,7 @@ CARGO_CRATE_DEPENDS+=       httpdate-1.0.2
 CARGO_CRATE_DEPENDS+=  hyper-0.14.20
 CARGO_CRATE_DEPENDS+=  hyper-tls-0.5.0
 CARGO_CRATE_DEPENDS+=  iana-time-zone-0.1.50
-CARGO_CRATE_DEPENDS+=  ical-0.7.0
+CARGO_CRATE_DEPENDS+=  ical-0.8.0
 CARGO_CRATE_DEPENDS+=  idna-0.3.0
 CARGO_CRATE_DEPENDS+=  indent_write-2.2.0
 CARGO_CRATE_DEPENDS+=  indexmap-1.9.1
@@ -268,6 +269,7 @@ CARGO_CRATE_DEPENDS+=       nix-0.25.0
 CARGO_CRATE_DEPENDS+=  nodrop-0.1.14
 CARGO_CRATE_DEPENDS+=  nom-7.1.1
 CARGO_CRATE_DEPENDS+=  nom-supreme-0.8.0
+CARGO_CRATE_DEPENDS+=  nom8-0.2.0
 CARGO_CRATE_DEPENDS+=  notify-4.0.17
 CARGO_CRATE_DEPENDS+=  now-0.1.3
 CARGO_CRATE_DEPENDS+=  ntapi-0.4.0
@@ -295,8 +297,9 @@ CARGO_CRATE_DEPENDS+=       open-3.2.0
 CARGO_CRATE_DEPENDS+=  openssl-0.10.42
 CARGO_CRATE_DEPENDS+=  openssl-macros-0.1.0
 CARGO_CRATE_DEPENDS+=  openssl-probe-0.1.5
-CARGO_CRATE_DEPENDS+=  openssl-src-111.22.0+1.1.1q
+CARGO_CRATE_DEPENDS+=  openssl-src-111.25.0+1.1.1t
 CARGO_CRATE_DEPENDS+=  openssl-sys-0.9.76
+CARGO_CRATE_DEPENDS+=  ordered-multimap-0.4.3
 CARGO_CRATE_DEPENDS+=  os_str_bytes-6.4.1
 CARGO_CRATE_DEPENDS+=  output_vt100-0.1.3
 CARGO_CRATE_DEPENDS+=  overload-0.1.1
@@ -351,12 +354,13 @@ CARGO_CRATE_DEPENDS+=     predicates-2.1.1
 CARGO_CRATE_DEPENDS+=  predicates-core-1.0.3
 CARGO_CRATE_DEPENDS+=  predicates-tree-1.0.5
 CARGO_CRATE_DEPENDS+=  pretty_assertions-1.3.0
+CARGO_CRATE_DEPENDS+=  print-positions-0.6.1
 CARGO_CRATE_DEPENDS+=  proc-macro-error-1.0.4
 CARGO_CRATE_DEPENDS+=  proc-macro-error-attr-1.0.4
 CARGO_CRATE_DEPENDS+=  proc-macro-hack-0.5.19
 CARGO_CRATE_DEPENDS+=  proc-macro2-1.0.46
 CARGO_CRATE_DEPENDS+=  procfs-0.14.1
-CARGO_CRATE_DEPENDS+=  proptest-1.0.0
+CARGO_CRATE_DEPENDS+=  proptest-1.1.0
 CARGO_CRATE_DEPENDS+=  pure-rust-locales-0.5.6
 CARGO_CRATE_DEPENDS+=  pwd-1.4.0
 CARGO_CRATE_DEPENDS+=  quick-error-1.2.3
@@ -380,24 +384,24 @@ CARGO_CRATE_DEPENDS+=     rayon-1.6.1
 CARGO_CRATE_DEPENDS+=  rayon-core-1.10.2
 CARGO_CRATE_DEPENDS+=  redox_syscall-0.2.16
 CARGO_CRATE_DEPENDS+=  redox_users-0.4.3
-CARGO_CRATE_DEPENDS+=  reedline-0.15.0
+CARGO_CRATE_DEPENDS+=  reedline-0.16.0
 CARGO_CRATE_DEPENDS+=  regex-1.7.1
 CARGO_CRATE_DEPENDS+=  regex-automata-0.1.10
 CARGO_CRATE_DEPENDS+=  regex-syntax-0.6.27
 CARGO_CRATE_DEPENDS+=  remove_dir_all-0.5.3
 CARGO_CRATE_DEPENDS+=  reqwest-0.11.12
-CARGO_CRATE_DEPENDS+=  result-1.0.0
 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.17.0
-CARGO_CRATE_DEPENDS+=  rstest-0.15.0
-CARGO_CRATE_DEPENDS+=  rstest_macros-0.14.0
+CARGO_CRATE_DEPENDS+=  roxmltree-0.18.0
+CARGO_CRATE_DEPENDS+=  rstest-0.16.0
+CARGO_CRATE_DEPENDS+=  rstest_macros-0.16.0
 CARGO_CRATE_DEPENDS+=  rusqlite-0.28.0
 CARGO_CRATE_DEPENDS+=  rust-embed-6.4.1
 CARGO_CRATE_DEPENDS+=  rust-embed-impl-6.3.0
 CARGO_CRATE_DEPENDS+=  rust-embed-utils-7.3.0
+CARGO_CRATE_DEPENDS+=  rust-ini-0.18.0
 CARGO_CRATE_DEPENDS+=  rust_decimal-1.26.1
 CARGO_CRATE_DEPENDS+=  rustc-hash-1.1.0
 CARGO_CRATE_DEPENDS+=  rustc_version-0.2.3
@@ -419,8 +423,8 @@ CARGO_CRATE_DEPENDS+=       semver-parser-0.7.
 CARGO_CRATE_DEPENDS+=  seq-macro-0.3.1
 CARGO_CRATE_DEPENDS+=  serde-1.0.145
 CARGO_CRATE_DEPENDS+=  serde_derive-1.0.145
-CARGO_CRATE_DEPENDS+=  serde_ini-0.2.0
 CARGO_CRATE_DEPENDS+=  serde_json-1.0.85
+CARGO_CRATE_DEPENDS+=  serde_spanned-0.6.1
 CARGO_CRATE_DEPENDS+=  serde_urlencoded-0.7.1
 CARGO_CRATE_DEPENDS+=  serde_yaml-0.9.13
 CARGO_CRATE_DEPENDS+=  serial_test-1.0.0
@@ -462,7 +466,7 @@ CARGO_CRATE_DEPENDS+=       sxd-document-0.3.2
 CARGO_CRATE_DEPENDS+=  sxd-xpath-0.4.2
 CARGO_CRATE_DEPENDS+=  syn-1.0.101
 CARGO_CRATE_DEPENDS+=  sys-locale-0.2.1
-CARGO_CRATE_DEPENDS+=  sysinfo-0.27.7
+CARGO_CRATE_DEPENDS+=  sysinfo-0.28.0
 CARGO_CRATE_DEPENDS+=  tabled-0.10.0
 CARGO_CRATE_DEPENDS+=  tabled_derive-0.5.0
 CARGO_CRATE_DEPENDS+=  tempfile-3.3.0
@@ -474,8 +478,8 @@ CARGO_CRATE_DEPENDS+=       termtree-0.2.4
 CARGO_CRATE_DEPENDS+=  textwrap-0.15.1
 CARGO_CRATE_DEPENDS+=  textwrap-0.16.0
 CARGO_CRATE_DEPENDS+=  thin-slice-0.1.1
-CARGO_CRATE_DEPENDS+=  thiserror-1.0.37
-CARGO_CRATE_DEPENDS+=  thiserror-impl-1.0.37
+CARGO_CRATE_DEPENDS+=  thiserror-1.0.38
+CARGO_CRATE_DEPENDS+=  thiserror-impl-1.0.38
 CARGO_CRATE_DEPENDS+=  thread_local-1.1.4
 CARGO_CRATE_DEPENDS+=  time-0.1.44
 CARGO_CRATE_DEPENDS+=  time-0.3.14
@@ -485,10 +489,13 @@ CARGO_CRATE_DEPENDS+=     tinytemplate-1.2.1
 CARGO_CRATE_DEPENDS+=  tinyvec-1.6.0
 CARGO_CRATE_DEPENDS+=  tinyvec_macros-0.1.0
 CARGO_CRATE_DEPENDS+=  titlecase-2.2.0
-CARGO_CRATE_DEPENDS+=  tokio-1.24.1
+CARGO_CRATE_DEPENDS+=  tokio-1.25.0
 CARGO_CRATE_DEPENDS+=  tokio-native-tls-0.3.0
 CARGO_CRATE_DEPENDS+=  tokio-util-0.7.4
 CARGO_CRATE_DEPENDS+=  toml-0.5.9
+CARGO_CRATE_DEPENDS+=  toml-0.7.2
+CARGO_CRATE_DEPENDS+=  toml_datetime-0.6.1
+CARGO_CRATE_DEPENDS+=  toml_edit-0.19.3
 CARGO_CRATE_DEPENDS+=  tower-service-0.3.2
 CARGO_CRATE_DEPENDS+=  tracing-0.1.36
 CARGO_CRATE_DEPENDS+=  tracing-core-0.1.29
@@ -500,12 +507,13 @@ CARGO_CRATE_DEPENDS+=     typenum-1.15.0
 CARGO_CRATE_DEPENDS+=  typetag-0.2.5
 CARGO_CRATE_DEPENDS+=  typetag-impl-0.2.5
 CARGO_CRATE_DEPENDS+=  umask-2.0.0
+CARGO_CRATE_DEPENDS+=  unarray-0.1.4
 CARGO_CRATE_DEPENDS+=  unicase-2.6.0
 CARGO_CRATE_DEPENDS+=  unicode-bidi-0.3.8
 CARGO_CRATE_DEPENDS+=  unicode-ident-1.0.6
 CARGO_CRATE_DEPENDS+=  unicode-linebreak-0.1.4
 CARGO_CRATE_DEPENDS+=  unicode-normalization-0.1.22
-CARGO_CRATE_DEPENDS+=  unicode-segmentation-1.10.0
+CARGO_CRATE_DEPENDS+=  unicode-segmentation-1.10.1
 CARGO_CRATE_DEPENDS+=  unicode-width-0.1.10
 CARGO_CRATE_DEPENDS+=  unicode-xid-0.2.4
 CARGO_CRATE_DEPENDS+=  unsafe-libyaml-0.2.4
@@ -538,7 +546,7 @@ CARGO_CRATE_DEPENDS+=       wasm-bindgen-macro
 CARGO_CRATE_DEPENDS+=  wasm-bindgen-shared-0.2.83
 CARGO_CRATE_DEPENDS+=  wax-0.5.0
 CARGO_CRATE_DEPENDS+=  web-sys-0.3.60
-CARGO_CRATE_DEPENDS+=  which-4.3.0
+CARGO_CRATE_DEPENDS+=  which-4.4.0
 CARGO_CRATE_DEPENDS+=  winapi-0.2.8
 CARGO_CRATE_DEPENDS+=  winapi-0.3.9
 CARGO_CRATE_DEPENDS+=  winapi-build-0.1.1
@@ -562,6 +570,7 @@ CARGO_CRATE_DEPENDS+=       windows_x86_64_gnu
 CARGO_CRATE_DEPENDS+=  windows_x86_64_msvc-0.36.1
 CARGO_CRATE_DEPENDS+=  windows_x86_64_msvc-0.42.1
 CARGO_CRATE_DEPENDS+=  winreg-0.10.1
+CARGO_CRATE_DEPENDS+=  winreg-0.11.0
 CARGO_CRATE_DEPENDS+=  winres-0.1.12
 CARGO_CRATE_DEPENDS+=  ws2_32-sys-0.2.1
 CARGO_CRATE_DEPENDS+=  xmlparser-0.13.5

Index: pkgsrc/shells/nushell/distinfo
diff -u pkgsrc/shells/nushell/distinfo:1.20 pkgsrc/shells/nushell/distinfo:1.21
--- pkgsrc/shells/nushell/distinfo:1.20 Wed Feb  1 20:37:38 2023
+++ pkgsrc/shells/nushell/distinfo      Thu Feb 23 07:33:55 2023
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.20 2023/02/01 20:37:38 pin Exp $
+$NetBSD: distinfo,v 1.21 2023/02/23 07:33:55 pin Exp $
 
 BLAKE2s (Inflector-0.11.4.crate) = 2f8b4a805230be3b58267c7fb6b9c26c2ec966378d195673d1128a851cca515d
 SHA512 (Inflector-0.11.4.crate) = f1f6463e033b6d3c16c51dc1e1a3f5569954308b95b59058294b7f9310919bbda797e99e6a07529071bb83f0688867a243997d33795a7136b0af73977004296e
@@ -330,6 +330,9 @@ Size (dirs-sys-0.3.7.crate) = 10597 byte
 BLAKE2s (dirs-sys-next-0.1.2.crate) = 954d4a890f8b3452a4340a93e26b0b04a16397a2b9c15a6f38b88dbf4b836b45
 SHA512 (dirs-sys-next-0.1.2.crate) = b3c40a8e93d4f9f4a890718076e14779aedd67a79da61b466788268c1eaea19aa493f043a7e410f5023a23d5509e639a6fc6681fbee30e252a601091cfffa2d5
 Size (dirs-sys-next-0.1.2.crate) = 10681 bytes
+BLAKE2s (dlv-list-0.3.0.crate) = 7a3236d0c9c0870359a9b8c3e3460de08ea8a8642465872734310d927f5d2980
+SHA512 (dlv-list-0.3.0.crate) = 3efa93e5ee5ee2e480a7e8dbc6d5baeb289279871f8b9f4858a24abf3f8b57cf1fd36369a6b5a1e667c121985197063c8834141b220a58453c8399edc9da4206
+Size (dlv-list-0.3.0.crate) = 11920 bytes
 BLAKE2s (doc-comment-0.3.3.crate) = 3c6c0c2b176af73b7f930c90bde1054195adccd234d74431050b27bcfefff615
 SHA512 (doc-comment-0.3.3.crate) = e98ff9646a3612bd41bb6f278e7b6e9a0c58747f8b82524da814cf51b7f06c76ad4d65b502ac5740e818744abb295f78f15f8262d0b50ced1523f6d1a26939ba
 Size (doc-comment-0.3.3.crate) = 4123 bytes
@@ -423,9 +426,9 @@ Size (foreign_vec-0.1.0.crate) = 5198 by
 BLAKE2s (form_urlencoded-1.1.0.crate) = 9c29b0cdd6391a3b581fbeee81b74b27a21e9d7c000cbecd16f66f97e597772d
 SHA512 (form_urlencoded-1.1.0.crate) = 9e245495dbf235b147e4216b313f2e6a96357d2782a66d71c08c2902c6a065701ca8ecdbb6b2035983a83c44cf36c921b5c71d63af0e02dd39bf5f8347117e11
 Size (form_urlencoded-1.1.0.crate) = 8734 bytes
-BLAKE2s (fs_extra-1.2.0.crate) = 26712832597e7e8951f97ad0e353ca622653763beeeb130dadf75894c77a5152
-SHA512 (fs_extra-1.2.0.crate) = 66670d624394874d7f786f8d362438c53f5b18008909ab8e7a74e82518dbc189e37588836f05f19dcd4718f4c1a5296fdf274380d574b1f475e28891ecdd6c91
-Size (fs_extra-1.2.0.crate) = 29918 bytes
+BLAKE2s (fs_extra-1.3.0.crate) = c7a8a9481929e4b2cc7f5029eabe9d55f53c580f9b39a59a60311c651bd9af18
+SHA512 (fs_extra-1.3.0.crate) = 090d2ace0517b86dd2f54c5491366cbb6e1677f64cf64f024f7dc6a3c42c4f8c54b215e954572e2df10ae7f0e956890ecf7ccbeebf66b645c7647409484c845d
+Size (fs_extra-1.3.0.crate) = 31298 bytes
 BLAKE2s (fsevent-0.4.0.crate) = 83ab233af66e265f6e83fa1946279c7560f3fda6c7ff27ba61ff2560e322a1f2
 SHA512 (fsevent-0.4.0.crate) = 98d5e6998e3ae0cf3e0f383aa1e8f7fadd9b75154753168da4f6b87cc9a37b8830e7bed4b2169993ddf49646c9d47aa022d6af8a8a66370e7fc533932e70855f
 Size (fsevent-0.4.0.crate) = 7292 bytes
@@ -564,9 +567,9 @@ Size (hyper-tls-0.5.0.crate) = 13257 byt
 BLAKE2s (iana-time-zone-0.1.50.crate) = 0e45c05fdacf5b460881a8b79dd69c022c6814b193b77090fe8bab1f50f0fbf5
 SHA512 (iana-time-zone-0.1.50.crate) = 6acdc857a8f32f4ff1a3cc8ffb69bf1e8ec3e0462629183f29601237c9e45657b2f6e1d4f9fe589da8d2b7b058ce085d856ed9ac6c28ef9e7c568089fc8b6b32
 Size (iana-time-zone-0.1.50.crate) = 17151 bytes
-BLAKE2s (ical-0.7.0.crate) = a967d190f134e4dd58d7605bd790e54cb74a81947c1f43b5146c4f473b57850b
-SHA512 (ical-0.7.0.crate) = f74e505e7b981ff1e64c6cd8380c9542b44c52055a5ccce6a83bfaa4d4b8dcc063deba192d6e4b0752719c5609d041d34a4a8357975aa6f550471f8b2efe7305
-Size (ical-0.7.0.crate) = 17601 bytes
+BLAKE2s (ical-0.8.0.crate) = b91e5ec07b27a6a877d450317bdfc9bd4f45ff6601224e1fb6cbdfc77f976a2d
+SHA512 (ical-0.8.0.crate) = f19153885b5a5143ea100d722ef932e796d3b8cf6b3de080e0f0af04d4a2a331efaf6d57fd302aa724b27832632e2e1bc320abc78cfbb4d4866b9d46f0f6dbf6
+Size (ical-0.8.0.crate) = 27853 bytes
 BLAKE2s (idna-0.3.0.crate) = ce38eb711b7c9ad70b2f58c9e70c1edf065593fcc29a34d12af3ac130a5a35dc
 SHA512 (idna-0.3.0.crate) = 9b7cee27811ee52ed9bb39fe82f724742eef2e5370642b6c756bd134c8cbc20bb6faa9f296053672dba8a66f7356a08b2ca99f176407b173e2d566d85d066441
 Size (idna-0.3.0.crate) = 271128 bytes
@@ -804,6 +807,9 @@ Size (nom-7.1.1.crate) = 115818 bytes
 BLAKE2s (nom-supreme-0.8.0.crate) = 0652c3f64d2ba9ce09d297742af98eea1a8e563df48a6611736c33811e4b6c29
 SHA512 (nom-supreme-0.8.0.crate) = f83a92a077081d31ed14290dba49ac803740332dbbd0cceba337a7aaefe54c3b0d02f307ca9d89ec518e32fc9ebf6584b686f16f702ed3050b18ea9dfa93f880
 Size (nom-supreme-0.8.0.crate) = 31430 bytes
+BLAKE2s (nom8-0.2.0.crate) = 1db0005a1d416a3d547186ff755005c443b91136261aa0230c7f4c4a99ced143
+SHA512 (nom8-0.2.0.crate) = 0d4cca8f13978e9101cc2eb9fb65ad879929a5361353c9a04e9850061e788e942948a6ea064c6986440a2576c10ce84daa8aa21d75214f322691da5f63668454
+Size (nom8-0.2.0.crate) = 162020 bytes
 BLAKE2s (notify-4.0.17.crate) = fea0c9389b32ef2430f10e915efba5d728731f2556fcbb0f863a2b1df4236f9d
 SHA512 (notify-4.0.17.crate) = 78fffa1da9fafef40ac92190dfaa71e22b8999bb8bd9425e4d8e9054d234ca0fbaf7726c023987756a3900b00aa9e713b093ba7643374f2ffb20416ce19bd193
 Size (notify-4.0.17.crate) = 54419 bytes
@@ -861,9 +867,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.75.0.tar.gz) = 98ca94bfe6de81444c219b59cb6e262a6c2236f2cd08bc0bba2b8def482af089
-SHA512 (nushell-0.75.0.tar.gz) = 37ed6900e15dc89a4d768ee5ffe13999e595b8ff3e6bd388c3618b4e59735426cea5b752252b5498095c370afa5ef397e0aac4f16b8a4a0c425aa7e412fb5ce3
-Size (nushell-0.75.0.tar.gz) = 2466091 bytes
+BLAKE2s (nushell-0.76.0.tar.gz) = e23974f139b35beb6dbda440ef1a790d6ce1d4e47f7fb16c49204edb820fcc9f
+SHA512 (nushell-0.76.0.tar.gz) = 92801ed4ab81ba50a488177cddd9ca595284e16d7caf78c02df7e6de4a9769aef66fcb8eb9eaf26ea8533a84ddf9af0253ff000c1e4b4b059cf2c66f9fb1fb0c
+Size (nushell-0.76.0.tar.gz) = 2495618 bytes
 BLAKE2s (objc-0.2.7.crate) = e34a570a877d402bef4a22098157a24171ada921812037222da0b82a1424f391
 SHA512 (objc-0.2.7.crate) = 7178870c8e4e9154b4c7b4953b3164946b7ce72c956a02b9ba18889353c72be735824bd73e44a485e42ad5f97994820d9153ac684629342755a6a63711ab5988
 Size (objc-0.2.7.crate) = 22036 bytes
@@ -888,12 +894,15 @@ Size (openssl-macros-0.1.0.crate) = 5566
 BLAKE2s (openssl-probe-0.1.5.crate) = dd4ca2a46ea1abbd1c8fe527ad20f4309b2a606b0a539f2489a3a252172983a6
 SHA512 (openssl-probe-0.1.5.crate) = 7e560314150709a34520472698060c4f29689d4e608dc4dde146140aa690350d3603279c693367deeb0f21ab34ef61956143a3447827a2b7a3d578b9ccd6552c
 Size (openssl-probe-0.1.5.crate) = 7227 bytes
-BLAKE2s (openssl-src-111.22.0+1.1.1q.crate) = e16aa59c56ad5eca33f10eecfdc1b215569f501beceaf84ecd95f00610b0569a
-SHA512 (openssl-src-111.22.0+1.1.1q.crate) = edecb0d0115b8db74447bab4c347761c2ce88436fa2d17ffce938258f7d4d6533995f2029f5466ea730d833dd3ac86e637ed846736184584846411b36f7f242b
-Size (openssl-src-111.22.0+1.1.1q.crate) = 5103224 bytes
+BLAKE2s (openssl-src-111.25.0+1.1.1t.crate) = ec617cc347471e9a72e61f82205a06b53a0813d5756ef7c6bc12a98a5e5dd1b7
+SHA512 (openssl-src-111.25.0+1.1.1t.crate) = 297ee8398611892f12841a0559092fb57eacd8219f78f542b92f27bc11df96029886d6509ec41a28901545013f6f623f21db14625c95d466c5c192e4b6ae6113
+Size (openssl-src-111.25.0+1.1.1t.crate) = 5112453 bytes
 BLAKE2s (openssl-sys-0.9.76.crate) = abaf27859c26a9182981f3825c41bf9ca94048b8427670d36971ae0327486de9
 SHA512 (openssl-sys-0.9.76.crate) = 97be18c56c37484e77f4638454cfb396dc7aaba6c8c710c882dc13b0ae36e44617e6cdddcf8f6a3fca8a5aed28ff9528c59c01f5a48064790491ff985de5e649
 Size (openssl-sys-0.9.76.crate) = 60561 bytes
+BLAKE2s (ordered-multimap-0.4.3.crate) = 9d093b7c0cd07442c0acbd2e83741d5f9bdb57650010f2a85542588717489926
+SHA512 (ordered-multimap-0.4.3.crate) = 92d02f260d912c70bc51a4e943ecf7be7e8211ff515dd6aa6029fbb0d0f67b8c689966b23e32520fc5b437caebab650e18a16cdd8b2a036edc91645faa9e47e8
+Size (ordered-multimap-0.4.3.crate) = 19599 bytes
 BLAKE2s (os_str_bytes-6.4.1.crate) = 81b438a8f1df2054a2f104b644544127b9c552fab4bb3085a13d95db0c280ccf
 SHA512 (os_str_bytes-6.4.1.crate) = 2199502ad24449e08370686a596f905325f5b145e105e8c7bf90ed7729bbc405e065fce62c98eada40f77f0665ca041db41f16cc8e62473501eca32c24e56f43
 Size (os_str_bytes-6.4.1.crate) = 23101 bytes
@@ -1056,6 +1065,9 @@ Size (predicates-tree-1.0.5.crate) = 812
 BLAKE2s (pretty_assertions-1.3.0.crate) = b13b75beb3781a1db1d7b64b989809c0991cb2d065ae7dd0e82ae8284cf02986
 SHA512 (pretty_assertions-1.3.0.crate) = 40a56ae7287552cb66e1066cfb89b26af621f894036b9a0cd49889ec5b25831d52cc07f9e117d905766701fa71786a45955186849d36e00cbdb5f884763efcd3
 Size (pretty_assertions-1.3.0.crate) = 79441 bytes
+BLAKE2s (print-positions-0.6.1.crate) = 253d9c059b80af09dffbc0447768623f921ffe03662c03643d9035e3ac0f2cf2
+SHA512 (print-positions-0.6.1.crate) = c6f3cf45093da391bd02ef312ea03f33fe04aeb001cf827e0c410924ad121e389f6664359a239ebe2ad2e65127b797f506ac017698e389c34085f0afe39ea66c
+Size (print-positions-0.6.1.crate) = 13435 bytes
 BLAKE2s (proc-macro-error-1.0.4.crate) = 2877169f24a0bf3a09d9bfd388ac5d39082672d9258c1c96a851c1bc166b234a
 SHA512 (proc-macro-error-1.0.4.crate) = 8a47bc9d3e24e9561d1e384d8f5a633284c2cf9b5e6733c5f9d1dbfe1870ccc8e2152482852e50b551cecb68e009148585b910ffb0508a7b4875598eaf8657db
 Size (proc-macro-error-1.0.4.crate) = 25293 bytes
@@ -1071,9 +1083,9 @@ Size (proc-macro2-1.0.46.crate) = 41954 
 BLAKE2s (procfs-0.14.1.crate) = ec08edd74afff2413366429ad8fcacbf807404c9a740aead38d5887828c86022
 SHA512 (procfs-0.14.1.crate) = 736fb1da5d90205e97077180ac589a7557527d5ccdcf699d8e6efeaded31946ab6578f69de1284102cb41e60919aa03c65cec25671d943d57eb47c4cd2b99e04
 Size (procfs-0.14.1.crate) = 113661 bytes
-BLAKE2s (proptest-1.0.0.crate) = f380cbb7cbc366dadf655c650d660eb33215c3254511c8dafb1fa93a5a987ed1
-SHA512 (proptest-1.0.0.crate) = c8a45bdace0e836db5ec0113f3794bbcee2b75fa5b06caf84808df7a052ef117f22b48fe12413f86750da710d5e5c88457a77ecfce04e1e8fc5a76dbba3d79af
-Size (proptest-1.0.0.crate) = 189237 bytes
+BLAKE2s (proptest-1.1.0.crate) = 924dcc2a9e5f31193bf77cdb7d516cd5895f56e16273059e88be20adcd05d84c
+SHA512 (proptest-1.1.0.crate) = ba7eda462db51b7202db2ec53f52e1fc9c2cd92dde588f155fe30524e25569e05ae558cb7076744cd2165e72dc5be7b883f4dd7dc1e8d80a6e791f989d9f4e35
+Size (proptest-1.1.0.crate) = 194125 bytes
 BLAKE2s (pure-rust-locales-0.5.6.crate) = 643d859b941a8eae791bfd7e38fc43614852906ab794756cfa99d636a5cc8ef6
 SHA512 (pure-rust-locales-0.5.6.crate) = cb7855f243dfaee0c2f2dc70fd4eba77881f7a7309dabb60d40eea14ed2eec620385129c9bab3abd363d6ee915afc22a849533a833feb885862cf2f0e7b06a76
 Size (pure-rust-locales-0.5.6.crate) = 159349 bytes
@@ -1143,9 +1155,9 @@ Size (redox_syscall-0.2.16.crate) = 2401
 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.15.0.crate) = 3cf5fa47cc110f359c459ec317cd3e929f479bbebb40826008e4ccc66a176a9b
-SHA512 (reedline-0.15.0.crate) = 7fb18bf555a366719c8ea09448830c2e2e35fd9dd4bebe28f926afc47009a0e4885a37768bd2906ac1addd84ac0c029b4395a6493e403216d7187338a27dab98
-Size (reedline-0.15.0.crate) = 107018 bytes
+BLAKE2s (reedline-0.16.0.crate) = 77b5240b6bb2264b637e7ea12c537b0d135e5fdf3f2660dd986a69b51aede526
+SHA512 (reedline-0.16.0.crate) = 631de7ea0623e1da11aad010add1191b7d274bc702ab241618d6a691e4eacebdcfb03b3c497ac7bba48f406b52372331aeb17e01d2bad3c3fade6e55ce8ef787
+Size (reedline-0.16.0.crate) = 107783 bytes
 BLAKE2s (regex-1.7.1.crate) = 7ad242279a4a1ee5642093df0cbbbc749c6eb71e4e5144dd062649ba72f94ac3
 SHA512 (regex-1.7.1.crate) = ee19bc6d24b981a151324ad4115488383227ec33dfba0225b35b6252f0d363b8d906db59a45170139c7a687fe681a983c2392d2921c7365db38c7c0e9745066f
 Size (regex-1.7.1.crate) = 239648 bytes
@@ -1161,9 +1173,6 @@ Size (remove_dir_all-0.5.3.crate) = 9184
 BLAKE2s (reqwest-0.11.12.crate) = 0c9187ab7c0892bfea454c613a6a54cb5fd369ec7341c178c4bcb5bf9fbd4e83
 SHA512 (reqwest-0.11.12.crate) = 7ce5e08b580beb3f514c913e3f931242cb6be27a3520285003d054e6ca2efd31eeb469aecd049569e46b7e12c6ee884f5cbcd9665c1e868a83d9bfa4c77e5d03
 Size (reqwest-0.11.12.crate) = 143820 bytes
-BLAKE2s (result-1.0.0.crate) = 5a093b9e097bd6ca64212820127f33c2edd96824ef248c236002cbd792339e2c
-SHA512 (result-1.0.0.crate) = 75354aca4a29fe544d2284039a22cfca3e386923477175984d589c90e828117a9d953631d57794f7070243eab3d8ba3c6c72c35e3147413fff29b04928dc67ef
-Size (result-1.0.0.crate) = 4156 bytes
 BLAKE2s (riscv-0.7.0.crate) = 20f5904c5a60c7d31e952cc2038ff0bc39fb91fe7153283565cc63af54065658
 SHA512 (riscv-0.7.0.crate) = 2d7632ce04742bd852d8a0159eb3bdcd000f23595726bfed2e9f91da5cb2b0d251613338164950fc9cf1c547de33d1a07744a3c5729ed2d4328002648f6e43a9
 Size (riscv-0.7.0.crate) = 149655 bytes
@@ -1176,15 +1185,15 @@ 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.17.0.crate) = c09d67e587b9a3fac2bff3225e892bbcc3363fc807ebd60e0cc93369a59123dc
-SHA512 (roxmltree-0.17.0.crate) = e264887f3b5bcb8aea47e6cde767fffeb586cc155f373be7194bf3eb3c6d7e301dcc7266a63dcb5e25828e324b787cb2ec9f9c2e5b69a1ffef371ea7e4298d0b
-Size (roxmltree-0.17.0.crate) = 41841 bytes
-BLAKE2s (rstest-0.15.0.crate) = 8ef0ce989031963cfec0f952d38230d100ae1eda846e835e1506b4aa5f27b02c
-SHA512 (rstest-0.15.0.crate) = 7ec914263c9fecdeee8a1bd3eeeb8c356a08617f2fb17201d9511e0f0183607158e5fad42b4ef39fba16a9c2c5fd06b95b07282d474da61ad684c232c4f954e0
-Size (rstest-0.15.0.crate) = 24882 bytes
-BLAKE2s (rstest_macros-0.14.0.crate) = e68442cf805eef61df07ccd87ee215ce54f98d7df1dc4631a3ab10197d424611
-SHA512 (rstest_macros-0.14.0.crate) = 0e24aaf33e80617f78583bca8666ff545f6c84dcd1311c9ecca65d2a13e17b9090244ab237fb5eb77a603ea01b0ac34193ebbda8163d1fc4c440203f8c799611
-Size (rstest_macros-0.14.0.crate) = 45914 bytes
+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.16.0.crate) = e28bb07370308756641902f34b44c0f5f072ce04c620e5eec4322c59a77712b6
+SHA512 (rstest-0.16.0.crate) = 2615be7aafa9393c4b8f5050431cb1b81ebe6c9df911cf89b50280229fd0f01601575892aa1b22de2477d9fa8acc0c49e51be29d6fc5d5064d937e95de42d2e7
+Size (rstest-0.16.0.crate) = 25456 bytes
+BLAKE2s (rstest_macros-0.16.0.crate) = 0e060a1a00124246e2342b8dd7f4671aad70ef7012220ed640d05da4d201947a
+SHA512 (rstest_macros-0.16.0.crate) = 000f86fabcf6ea480bd4b7e895deafdd5f21032f46af83402c466825e41181ead311d19650c295156b74ffe2f22b1f2b268224cd05e5e9fdef45bf52dfce87a1
+Size (rstest_macros-0.16.0.crate) = 46803 bytes
 BLAKE2s (rusqlite-0.28.0.crate) = 14aaabfa607c6fdb89199e662dfdacaf7935bdd0d6f4c830ee3ba212533827d8
 SHA512 (rusqlite-0.28.0.crate) = a38205b2437ffb50bf8a14304b4a30a62993957a348f03b37d09fabb9269fcbdb35dafab496f7cecdcefb7353720ffc0580822d9b231e0f75cee23b6f7344857
 Size (rusqlite-0.28.0.crate) = 137504 bytes
@@ -1197,6 +1206,9 @@ Size (rust-embed-impl-6.3.0.crate) = 459
 BLAKE2s (rust-embed-utils-7.3.0.crate) = bf49f0889fc4e237e84b70915d69b050227153c32bd25552af07b9fa92192a87
 SHA512 (rust-embed-utils-7.3.0.crate) = 07f6a14659d28b3bdd9aa1e845a139a58681616b42a5cb31ab2d949b1700c8ce5e2dce8d8918a72c32c34dbb07ce960de13c26bdf873859388f871893a5f2419
 Size (rust-embed-utils-7.3.0.crate) = 3062 bytes
+BLAKE2s (rust-ini-0.18.0.crate) = 1721a2acf24db72e49fede2b07681a91aed6b7c25e63a32cf156e3d8f53ba175
+SHA512 (rust-ini-0.18.0.crate) = 2907d0891ff2164deacb2f217b4b8484bee9b2c2d32c354518e9b4d74069639bab55190d0d8ca6fb0751180cf2be1477ed9b100e3a5cc9f02af52ea26f32ccf4
+Size (rust-ini-0.18.0.crate) = 15439 bytes
 BLAKE2s (rust_decimal-1.26.1.crate) = 0e9c1dcdf4e2b630448af1b6534301111ac8912131c1f56b64e9ed24505673e9
 SHA512 (rust_decimal-1.26.1.crate) = 776051a651af1c7bed2cc393c1538fac1900ed947e21f6846480b2f93b1ac651b6a4b45c601f1a8b33c6a8d255b798c4bbed4a1cdd4e79ddd0c0246d03bfa46e
 Size (rust_decimal-1.26.1.crate) = 117921 bytes
@@ -1260,12 +1272,12 @@ Size (serde-1.0.145.crate) = 76568 bytes
 BLAKE2s (serde_derive-1.0.145.crate) = 27531c3c4900176c780e275b4c89436e7d9ed109973341c754d5ca45441e3392
 SHA512 (serde_derive-1.0.145.crate) = 267389f8cd6d3a7b7d4a4d3226346999294e2fbef7446ff1cd1183dfb4fd17409f5891f6c2cae113b79cffdaca07f2037fd2f4108f93723e6baa5153bb9a61c6
 Size (serde_derive-1.0.145.crate) = 54860 bytes
-BLAKE2s (serde_ini-0.2.0.crate) = bab344eb95ff452f60fe381e85393684389d5252b0dcece57cbd892629c01be6
-SHA512 (serde_ini-0.2.0.crate) = f1889fffb743b97da434633ad7af4d24ef9e22005bcdb5051e00802ddcd2be92567050123be2059a6986ae65bfca4090dc2b157d87c26ebc67c4ff785db8b347
-Size (serde_ini-0.2.0.crate) = 10691 bytes
 BLAKE2s (serde_json-1.0.85.crate) = 4c36adea38dd3b97868158824d6569ddecef68df2c72d710b596c27be7737f34
 SHA512 (serde_json-1.0.85.crate) = b9ba5c8f5e5c977d31c720995317c99486897a064993784e8abd4e35e0c9ccf20d421552b4436cd88420b5e6fe1d7ebc411bbc2e803cf1732e133c29365834bc
 Size (serde_json-1.0.85.crate) = 144635 bytes
+BLAKE2s (serde_spanned-0.6.1.crate) = 9054cdecc8ba25789d1a138c6797cda21a5428235ece03a2800403ae8a84f0c1
+SHA512 (serde_spanned-0.6.1.crate) = 6271aa2af243021002a10cdbd16cb081bf10ab53a61cace104182eb4f28e0c0d7c447b7dcedb350ce78debf5ed6ce6502cb823ae9177d98c5288310094eb22d9
+Size (serde_spanned-0.6.1.crate) = 7828 bytes
 BLAKE2s (serde_urlencoded-0.7.1.crate) = 4d10ffcb9e7dc7e4f2d2e0ac6596c7c9f3b12e3f05799bb5219b0f1e0acd7629
 SHA512 (serde_urlencoded-0.7.1.crate) = b209ad01b6565e95c1d5b431a3f4f8a0df3d11c2a06a44123048bfa4b34ebb6807eec593f0c1c89de3a06ac3786a14747df9c70b4f4d5e4b72b4feb53084eb60
 Size (serde_urlencoded-0.7.1.crate) = 12822 bytes
@@ -1389,9 +1401,9 @@ Size (syn-1.0.101.crate) = 236599 bytes
 BLAKE2s (sys-locale-0.2.1.crate) = 9bf8bf9b56c526ae24fbaf8269fe4ccd56f3e20eacba93512ad23db54b5ea23c
 SHA512 (sys-locale-0.2.1.crate) = c2d67165f609320692fc8938931996a775aeba7fb319246c8340010b33994fc2f637beff68a0c7fae26e7a3d8b19f43770e2585263df92f65bcad7f4666a0fa9
 Size (sys-locale-0.2.1.crate) = 13014 bytes
-BLAKE2s (sysinfo-0.27.7.crate) = 82adb3c2bc464ee491b4f07869b1147c05679adc875838000f51c37aca81cee5
-SHA512 (sysinfo-0.27.7.crate) = f96f8a1717fe47c3c876b42abf5b56badff27c940da6e50c5c83e3becce3292306c203f1ec14656ccf6389c89a43b4194082d398a285c58e840f392e99139cdd
-Size (sysinfo-0.27.7.crate) = 145375 bytes
+BLAKE2s (sysinfo-0.28.0.crate) = 2c96fc21298d2c9919171252f8d2aee77f142366c2b0932e1f4baa56580ac708
+SHA512 (sysinfo-0.28.0.crate) = 85687f7809d52209e38aa53432125b29dd193c13a48439204ff747564dce12bab1675c5f148b5001b0a5d9f30e91ec93265dd905248bd361e4340228a3fc6de5
+Size (sysinfo-0.28.0.crate) = 150250 bytes
 BLAKE2s (tabled-0.10.0.crate) = ff6394722bff5e298fbceddaf1ad2561c8935cdf59c770fc5d85df398e2844b0
 SHA512 (tabled-0.10.0.crate) = f511fbebfe0837148ef2cdbca428667be9bd8780c088e2d8e92bb854fa6c1e63a289738a3abbdaf08909dfd8bce69efca421c0caf24fc6b6001702effea0e920
 Size (tabled-0.10.0.crate) = 150005 bytes
@@ -1425,12 +1437,12 @@ Size (textwrap-0.16.0.crate) = 53722 byt
 BLAKE2s (thin-slice-0.1.1.crate) = 3b11b30b2345f660cdae5d5e56acfad02cddabcdb96773b67dba111e68d077f7
 SHA512 (thin-slice-0.1.1.crate) = 27b9e6b2a8485b3f89f659d80d67ccb96370f3371996e39f97784c40bdd7fef5429fb96f48d9c045eec5906051708f169fe4ca8f5f546a25e5f6859cafa42925
 Size (thin-slice-0.1.1.crate) = 4484 bytes
-BLAKE2s (thiserror-1.0.37.crate) = f4f34c9b53bc7ae89f19cd4660913a5275bfb16c974b3c5d780b3979e54c2a9b
-SHA512 (thiserror-1.0.37.crate) = 07f0cf9da1bf1029d70c1b6f0c54bc41ed759214683f35cf6b321ec2d69173e3da0abf80a692115a1e4630400b1fbf462878053853fdc6026edb40f7e13be72e
-Size (thiserror-1.0.37.crate) = 18752 bytes
-BLAKE2s (thiserror-impl-1.0.37.crate) = 2e6001fce56c8d2e773d70e87dc3db3c5b31881174cca0595b112a35dc585f68
-SHA512 (thiserror-impl-1.0.37.crate) = 37d90875118fe45b51afa89dd0acfbe4d9852b899ad391b419b5181a92bda115cf5569ffef57caf6020964d5d847c2b1f191c99e2c0caf7d4166f531bd19f952
-Size (thiserror-impl-1.0.37.crate) = 15428 bytes
+BLAKE2s (thiserror-1.0.38.crate) = 0f15dfe5337ebc0b4bfeededbb80107802a0f6d761604a53a5b6ca69801f5664
+SHA512 (thiserror-1.0.38.crate) = 95b8ca682b579834a04058f03ed0c994ccef426d75e0fcc28ee47151d343da25e8fe31f8157744d942aa54652115f477fc6037f91c581dbc127b829cc96476ce
+Size (thiserror-1.0.38.crate) = 18947 bytes
+BLAKE2s (thiserror-impl-1.0.38.crate) = c68fe963e992d4b2c4fa5e9fad9be998e29d4373980dd0c64f932cf28b058d6c
+SHA512 (thiserror-impl-1.0.38.crate) = 628aa28404a181b384ac6a11a433829a5481d97face5bc1704349414f36e93440738122fca716fdf878719870d10e0cf8d495df6b1d40913e985c2824cbc3aba
+Size (thiserror-impl-1.0.38.crate) = 15429 bytes
 BLAKE2s (thread_local-1.1.4.crate) = bfe0b6715ed4534b4ce88a19a6ca1bf287ed0943adad0d6f65c9e0e8ab4dcf6b
 SHA512 (thread_local-1.1.4.crate) = db7ff3eb88a73d9313dd58d72397614c5aae6be1d64ead7f16535cae2857be3b27d189e7955308591ec64a0d67777fd2a62a2b124ca73facb9a2d8e0458bdbb5
 Size (thread_local-1.1.4.crate) = 13106 bytes
@@ -1458,9 +1470,9 @@ Size (tinyvec_macros-0.1.0.crate) = 1817
 BLAKE2s (titlecase-2.2.0.crate) = a014f280141e58784ddcb60070e19722b9f57225d81f61a171e319ff2953aa58
 SHA512 (titlecase-2.2.0.crate) = 0de7a8804fc0720f8bd44c35473538e81abd5abaea36eb36e90d23a9311070ca98f135baf2c1443569373ed2ba8bcd2c3f0d981084ee9367128884a2dc6c05de
 Size (titlecase-2.2.0.crate) = 7817 bytes
-BLAKE2s (tokio-1.24.1.crate) = 4b9ce66dd424594363bb546687b063b223636396a82e2c091840b8fc715e3057
-SHA512 (tokio-1.24.1.crate) = 6b423a36ab8eb27ad05eb059833da5399c9d3e0a9e90c1d2b8263538764ac839d5fb61b2b515e9ebd1692b7defe84e0321e0b552091e488f1ec5b5e0117787c2
-Size (tokio-1.24.1.crate) = 625490 bytes
+BLAKE2s (tokio-1.25.0.crate) = b2f6f5df8c08e5912f05109b37b68da1ed63d83613c145b2261098bc33096615
+SHA512 (tokio-1.25.0.crate) = ff53b5688a6b275ac02b0797eb3967e7ec6764f13373717e4b25623b4ddd8ca964fb2e30827bfe85de20a5d7a19b0408a6a5565d9199cedb6e00fa83c21b7f6c
+Size (tokio-1.25.0.crate) = 626886 bytes
 BLAKE2s (tokio-native-tls-0.3.0.crate) = 688684ea2cee4bb7f413ddf27c408e255aeac2a1c7edf120d280ee18a3eb0499
 SHA512 (tokio-native-tls-0.3.0.crate) = a8aa7586f15a3347ba9152497db84a098e751797c06df1a75d9b108689e14d6692b4efc6e5b49b5bf8f8fdb3bfc4f1157f56b3b0c9d9e753a8b31a61e65dfc4d
 Size (tokio-native-tls-0.3.0.crate) = 20759 bytes
@@ -1470,6 +1482,15 @@ Size (tokio-util-0.7.4.crate) = 93424 by
 BLAKE2s (toml-0.5.9.crate) = 47ed3419b2f8ce5103881721e73fac378a7efd6ace9098234a02f518fabdf35e
 SHA512 (toml-0.5.9.crate) = 7151bcafbe2bdb1d2bb91562daebd357c884819af047843f1b4a56bc3812d4153eaf70683d0f9bff51bd1048700920322d64d41da13ebb4cbf34f0f7822d7ce7
 Size (toml-0.5.9.crate) = 55667 bytes
+BLAKE2s (toml-0.7.2.crate) = c6f9824607c84d5fb69b5a1d5ebba73a91eeebfe39d52fef9d40407fc0de7ea9
+SHA512 (toml-0.7.2.crate) = 23d7d3276d7a1aec9e757d7fbf0c7147c90a8259498a11bb7f1a600193e0124e0828635d0cf7b59ed63ed906e39bbe078d91a33dc62d7f48e15ff797ef5866a8
+Size (toml-0.7.2.crate) = 47107 bytes
+BLAKE2s (toml_datetime-0.6.1.crate) = aaf1dffd088bb0b2eea5e5d89315653e7f1d25d4ad39488a09e92948cfd76682
+SHA512 (toml_datetime-0.6.1.crate) = 024fc32f5c3b8efa764bc3fc59af710627513ba2e536f01f227d36661eaee099ed78320ea65b15a15e39c0fc30ff2b44c501f96d5a2618034daeb290524694e0
+Size (toml_datetime-0.6.1.crate) = 10765 bytes
+BLAKE2s (toml_edit-0.19.3.crate) = 238da18be1e6af78f688fe779b31ae497f078626295750d6dc5324efd975377f
+SHA512 (toml_edit-0.19.3.crate) = e3e6e50697b3e9c45c42a9e349baae6b6a2b1efd2248be3d438a85e8e22616e3c1a4763bd5fa0e3121a43c0fc9d376f76167cffcfe9834366013f148f0328870
+Size (toml_edit-0.19.3.crate) = 93962 bytes
 BLAKE2s (tower-service-0.3.2.crate) = b5c693fadac8e513b9d8f2b9aa4364d23dff6f10d4412481b3ea730ec43506e4
 SHA512 (tower-service-0.3.2.crate) = f4578421603067fa708c4ad9eca5ca096b5262b6d51a404f37d9fbb6c64f027cec6114991e4b7f8324cb756c033971a384f1804add28e00d0cd6b2ee01d9e005
 Size (tower-service-0.3.2.crate) = 6847 bytes
@@ -1503,6 +1524,9 @@ Size (typetag-impl-0.2.5.crate) = 8680 b
 BLAKE2s (umask-2.0.0.crate) = 6079694f1b8b5e74a591ff26ef28566b0a6b40d945c90b8b84e3faa533fb4603
 SHA512 (umask-2.0.0.crate) = 819fc76df67f58bed7e8508405484c703e1961f04d9c37eefea0657957f1944f068972f209df506c7426bd5135956182517c8cc105a8206af2c8a89bb6faa1a3
 Size (umask-2.0.0.crate) = 5496 bytes
+BLAKE2s (unarray-0.1.4.crate) = ba4c2ad15e23e675dc2e52cf8b376669362554c8c24638c7e586743ec0129e1e
+SHA512 (unarray-0.1.4.crate) = 373d16e9688938762c61cc9056a50badfde417f64385de1949678333cf9465cc496a357707989da83ee5e4ab041a89688fcd3ab9dfb9c6ec66446c9f5b56b630
+Size (unarray-0.1.4.crate) = 12895 bytes
 BLAKE2s (unicase-2.6.0.crate) = 389082bf2c60fa4668d7b943d6eebc3a78d540e5f1525582ffbad9b7eee8b024
 SHA512 (unicase-2.6.0.crate) = 7e76a5f344e32c56cf87223585d87a56c79627b52bba0b29eb6de82de874b2964accededa8e9b5741f57944b6750fba5c61e679a50d4fd5a5646f431e2f4f188
 Size (unicase-2.6.0.crate) = 23478 bytes
@@ -1518,9 +1542,9 @@ Size (unicode-linebreak-0.1.4.crate) = 7
 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
-BLAKE2s (unicode-segmentation-1.10.0.crate) = 47e55ed2ba722d1c0c80de12c86f97b7a342e10f6ada52805e91fc6b6fc7be10
-SHA512 (unicode-segmentation-1.10.0.crate) = e6a1baacb557a5a7ed7ff780c542c5947eb473763eb2a6018cb1e0a1abb9f4bf3f8073610e4897393f15df076f6657a0f162a5c5bb7ed5f3b3fd832e533a522c
-Size (unicode-segmentation-1.10.0.crate) = 93893 bytes
+BLAKE2s (unicode-segmentation-1.10.1.crate) = 1fbf059d99b61c44c6434f04b690268876af091fabb9b89bcc26ff83442b14c5
+SHA512 (unicode-segmentation-1.10.1.crate) = e96224bba73fe9a167bbf226bb13fe5bea085765a90f7232cb20b42f3c584242b7291aeba1eb8edbe2ae40e5bee2f4714f434324f79316b22e8437c77a50e86b
+Size (unicode-segmentation-1.10.1.crate) = 98416 bytes
 BLAKE2s (unicode-width-0.1.10.crate) = e66d8140c18f2e4f3e4eee069114d5d3679b5885bd0fdff01989b7ce1b35983d
 SHA512 (unicode-width-0.1.10.crate) = 9836a8d489d18ea1ecfe1957ed6d5da7dce825e138cd1848aef093fa8d2eb83fcf01eabb1a2446df4f5ede4e67316e9e81b5d58b59d4e8c5d67870e8fa5dca3b
 Size (unicode-width-0.1.10.crate) = 18968 bytes
@@ -1617,9 +1641,9 @@ Size (wax-0.5.0.crate) = 62247 bytes
 BLAKE2s (web-sys-0.3.60.crate) = 3749eebcee51ad0d75b5fd3a1be8cc805fa0cfd9fcadbe0306f9d8866f4ae0f3
 SHA512 (web-sys-0.3.60.crate) = d883363f99300e2d50bc5bf198f0fb8d6c53e5a778217e340573560ac07db26a71c98419fa2ced32820472126d6f97ad5773ad082521be0a1c9a374af9d61df9
 Size (web-sys-0.3.60.crate) = 700485 bytes
-BLAKE2s (which-4.3.0.crate) = 69f3e44058d0886dc94c0dcacd5b0998e2d8a188df8130ac4a18a1b02c348111
-SHA512 (which-4.3.0.crate) = cad05bd43dfcf9e50fd6e3b9dcd5d9a987175a0f44adbf204079117b70d0b42e6483e635287924698c51d0452f168e48e041453f18ff5720c0e2ec4c734d2578
-Size (which-4.3.0.crate) = 9635 bytes
+BLAKE2s (which-4.4.0.crate) = c75133bc3e19fe69aba6ddd055a532a43f470ed513d9f1d9e83b7d7886dbfbca
+SHA512 (which-4.4.0.crate) = 8380e5ea79f7768c8b1479c2fbb6e6c8b232f3a8d43b6554b78a370f302fb396d53842678d760ce9fc720fe607cfb9da3e0da4180e4a6ecfef48119105555fd7
+Size (which-4.4.0.crate) = 10889 bytes
 BLAKE2s (winapi-0.2.8.crate) = aedaa087201717710fb86afee2fc3c0d7494c5a55a02bcdacf606c2948189f3b
 SHA512 (winapi-0.2.8.crate) = 115e6f027cdd4a56f77ca24f4ab249d2a6cac1e1f955c826a9b6ee05db4861790a533f5e674aebbb540370fff52ed41618c2cd7c906e73200e92df213109cebe
 Size (winapi-0.2.8.crate) = 455145 bytes
@@ -1689,6 +1713,9 @@ Size (windows_x86_64_msvc-0.42.1.crate) 
 BLAKE2s (winreg-0.10.1.crate) = 6932ce51a190f71d7f3d28a5e2e11f3406b5e22f5933ec4e490783ffb67cccd5
 SHA512 (winreg-0.10.1.crate) = 09f2d18f62c3c427ebed40d667b672bb778629502ad3c39541f324b2d5ac41f0822c98b7e5320314144130580da46f1e8e51928941850e7d4af28455a564360c
 Size (winreg-0.10.1.crate) = 25725 bytes
+BLAKE2s (winreg-0.11.0.crate) = cb9f1922913451bd6d064e49dad64cfbaed87d390bc2f572e4d91dc292c64e51
+SHA512 (winreg-0.11.0.crate) = f8c3e1582fb3cca89b898be0e3c84bf921fbf56bdbf664c8fe885f1cdfeed2c9418a9dec141123e31f564dd069477e946d3da68908ae2656fe9147df2cd90602
+Size (winreg-0.11.0.crate) = 28166 bytes
 BLAKE2s (winres-0.1.12.crate) = 6b1d1857d9cbe3d4d3e1e414860bcfb543b4344f91b55e4a98ef26dfa3cc76fd
 SHA512 (winres-0.1.12.crate) = 9f61edafb4a262b56d130e48ac6bba94f5a432bf0a8c20243e6c8fa98c3f9e0d2ab00a77b35a2e49dd63585a272af597e236e089641b5f488760ac42d22f5a67
 Size (winres-0.1.12.crate) = 19772 bytes



Home | Main Index | Thread Index | Old Index