pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/textproc/git-delta textproc/git-delta: update to 0.11.3



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ade0ef9a6f7f
branches:  trunk
changeset: 371784:ade0ef9a6f7f
user:      pin <pin%pkgsrc.org@localhost>
date:      Fri Jan 14 10:36:08 2022 +0000

description:
textproc/git-delta: update to 0.11.3

0.9.0
=====
With this release, long lines are wrapped in side-by-side mode, thanks to a
far-reaching series of contributions by @th1000s (see #515). No special
customization is needed, but sophisticated control over the details is
available: see --wrap-max-lines, --wrap-left-symbol, --wrap-right-symbol,
--wrap-right-percent, --wrap-right-prefix-symbol, --inline-hint-style.

The long deleted line in the left panel overflows by a small amount, and the
wrapped content is right-aligned in the next line. In contrast, the long
replacement line in the right panel overflows by almost an entire line,
and so the wrapped content is left aligned in the next line. The arrow markers
and ellipsis explain when and how text has been wrapped.

What's Changed
-Fix the empty result issue in add -p by @norisio in #664
-Recognize GitHub SSH remote URLs that don't start with git@ for hyperlinks by
 @spaarmann in #668
-Terminate process gracefully on error in diff() by @dandavison in #685
-Ignore ctrl-c (SIGINT) to avoid leaving an orphaned pager process. by
 @dandavison in #686
-Remove unnecessary borrows by @benarmstead in #692
-Fix computed values to be computed after all set_options by @ulwlu in #690
-Make it possible to jump between files when navigate is active by @dandavison
 in #684
-Fix empty line highlighting by @th1000s in #642
-Fix deadlock in git diff mode by @dandavison in #695
-Support insteadOf replacements in git remote URLs by @dandavison in #694
-Do not suppress submodule diffs by @dandavison in #699
-More minimalistic display of submodule (short) diffs by @dandavison in #700
-Fix hunk header when line number is not requested and navigate is enabled by
 @dandavison in #710
-Display removed file name in file deletion case by @dandavison in #717
-Remove superfluous lowercasing of feature names by @Tak in #718
-Option to set the background extension mode to ANSI or spaces by @th1000s
 in #512
-Add side-by-side line wrapping mode by @th1000s in #515
-Width can be an offset from the terminal width by @th1000s in #727
-Linenumber refactoring by @th1000s in #740
-Use fatal() to exit with errorcode 2 by @th1000s in #739
-Re-enable ANSI fill by equalizing panel sizes by @th1000s in #742
-Update syntaxes and themes from bat v0.18.3 by @FnControlOption in #702
-Line numbers and side-by-side mode by @th1000s in #748

0.9.1
=====
This is a followup to release 0.9.0 fixing a bug in the --help text emitted by
the 0.9.0 binary (see 3aab5d1).

0.9.0 was a major release adding line-wrapping to side-by-side mode: 0.9.0
release notes.

0.9.2
=====
This release fixes a regression introduced in 0.9.0 affecting the use of
git add -p when submodules are present. See #755

What's Changed
-Do not reformat submodule diffs under git add -p by @dandavison in #756

0.10.0
======
New features in this release:

-delta displays output from git grep and rg --json ... | delta with code syntax
 highlighting and navigate functionality. See README#grep and #774.
-delta displays output from git blame with code syntax highlighting, hyperlinks
 to commits, and control over formatting. See README#git-blame and #761.
-delta syntax highlights file contents produced by git show $revision
 /path/to/file
-delta can apply syntax highlighting and arbitrary styling to the raw colors
 emitted by git --color-moved. This is done by specifying rules for remapping
 styles using map-styles. See below, and README#--color-moved-support and #72
-More powerful configuration options: styles can reference other styles, custom
 styles and custom colors can be defined in gitconfig and reused, and 140 colors
 can be specified using their standard CSS names. See below.
-New subcommand --show-colors outputs a demo of 140 background colors with
 syntax highlighting, to help choose background colors.
-New subcommand --parse-ansi takes color input and prints out the corresponding
 style strings (useful for map-styles)
-Utilities for interrogating the command line of the process that is sending
 output to delta, added by @th1000s.

Additionally, we can now use the 140 color names that are standard in CSS. Use
delta --show-colors to get a demo of the available colors, as background colors
to see how they look with syntax highlighting.

0.10.1
======
This release fixes a bug in color-moved handling when files have DOS line
endings. See #800

What's Changed
-Remove trailing \r from raw line, in presence of ANSI escape sequences by
 @dandavison in #800

0.10.2
======
This releases fixes a bug when using side-by-side with git diff.colorMoved.
See #802

What's Changed
-802 fix color moved side by side panic by @dandavison in #803

0.10.3
======
Delta was previously handling --word-diff and --color-words output in a
nonsensical way. With this release, delta does not attempt to handle these
output types, allowing git's raw output through unchanged. Appropriate handling
may be added later. See #152
When a line is unchanged but paired with a line that has additions/deletions,
delta now assigns the unchanged line {plus,minus}-non-emph-style; previously it
assigned {plus,minus}-style. This change does not alter visual output by default
because by default those two style styles are set to the same value. See #785
Fixes a bug affecting line numbers in side-by-side mode, see #819

0.11.0
======
This release adds handling of merge conflicts and the "combined" diff format
which git uses for merge commits; see the Merge conflicts README section and
#189. Please consider setting

[merge]
    conflictstyle = diff3

With that setting, when a merge conflict is encountered, delta will display
diffs between the ancestral commit and each of the two merge parents.

0.11.1
======
Fixes a crash that can occur, see for example #826. Thanks @mrjoel.

What's Changed
-Be permissive about unexpected state machine state by @dandavison in #827

0.11.2
======
This release fixes a performance problem that was affecting some users. See #824

0.11.3
======
Fix handling of --word-diff and --color-words (#829). Note that line-numbers and
side-by-side will be ignored if delta detects that the input was generated by
git --word-diff / --color-words.
DELTA_FEATURES can now be used to add to features specified in ~/.gitconfig.
Use a + prefix to do this: an example is DELTA_FEATURES=+side-by-side which will
activate side-by-side, in addition to your usual features.
Store less history file in a better location on Windows. Thanks @rashil2000 for
this work!

Fix performance issue affecting some linux users (#839)

What's Changed
-Bump sysinfo from 0.19.2 to 0.20.5 by @dependabot in #811
-#833 refactoring by @dandavison in #834
-Store history file in data_local_dir for Windows by @rashil2000 in #847
-Query fewer processes when searching for the parent by @th1000s in #841
-Do not query CPU data when querying process data by @dandavison in #845
-Fix --word-diff / --color-words handling by @dandavison in #833
-Add features from DELTA_FEATURES env var instead of replacing with them by
 @dandavison in #849
-Fix raw line styles by @dandavison in #850
-Fix side-by-side syntax ANSI test failure by @dandavison in #852
-DeltaTest inspect() additions by @dandavison in #853
-Line state refactor by @dandavison in #851

diffstat:

 textproc/git-delta/Makefile         |   10 +-
 textproc/git-delta/cargo-depends.mk |   58 +++++++++--
 textproc/git-delta/distinfo         |  176 +++++++++++++++++++++++++++--------
 3 files changed, 186 insertions(+), 58 deletions(-)

diffs (truncated from 508 to 300 lines):

diff -r 258b77f35793 -r ade0ef9a6f7f textproc/git-delta/Makefile
--- a/textproc/git-delta/Makefile       Fri Jan 14 10:32:28 2022 +0000
+++ b/textproc/git-delta/Makefile       Fri Jan 14 10:36:08 2022 +0000
@@ -1,8 +1,10 @@
-# $NetBSD: Makefile,v 1.3 2021/08/02 14:56:50 wiz Exp $
+# $NetBSD: Makefile,v 1.4 2022/01/14 10:36:08 pin Exp $
 
-DISTNAME=      git-delta-0.8.3
+DISTNAME=      delta-0.11.3
+PKGNAME=       git-delta-0.11.3
 CATEGORIES=    textproc
-EXTRACT_SUFX=  .crate
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=dandavison/}
+GITHUB_PROJECT=        delta
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      https://github.com/dandavison/delta/
@@ -10,8 +12,6 @@
 LICENSE=       mit
 
 .include "cargo-depends.mk"
-WRKSRC=                ${WRKDIR}/${PKGNAME_NOREV}
-USE_LANGUAGES= c
 
 INSTALLATION_DIRS=     bin
 
diff -r 258b77f35793 -r ade0ef9a6f7f textproc/git-delta/cargo-depends.mk
--- a/textproc/git-delta/cargo-depends.mk       Fri Jan 14 10:32:28 2022 +0000
+++ b/textproc/git-delta/cargo-depends.mk       Fri Jan 14 10:36:08 2022 +0000
@@ -1,16 +1,17 @@
-# $NetBSD: cargo-depends.mk,v 1.1 2021/08/02 14:56:50 wiz Exp $
+# $NetBSD: cargo-depends.mk,v 1.2 2022/01/14 10:36:08 pin Exp $
 
 CARGO_CRATE_DEPENDS+=  adler-0.2.3
 CARGO_CRATE_DEPENDS+=  aho-corasick-0.7.15
 CARGO_CRATE_DEPENDS+=  ansi_colours-1.0.4
 CARGO_CRATE_DEPENDS+=  ansi_term-0.11.0
 CARGO_CRATE_DEPENDS+=  ansi_term-0.12.1
+CARGO_CRATE_DEPENDS+=  approx-0.5.0
 CARGO_CRATE_DEPENDS+=  arrayvec-0.5.2
 CARGO_CRATE_DEPENDS+=  atty-0.2.14
 CARGO_CRATE_DEPENDS+=  autocfg-1.0.1
 CARGO_CRATE_DEPENDS+=  base64-0.13.0
 CARGO_CRATE_DEPENDS+=  bincode-1.3.1
-CARGO_CRATE_DEPENDS+=  bitflags-1.2.1
+CARGO_CRATE_DEPENDS+=  bitflags-1.3.2
 CARGO_CRATE_DEPENDS+=  box_drawing-0.1.2
 CARGO_CRATE_DEPENDS+=  bstr-0.2.15
 CARGO_CRATE_DEPENDS+=  bytelines-2.2.2
@@ -19,19 +20,26 @@
 CARGO_CRATE_DEPENDS+=  cfg-if-0.1.10
 CARGO_CRATE_DEPENDS+=  cfg-if-1.0.0
 CARGO_CRATE_DEPENDS+=  chrono-0.4.19
+CARGO_CRATE_DEPENDS+=  chrono-humanize-0.2.1
 CARGO_CRATE_DEPENDS+=  clap-2.33.3
-CARGO_CRATE_DEPENDS+=  console-0.14.1
+CARGO_CRATE_DEPENDS+=  console-0.15.0
+CARGO_CRATE_DEPENDS+=  core-foundation-sys-0.8.3
 CARGO_CRATE_DEPENDS+=  crc32fast-1.2.1
+CARGO_CRATE_DEPENDS+=  ctrlc-3.2.1
+CARGO_CRATE_DEPENDS+=  dirs-3.0.2
 CARGO_CRATE_DEPENDS+=  dirs-next-2.0.0
+CARGO_CRATE_DEPENDS+=  dirs-sys-0.3.6
 CARGO_CRATE_DEPENDS+=  dirs-sys-next-0.1.1
 CARGO_CRATE_DEPENDS+=  either-1.6.1
 CARGO_CRATE_DEPENDS+=  encode_unicode-0.3.6
 CARGO_CRATE_DEPENDS+=  error-chain-0.12.4
+CARGO_CRATE_DEPENDS+=  find-crate-0.6.3
 CARGO_CRATE_DEPENDS+=  flate2-1.0.19
 CARGO_CRATE_DEPENDS+=  fnv-1.0.7
 CARGO_CRATE_DEPENDS+=  form_urlencoded-1.0.0
 CARGO_CRATE_DEPENDS+=  getrandom-0.1.16
-CARGO_CRATE_DEPENDS+=  git2-0.13.20
+CARGO_CRATE_DEPENDS+=  getrandom-0.2.3
+CARGO_CRATE_DEPENDS+=  git2-0.13.23
 CARGO_CRATE_DEPENDS+=  globset-0.4.8
 CARGO_CRATE_DEPENDS+=  grep-cli-0.1.6
 CARGO_CRATE_DEPENDS+=  hashbrown-0.8.2
@@ -44,29 +52,47 @@
 CARGO_CRATE_DEPENDS+=  jobserver-0.1.21
 CARGO_CRATE_DEPENDS+=  lazy_static-1.4.0
 CARGO_CRATE_DEPENDS+=  lazycell-1.3.0
-CARGO_CRATE_DEPENDS+=  libc-0.2.81
-CARGO_CRATE_DEPENDS+=  libgit2-sys-0.12.21+1.1.0
+CARGO_CRATE_DEPENDS+=  libc-0.2.112
+CARGO_CRATE_DEPENDS+=  libgit2-sys-0.12.24+1.3.0
 CARGO_CRATE_DEPENDS+=  libz-sys-1.1.2
 CARGO_CRATE_DEPENDS+=  line-wrap-0.1.1
 CARGO_CRATE_DEPENDS+=  linked-hash-map-0.5.3
 CARGO_CRATE_DEPENDS+=  log-0.4.11
 CARGO_CRATE_DEPENDS+=  matches-0.1.8
 CARGO_CRATE_DEPENDS+=  memchr-2.3.4
+CARGO_CRATE_DEPENDS+=  memoffset-0.6.4
 CARGO_CRATE_DEPENDS+=  miniz_oxide-0.4.3
+CARGO_CRATE_DEPENDS+=  nix-0.23.0
+CARGO_CRATE_DEPENDS+=  ntapi-0.3.6
 CARGO_CRATE_DEPENDS+=  num-integer-0.1.44
 CARGO_CRATE_DEPENDS+=  num-traits-0.2.14
+CARGO_CRATE_DEPENDS+=  once_cell-1.8.0
 CARGO_CRATE_DEPENDS+=  onig-6.1.1
 CARGO_CRATE_DEPENDS+=  onig_sys-69.6.0
-CARGO_CRATE_DEPENDS+=  pathdiff-0.2.0
+CARGO_CRATE_DEPENDS+=  palette-0.6.0
+CARGO_CRATE_DEPENDS+=  palette_derive-0.6.0
+CARGO_CRATE_DEPENDS+=  pathdiff-0.2.1
 CARGO_CRATE_DEPENDS+=  percent-encoding-2.1.0
+CARGO_CRATE_DEPENDS+=  phf-0.9.0
+CARGO_CRATE_DEPENDS+=  phf_generator-0.9.1
+CARGO_CRATE_DEPENDS+=  phf_macros-0.9.0
+CARGO_CRATE_DEPENDS+=  phf_shared-0.9.0
 CARGO_CRATE_DEPENDS+=  pkg-config-0.3.19
 CARGO_CRATE_DEPENDS+=  plist-1.0.1
+CARGO_CRATE_DEPENDS+=  ppv-lite86-0.2.15
 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.24
 CARGO_CRATE_DEPENDS+=  quote-1.0.8
+CARGO_CRATE_DEPENDS+=  rand-0.8.4
+CARGO_CRATE_DEPENDS+=  rand_chacha-0.3.1
+CARGO_CRATE_DEPENDS+=  rand_core-0.6.3
+CARGO_CRATE_DEPENDS+=  rand_hc-0.3.1
 CARGO_CRATE_DEPENDS+=  redox_syscall-0.1.57
+CARGO_CRATE_DEPENDS+=  redox_syscall-0.2.10
 CARGO_CRATE_DEPENDS+=  redox_users-0.3.5
+CARGO_CRATE_DEPENDS+=  redox_users-0.4.0
 CARGO_CRATE_DEPENDS+=  regex-1.4.6
 CARGO_CRATE_DEPENDS+=  regex-automata-0.1.10
 CARGO_CRATE_DEPENDS+=  regex-syntax-0.6.22
@@ -75,22 +101,27 @@
 CARGO_CRATE_DEPENDS+=  same-file-1.0.6
 CARGO_CRATE_DEPENDS+=  serde-1.0.118
 CARGO_CRATE_DEPENDS+=  serde_derive-1.0.118
-CARGO_CRATE_DEPENDS+=  serde_json-1.0.61
+CARGO_CRATE_DEPENDS+=  serde_json-1.0.70
 CARGO_CRATE_DEPENDS+=  shell-words-1.0.0
+CARGO_CRATE_DEPENDS+=  siphasher-0.3.7
+CARGO_CRATE_DEPENDS+=  smol_str-0.1.21
 CARGO_CRATE_DEPENDS+=  strsim-0.8.0
-CARGO_CRATE_DEPENDS+=  structopt-0.3.22
-CARGO_CRATE_DEPENDS+=  structopt-derive-0.4.15
+CARGO_CRATE_DEPENDS+=  structopt-0.3.25
+CARGO_CRATE_DEPENDS+=  structopt-derive-0.4.18
 CARGO_CRATE_DEPENDS+=  syn-1.0.57
-CARGO_CRATE_DEPENDS+=  syntect-4.5.0
+CARGO_CRATE_DEPENDS+=  syntect-4.6.0
+CARGO_CRATE_DEPENDS+=  sysinfo-0.22.2
 CARGO_CRATE_DEPENDS+=  termcolor-1.1.2
 CARGO_CRATE_DEPENDS+=  terminal_size-0.1.15
 CARGO_CRATE_DEPENDS+=  textwrap-0.11.0
+CARGO_CRATE_DEPENDS+=  time-0.1.44
 CARGO_CRATE_DEPENDS+=  tinyvec-1.1.0
 CARGO_CRATE_DEPENDS+=  tinyvec_macros-0.1.0
+CARGO_CRATE_DEPENDS+=  toml-0.5.8
 CARGO_CRATE_DEPENDS+=  unicode-bidi-0.3.4
 CARGO_CRATE_DEPENDS+=  unicode-normalization-0.1.16
 CARGO_CRATE_DEPENDS+=  unicode-segmentation-1.8.0
-CARGO_CRATE_DEPENDS+=  unicode-width-0.1.8
+CARGO_CRATE_DEPENDS+=  unicode-width-0.1.9
 CARGO_CRATE_DEPENDS+=  unicode-xid-0.2.1
 CARGO_CRATE_DEPENDS+=  url-2.2.0
 CARGO_CRATE_DEPENDS+=  utf8parse-0.2.0
@@ -101,10 +132,11 @@
 CARGO_CRATE_DEPENDS+=  vte_generate_state_changes-0.1.1
 CARGO_CRATE_DEPENDS+=  walkdir-2.3.1
 CARGO_CRATE_DEPENDS+=  wasi-0.9.0+wasi-snapshot-preview1
+CARGO_CRATE_DEPENDS+=  wasi-0.10.0+wasi-snapshot-preview1
 CARGO_CRATE_DEPENDS+=  winapi-0.3.9
 CARGO_CRATE_DEPENDS+=  winapi-i686-pc-windows-gnu-0.4.0
 CARGO_CRATE_DEPENDS+=  winapi-util-0.1.5
 CARGO_CRATE_DEPENDS+=  winapi-x86_64-pc-windows-gnu-0.4.0
-CARGO_CRATE_DEPENDS+=  xdg-2.2.0
+CARGO_CRATE_DEPENDS+=  xdg-2.4.0
 CARGO_CRATE_DEPENDS+=  xml-rs-0.8.3
 CARGO_CRATE_DEPENDS+=  yaml-rust-0.4.5
diff -r 258b77f35793 -r ade0ef9a6f7f textproc/git-delta/distinfo
--- a/textproc/git-delta/distinfo       Fri Jan 14 10:32:28 2022 +0000
+++ b/textproc/git-delta/distinfo       Fri Jan 14 10:36:08 2022 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.4 2021/10/26 11:21:54 nia Exp $
+$NetBSD: distinfo,v 1.5 2022/01/14 10:36:08 pin Exp $
 
 BLAKE2s (adler-0.2.3.crate) = 27d8ff256da3b8f8b6f78d187f36c6ca91001ae4e3ec2411f6537d52541b8e0a
 SHA512 (adler-0.2.3.crate) = 565849eba122eb94d240a0cba875035537058cc168f137a8a3b99392d753815d56fa0e1a1e851062632700b0e3d12caf67f5f768b9f727956a2e5b599029e9dc
@@ -15,6 +15,9 @@
 BLAKE2s (ansi_term-0.12.1.crate) = 9d7961fca7b2680f17660048cf2d6171faa0def807ea66b5b5b9110f0623a12f
 SHA512 (ansi_term-0.12.1.crate) = b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671
 Size (ansi_term-0.12.1.crate) = 24838 bytes
+BLAKE2s (approx-0.5.0.crate) = e6de922e1b61302c3c266d8117917db8788c09d5aa9387711519a7e02d09ac05
+SHA512 (approx-0.5.0.crate) = 4c7ef7d54b6a9fac11587fd16638d36d8738e5156f5abf77cd994056377427f12170b61c03d1acf591dbb897911babc852c2a4a12b3c5277e1065d952c9e7dc6
+Size (approx-0.5.0.crate) = 14359 bytes
 BLAKE2s (arrayvec-0.5.2.crate) = 0a2a485fd63a88b1d0d196b5b676c9d0fde68b02e8a7d548e5d537e75b4eeffc
 SHA512 (arrayvec-0.5.2.crate) = 1896b5f64b4dbdcff8ad234bda4ea8129bcacf87839347304717e94ee9f369cf5f4371755e453ff7d72817edb8f7fdbc726d77cc4f28ed05148dc89c7714b004
 Size (arrayvec-0.5.2.crate) = 27838 bytes
@@ -30,9 +33,9 @@
 BLAKE2s (bincode-1.3.1.crate) = 011fbfd867f23bc3e2e4af145ea796044e7577467dfb46cc625caeff52ca381b
 SHA512 (bincode-1.3.1.crate) = 75e62caef54a58ea5d24acbdef70b55893b11706400ad423919084a4723f5ea60e337447221171c4cd86d764db1f9f767c303b4cf5cd8f27318519db77fb82b4
 Size (bincode-1.3.1.crate) = 26121 bytes
-BLAKE2s (bitflags-1.2.1.crate) = d88eaeb22f47d784119fe5d2ecd3e09ef458afb28b23c53a23566144e1ee218d
-SHA512 (bitflags-1.2.1.crate) = ad89b3798845e23737a620bba581c2ff1ff3e15bac12555c765e201d2c0b90ecea0cdbc5b5b1a3fa9858c385e8e041f8226f5acfae5bbbe9925643fff2bf3f0b
-Size (bitflags-1.2.1.crate) = 16745 bytes
+BLAKE2s (bitflags-1.3.2.crate) = e3a3b45a4403823875a03dbda329ca16068fa8f847cef81987c6b780101f2415
+SHA512 (bitflags-1.3.2.crate) = 3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62
+Size (bitflags-1.3.2.crate) = 23021 bytes
 BLAKE2s (box_drawing-0.1.2.crate) = 40ef8b0e7c3748440eb81551762167baa703e95aa316172cdc5b475af4bd8964
 SHA512 (box_drawing-0.1.2.crate) = fba2720279dbfd56a14371951b854aa0a30fb4caeb5b95703ec6721d681dfe97a37b21b069e6264565510fa3f3d0716dba99d8b3021bec76410c823ef262e746
 Size (box_drawing-0.1.2.crate) = 2819 bytes
@@ -57,18 +60,36 @@
 BLAKE2s (chrono-0.4.19.crate) = d6fed9203ab335271d17a56de9a78a9a6c418561751716d924ce04cd0260a2a0
 SHA512 (chrono-0.4.19.crate) = a119349bfc2243a249f1d18b1ae548a04b30fecb75913a56f26d1ff8c0eb53097a2674d9141e2094018191cbbc1620843fbddaf52999824e077c1157f0907980
 Size (chrono-0.4.19.crate) = 155663 bytes
+BLAKE2s (chrono-humanize-0.2.1.crate) = 9b6607d1a3e8e9c10d63d1d54a93ef2b816fb54fe00e13909e0a9caf41cf60c0
+SHA512 (chrono-humanize-0.2.1.crate) = 199a3da317791cd4fd607894afedc8b6607a8562f9f69ff805304a65e935b51cd7681521bb23c1c00baaa6d7e836174d51986f77e683c1312d3017f41f95d083
+Size (chrono-humanize-0.2.1.crate) = 14509 bytes
 BLAKE2s (clap-2.33.3.crate) = f5c7d0c7b05ec1286e69e90ea57f274d9164dfdf849598535c7dcb4e224ea532
 SHA512 (clap-2.33.3.crate) = 3eb0fd648e2e3f9e5ff69a5e6cf0d867304fe18523accd036f28a86de368e4774088a6936c108ccc045092c539fe7f7494ea96420ebf6b4bec16880cea84bedf
 Size (clap-2.33.3.crate) = 201925 bytes
-BLAKE2s (console-0.14.1.crate) = c62fe59f301a7e0571d216dd989d556b3f11f5004ecbc8f70e7615733fc542f3
-SHA512 (console-0.14.1.crate) = 2c85d1938faca5163dd7eede2a8a07569e536c92fd0fbc7f6e6ed91c60fa7f947f0ae101817ed943b0668c4d98ddfd3149033c83614786b5d841b19a8b011c91
-Size (console-0.14.1.crate) = 22844 bytes
+BLAKE2s (console-0.15.0.crate) = abccea8f672e0e597c12e7ada351f8790877b2da2041082c8178811a427fbdbd
+SHA512 (console-0.15.0.crate) = 70bd6abfafa533903f273ec3b34da6783856bd1abedaf139fddafac0dbb03fa9154f8e1e1bef01fd8de3c53100bbaa93313518c42f8ce51217c23ef34d3f9d62
+Size (console-0.15.0.crate) = 23507 bytes
+BLAKE2s (core-foundation-sys-0.8.3.crate) = 679c01a6f663daba747856f9e5c72ad3f1ef1dafb2f6f7211cc1e1c6637ba049
+SHA512 (core-foundation-sys-0.8.3.crate) = a3ba3184cef65dafe8318c4db7e59eb2749dcde7b2370ad20272b0735ded0032daf2de3fd0cf55eb48448a335f5b81e8e745f2a647f9a43bb85946ce714bfd82
+Size (core-foundation-sys-0.8.3.crate) = 17519 bytes
 BLAKE2s (crc32fast-1.2.1.crate) = 91889fffb1ad6d0fec782d564cabdbe2237c7104404935a214c396e751155999
 SHA512 (crc32fast-1.2.1.crate) = 4c04236bb15a5c63b712c62652777917e947823abb20a0d0b372c850ec1c8695faa414e8de73904f1f1a296d7b00a6206cde8da404cf4cdaa2e8408e64b62b5e
 Size (crc32fast-1.2.1.crate) = 38172 bytes
+BLAKE2s (ctrlc-3.2.1.crate) = f30cd916e32d0a452a61d8a50a2b983fa10d66a0012b7afa714e23f2ca27dc63
+SHA512 (ctrlc-3.2.1.crate) = 7305e97a3f161db942ddc194d14f670087f88e3ccb5b94114fbd6afba04b4ac1cb063cf87ccf6fdf4678bb667b02f3cb2e6fc1ca8bc47b6ed8e36620cc4a1a8b
+Size (ctrlc-3.2.1.crate) = 12893 bytes
+BLAKE2s (delta-0.11.3.tar.gz) = 2ec586237f24eb4a7a447e6b05feec1b6e85b7372be49a5f23d31491bfd9cb0c
+SHA512 (delta-0.11.3.tar.gz) = 090d64d1a9a8f3b905c1f7e80b98bbf3c62b3db14668cdf1f64fe8614086dd346513b305d9b9f160cb9bf7cdd3cdce640cc948c76ea48fd5a65018d356120785
+Size (delta-0.11.3.tar.gz) = 1198656 bytes
+BLAKE2s (dirs-3.0.2.crate) = 76584fd66a8ce8db015e1bc24735c2c70583e9c3df121a179e9e53b7b198d1d0
+SHA512 (dirs-3.0.2.crate) = 97dc343d580ecda68aebe87bcbe8c13a00078943771e3f1dc3101d8d450d2ccdd0d74283870eac1d88255a99e887166d42533ba8e70d15b9cdaddb57e3a27c55
+Size (dirs-3.0.2.crate) = 12184 bytes
 BLAKE2s (dirs-next-2.0.0.crate) = 792fd296dd1721386a0a8971725efc37df848dc023185a4f792da2b3d1434c08
 SHA512 (dirs-next-2.0.0.crate) = 6ccb732da8ccf7bf35952c22a3b0caa8238319feb0a6cd3b0957e6be12548a2ce507c69cb6d3cbd2adfb37e13e6521c6229da5999edb0e47a292a41c3ea1a766
 Size (dirs-next-2.0.0.crate) = 11689 bytes
+BLAKE2s (dirs-sys-0.3.6.crate) = e6d58252580f5708c68b7019115f1d06a38f443cfb22f0379f549dc0128a542d
+SHA512 (dirs-sys-0.3.6.crate) = 79b6bfda14aafa3839365496e1b1926f763d3569e4e138a59f4acae15c38ec9a3bdcaa64293b03b536141c897c2bf68a67d7ae5670d86215080aa313e53d39e5
+Size (dirs-sys-0.3.6.crate) = 10626 bytes
 BLAKE2s (dirs-sys-next-0.1.1.crate) = 06ffcb47779f5f66d5bf9240a4a3af8c7b15a98e6baf581db58a7600c3086ad4
 SHA512 (dirs-sys-next-0.1.1.crate) = e89af71b6bb4e23efb8ff189b42615672c2aa305fb8798393de2f9151c78cbfd5f3e45b066f5de64dfad69a84b15e72a1cdb4377f31ee9288018143017ed5730
 Size (dirs-sys-next-0.1.1.crate) = 10490 bytes
@@ -81,6 +102,9 @@
 BLAKE2s (error-chain-0.12.4.crate) = a3c29ab3906b297d9f29d672936370c67f3b9d9bbe39d46366ff65ccf1127fc1
 SHA512 (error-chain-0.12.4.crate) = c0ee19a0ba2d79ff1843148d0a582045e68466a9dc429e5f3c8a3a75bc1b6e0d6de03ad69fce851bc0297e7db77b2c6817a13c37e1c3d4501ed41db8a454bf79
 Size (error-chain-0.12.4.crate) = 29274 bytes
+BLAKE2s (find-crate-0.6.3.crate) = 0dd425f8c45bd4aaf7591c407ac4e147d06a737e70d0ef5ec01ba9d6a57a3248
+SHA512 (find-crate-0.6.3.crate) = f7866a4f917df064277630570f987898e465dce98be548ff7535201ada88b5db71c755f00013fcfed45ffdf29fd667c90ff19999a1fb7cb183a7007bd011f899
+Size (find-crate-0.6.3.crate) = 12092 bytes
 BLAKE2s (flate2-1.0.19.crate) = b5c64f560ad21f4c60e0a4f1b0395a3f6dff938079362e7ca7b76bdc3d9d77e9
 SHA512 (flate2-1.0.19.crate) = 6e802f351085ce8804afad32d9502980269e2c03e2315349b9dcdbbb6895f61c89fbde822e31504eb00d94e665e1a8186ea3d128b5b612c61323494a8dd4332e
 Size (flate2-1.0.19.crate) = 73768 bytes
@@ -93,12 +117,12 @@
 BLAKE2s (getrandom-0.1.16.crate) = 805b9bb4bc647a527fbff0bf97ed36863681367034e410973c84c85845b9da51
 SHA512 (getrandom-0.1.16.crate) = c5450c522c07c7a38b326f9a9062bac7d089630219d577ea4b55abad4e0c31d17b7cde385fc43912dfa100b42334e7a52422c55fda8b738caae428c6f9addb53
 Size (getrandom-0.1.16.crate) = 25077 bytes
-BLAKE2s (git-delta-0.8.3.crate) = bf0c79741e7c8fa4bf589715b252d15622f34040ceef7b6d1dcb2f04e66a1a47
-SHA512 (git-delta-0.8.3.crate) = 16295097b4d67f8c33149557bb6e9f09d86949267903b47b7fbc63e62e85223f1abedfea3fb67e6359ff3c5bf24089e4276039e879ad954fcf870597b5700a1d
-Size (git-delta-0.8.3.crate) = 1063509 bytes
-BLAKE2s (git2-0.13.20.crate) = e68142056d9ab5063cd50a312c61ad4080e9dba8d12e6f31ba12e06d89ca49ba
-SHA512 (git2-0.13.20.crate) = 2c0a9cf3391f4ea5eaa48c8fcc08a1cf27b877cc4960332bfdbb95620f9b161f720c35f87bf98e3771749a01444bf8e2337e6d8fc1a34962d4b041473115293f
-Size (git2-0.13.20.crate) = 190365 bytes
+BLAKE2s (getrandom-0.2.3.crate) = c451e4c9701d09c79572625708c12711e2a0a14a925b614b8be72f231a601f18
+SHA512 (getrandom-0.2.3.crate) = e6da64ed529cb0fc000b613f75187ed6b20f716e721d8a02ac2ae39c507fb9f6189ebb66b522d28584eff1e7e9efc274cad6bfe43f464f58053701e1d51c603d
+Size (getrandom-0.2.3.crate) = 26261 bytes
+BLAKE2s (git2-0.13.23.crate) = 2c6e3eedae05f793cb0b3b13e065a81f170490c220b60496c32bb481e3bb5fd1
+SHA512 (git2-0.13.23.crate) = e60f21affcef26aac16181d48ecaa67b6a9578ce5fe9e62b6c460b21bc02feb858fe25f07f7d7443b8eeae88974f1ad76a998972e002a6c5da5aec4c1172c401
+Size (git2-0.13.23.crate) = 192186 bytes
 BLAKE2s (globset-0.4.8.crate) = 9435d28608ab4becb7f2b371543c1fdf5626d19f39d14b1b3b1ab1d55722d1fe
 SHA512 (globset-0.4.8.crate) = 1a1fb9731d310ced63742b2c6f7ef7f414c89780751d9881859a6e6fbc512e91bc23c91e3743bb36114dcef6dc1962fd376d67bc536752ba6a8a2fda7aa80bec
 Size (globset-0.4.8.crate) = 22886 bytes
@@ -135,12 +159,12 @@
 BLAKE2s (lazycell-1.3.0.crate) = 4b68bb7aee4d9c2db1f382991cd5257b908571f8e550a9af7818ce4a2c268469
 SHA512 (lazycell-1.3.0.crate) = f9d627afc28b61e9687a3f72260eb013401fd64057647641ff2e763770d7380ab1d2d8cbb4a3c8818d53d504c618a3b46aaf701f72f4d7b25d226042824c2f8d
 Size (lazycell-1.3.0.crate) = 12502 bytes
-BLAKE2s (libc-0.2.81.crate) = 9ac40641aa5108e14c975a9dc3e219a3474f302e2114b82e77b3a0ce8a027825
-SHA512 (libc-0.2.81.crate) = 8e121e0dcbd8218e02c2c6536ef6398cd002a92406d433c39bf84576e9b881c5b8a66fee826da6a6189f44b825f3a9d959075eeb0501d7f604bf9cc1a8b8d437
-Size (libc-0.2.81.crate) = 513105 bytes
-BLAKE2s (libgit2-sys-0.12.21+1.1.0.crate) = f15535f68b16079b8c2a3628d287dde1df1ef826a763e79e829e3cbd868e4fe8
-SHA512 (libgit2-sys-0.12.21+1.1.0.crate) = fd6acaaec704fb2d159cbaf0bd1b81c7afe4d22aecd836b174001b017ed8421507739fd99da968cfb1d46db16a64fe6568f53e872aa5f9a9dd7fb2cb51b02d74
-Size (libgit2-sys-0.12.21+1.1.0.crate) = 1443245 bytes
+BLAKE2s (libc-0.2.112.crate) = 09606c79a810802b6d71f0d5dfb6fb903c9dd4af7ebe7ef837c2d6705657a11c
+SHA512 (libc-0.2.112.crate) = 6c1a027eff21d3ef8078ad19b90b06d90790919a848e95a4c878e8c8b850d2e9be3fca36d8db39b24e472f15e5352ead1182d5491a0b382e06f8c3ead379c45f
+Size (libc-0.2.112.crate) = 571445 bytes
+BLAKE2s (libgit2-sys-0.12.24+1.3.0.crate) = 1f20989178df63f9133a9c408aa9647c262e899688cee6476e16612c04eac858
+SHA512 (libgit2-sys-0.12.24+1.3.0.crate) = 9d738c318a15b70c749aeef777aebaf59a40912da5e4f23fade1e84a6425acdac6e6a59030811f5cd974edddd965c0c9514f7b5a0286d32d4d7f6ebb6e6ae21d
+Size (libgit2-sys-0.12.24+1.3.0.crate) = 1476766 bytes
 BLAKE2s (libz-sys-1.1.2.crate) = 47025e4619552e69cd1c72e5ebe763208f323290c28a06ce8dcad8b553137c57
 SHA512 (libz-sys-1.1.2.crate) = 2342c738230ac570c61b466920e2ceafc0194381643540f094f6541917639a4f5b11d46d575bb03c7623ce109d376bafc3076a9d172233313e38cb6f49ed16db
 Size (libz-sys-1.1.2.crate) = 1339299 bytes
@@ -159,51 +183,105 @@
 BLAKE2s (memchr-2.3.4.crate) = 89c647fd718164523e56b92c6a13c59986b8daea6dca2755a2121597b23c8280
 SHA512 (memchr-2.3.4.crate) = 24cde03e6f7cbee1c1d12dcc691190c7e3dc72f468cf41e2397560961d62685976fe47de51119c04c473cccf75b38311bd887fd9db93e92563aebac8f9184df6
 Size (memchr-2.3.4.crate) = 23077 bytes
+BLAKE2s (memoffset-0.6.4.crate) = 960cd37bcaabfd282132df3a823e70b3fbf01cb1ecd693897398a0c4f5620503



Home | Main Index | Thread Index | Old Index