pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/textproc/ripgrep ripgrep: update to 0.10.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9167e6c27ac8
branches:  trunk
changeset: 322232:9167e6c27ac8
user:      maya <maya%pkgsrc.org@localhost>
date:      Fri Apr 12 08:08:48 2019 +0000

description:
ripgrep: update to 0.10.0

ripgrep 0.10.0:

This is a new minor version release of ripgrep that contains some major new
features, a huge number of bug fixes, and is the first release based on
libripgrep. The entirety of ripgrep's core search and printing code has been
rewritten and generalized so that anyone can make use of it.

Major new features include PCRE2 support, multi-line search and a JSON output
format.

BREAKING CHANGES:

    The minimum version required to compile Rust has now changed to track the
    latest stable version of Rust. Patch releases will continue to compile with
    the same version of Rust as the previous patch release, but new minor
    versions will use the current stable version of the Rust compile as its
    minimum supported version.
    The match semantics of -w/--word-regexp have changed slightly. They used
    to be \b(?:<your pattern>)\b, but now it's
    (?:^|\W)(?:<your pattern>)(?:$|\W). This matches the behavior of GNU grep
    and is believed to be closer to the intended semantics of the flag. See
    #389 for more details.

Feature enhancements:

    FEATURE #162:
    libripgrep is now a thing. The primary crate is
    grep.
    FEATURE #176:
    Add -U/--multiline flag that permits matching over multiple lines.
    FEATURE #188:
    Add -P/--pcre2 flag that gives support for look-around and backreferences.
    FEATURE #244:
    Add --json flag that prints results in a JSON Lines format.
    FEATURE #321:
    Add --one-file-system flag to skip directories on different file systems.
    FEATURE #404:
    Add --sort and --sortr flag for more sorting. Deprecate --sort-files.
    FEATURE #416:
    Add --crlf flag to permit $ to work with carriage returns on Windows.
    FEATURE #917:
    The --trim flag strips prefix whitespace from all lines printed.
    FEATURE #993:
    Add --null-data flag, which makes ripgrep use NUL as a line terminator.
    FEATURE #997:
    The --passthru flag now works with the --replace flag.
    FEATURE #1038-1:
    Add --line-buffered and --block-buffered for forcing a buffer strategy.
    FEATURE #1038-2:
    Add --pre-glob for filtering files through the --pre flag.

Bug fixes:

    BUG #2:
    Searching with non-zero context can now use memory maps if appropriate.
    BUG #200:
    ripgrep will now stop correctly when its output pipe is closed.
    BUG #389:
    The -w/--word-regexp flag now works more intuitively.
    BUG #643:
    Detection of readable stdin has improved on Windows.
    BUG #441,
    BUG #690,
    BUG #980:
    Matching empty lines now works correctly in several corner cases.
    BUG #764:
    Color escape sequences now coalesce, which reduces output size.
    BUG #842:
    Add man page to binary Debian package.
    BUG #922:
    ripgrep is now more robust with respect to memory maps failing.
    BUG #937:
    Color escape sequences are no longer emitted for empty matches.
    BUG #940:
    Context from the --passthru flag should not impact process exit status.
    BUG #984:
    Fixes bug in ignore crate where first path was always treated as a symlink.
    BUG #990:
    Read stderr asynchronously when running a process.
    BUG #1013:
    Add compile time and runtime CPU features to --version output.
    BUG #1028:
    Don't complete bare pattern after -f in zsh.


ripgrep 0.9.0:

BREAKING CHANGES:

    When --count and --only-matching are provided simultaneously, the
    behavior of ripgrep is as if the --count-matches flag was given. That is,
    the total number of matches is reported, where there may be multiple matches
    per line. Previously, the behavior of ripgrep was to report the total number
    of matching lines. (Note that this behavior diverges from the behavior of
    GNU grep.)
    Octal syntax is no longer supported. ripgrep previously accepted expressions
    like \1 as syntax for matching U+0001, but ripgrep will now report an
    error instead.
    The --line-number-width flag has been removed. Its functionality was not
    carefully considered with all ripgrep output formats.
    See #795 for more
    details.

Feature enhancements:

    Added or improved file type filtering for Android, Bazel, Fuschia, Haskell,
    Java and Puppet.
    FEATURE #411:
    Add a --stats flag, which emits aggregate statistics after search results.
    FEATURE #646:
    Add a --no-ignore-messages flag, which suppresses parse errors from reading
    .ignore and .gitignore files.
    FEATURE #702:
    Support \u{..} Unicode escape sequences.
    FEATURE #812:
    Add -b/--byte-offset flag that shows the byte offset of each matching line.
    FEATURE #814:
    Add --count-matches flag, which is like --count, but for each match.
    FEATURE #880:
    Add a --no-column flag, which disables column numbers in the output.
    FEATURE #898:
    Add support for lz4 when using the -z/--search-zip flag.
    FEATURE #924:
    termcolor has moved to its own repository:
    https://github.com/BurntSushi/termcolor
    FEATURE #934:
    Add a new flag, --no-ignore-global, that permits disabling global
    gitignores.
    FEATURE #967:
    Rename --maxdepth to --max-depth for consistency. Keep --maxdepth for
    backwards compatibility.
    FEATURE #978:
    Add a --pre option to filter inputs with an arbitrary program.
    FEATURE fca9709d:
    Improve zsh completion.

Bug fixes:

    BUG #135:
    Release portable binaries that conditionally use SSSE3, AVX2, etc., at
    runtime.
    BUG #268:
    Print descriptive error message when trying to use look-around or
    backreferences.
    BUG #395:
    Show comprehensible error messages for regexes like \s*{.
    BUG #526:
    Support backslash escapes in globs.
    BUG #795:
    Fix problems with --line-number-width by removing it.
    BUG #832:
    Clarify usage instructions for -f/--file flag.
    BUG #835:
    Fix small performance regression while crawling very large directory trees.
    BUG #851:
    Fix -S/--smart-case detection once and for all.
    BUG #852:
    Be robust with respect to ENOMEM errors returned by mmap.
    BUG #853:
    Upgrade grep crate to regex-syntax 0.6.0.
    BUG #893:
    Improve support for git submodules.
    BUG #900:
    When no patterns are given, ripgrep should never match anything.
    BUG #907:
    ripgrep will now stop traversing after the first file when --quiet --files
    is used.
    BUG #918:
    Don't skip tar archives when -z/--search-zip is used.
    BUG #934:
    Don't respect gitignore files when searching outside git repositories.
    BUG #948:
    Use exit code 2 to indicate error, and use exit code 1 to indicate no
    matches.
    BUG #951:
    Add stdin example to ripgrep usage documentation.
    BUG #955:
    Use buffered writing when not printing to a tty, which fixes a performance
    regression.
    BUG #957:
    Improve the error message shown for --path separator / in some Windows
    shells.
    BUG #964:
    Add a --no-fixed-strings flag to disable -F/--fixed-strings.
    BUG #988:
    Fix a bug in the ignore crate that prevented the use of explicit ignore
    files after disabling all other ignore rules.
    BUG #995:
    Respect $XDG_CONFIG_DIR/git/config for detecting core.excludesFile.

diffstat:

 textproc/ripgrep/Makefile |  127 +++++++++-----
 textproc/ripgrep/distinfo |  386 ++++++++++++++++++++++++++++++---------------
 2 files changed, 336 insertions(+), 177 deletions(-)

diffs (truncated from 579 to 300 lines):

diff -r 8e143434aa69 -r 9167e6c27ac8 textproc/ripgrep/Makefile
--- a/textproc/ripgrep/Makefile Fri Apr 12 07:08:58 2019 +0000
+++ b/textproc/ripgrep/Makefile Fri Apr 12 08:08:48 2019 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2019/01/05 02:58:54 tnn Exp $
+# $NetBSD: Makefile,v 1.5 2019/04/12 08:08:48 maya Exp $
 
 GITHUB_PROJECT=        ripgrep
-DISTNAME=      0.8.1
+DISTNAME=      0.10.0
 PKGNAME=       ${GITHUB_PROJECT}-${DISTNAME}
 CATEGORIES=    textproc
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=BurntSushi/}
@@ -12,54 +12,85 @@
 COMMENT=       Line-oriented search tool
 LICENSE=       unlicense
 
-WRKSRC=                ${WRKDIR}/ripgrep-0.8.1
+WRKSRC=                ${WRKDIR}/${PKGNAME}
 USE_LANGUAGES= c
 
-CARGO_CRATE_DEPENDS+=          \
-       atty-0.2.6              \
-       bytecount-0.3.1         \
-       cfg-if-0.1.2            \
-       clap-2.30.0             \
-       crossbeam-0.3.2         \
-       encoding_rs-0.7.2       \
-       glob-0.2.11             \
-       globset-0.3.0           \
-       grep-0.1.8              \
-       ignore-0.4.0            \
-       lazy_static-1.0.0       \
-       libc-0.2.36             \
-       log-0.4.1               \
-       memchr-2.0.1            \
-       memmap-0.6.2            \
-       num_cpus-1.8.0          \
-       regex-0.2.6             \
-       regex-syntax-0.4.2      \
-       same-file-1.0.2         \
-       simd-0.2.1              \
-       aho-corasick-0.6.4      \
-       fnv-1.0.6               \
-       termcolor-0.3.4         \
-       termion-1.5.1           \
-       redox_syscall-0.1.37    \
-       redox_termios-0.1.1     \
-       strsim-0.7.0            \
-       textwrap-0.9.0          \
-       unicode-width-0.1.4     \
-       ansi_term-0.10.2        \
-       thread_local-0.3.5      \
-       walkdir-2.1.4           \
-       winapi-0.3.4            \
-       winapi-i686-pc-windows-gnu-0.4.0        \
-       winapi-x86_64-pc-windows-gnu-0.4.0      \
-       utf8-ranges-1.0.0       \
-       unreachable-1.0.0       \
-       tempdir-0.3.5           \
-       void-1.0.2              \
-       rand-0.4.2              \
-       rand-0.3.22             \
-       fuchsia-zircon-0.3.3    \
-       fuchsia-zircon-sys-0.3.3        \
-       bitflags-1.0.1
+CARGO_CRATE_DEPENDS+=  aho-corasick-0.6.8
+CARGO_CRATE_DEPENDS+=  arrayvec-0.4.7
+CARGO_CRATE_DEPENDS+=  atty-0.2.11
+CARGO_CRATE_DEPENDS+=  base64-0.9.2
+CARGO_CRATE_DEPENDS+=  bitflags-1.0.4
+CARGO_CRATE_DEPENDS+=  bytecount-0.3.2
+CARGO_CRATE_DEPENDS+=  byteorder-1.2.6
+CARGO_CRATE_DEPENDS+=  cc-1.0.24
+CARGO_CRATE_DEPENDS+=  cfg-if-0.1.5
+CARGO_CRATE_DEPENDS+=  clap-2.32.0
+CARGO_CRATE_DEPENDS+=  cloudabi-0.0.3
+CARGO_CRATE_DEPENDS+=  crossbeam-channel-0.2.4
+CARGO_CRATE_DEPENDS+=  crossbeam-epoch-0.5.2
+CARGO_CRATE_DEPENDS+=  crossbeam-utils-0.5.0
+CARGO_CRATE_DEPENDS+=  encoding_rs-0.8.6
+CARGO_CRATE_DEPENDS+=  encoding_rs_io-0.1.2
+CARGO_CRATE_DEPENDS+=  fnv-1.0.6
+CARGO_CRATE_DEPENDS+=  fuchsia-zircon-0.3.3
+CARGO_CRATE_DEPENDS+=  fuchsia-zircon-sys-0.3.3
+CARGO_CRATE_DEPENDS+=  glob-0.2.11
+CARGO_CRATE_DEPENDS+=  itoa-0.4.2
+CARGO_CRATE_DEPENDS+=  lazy_static-1.1.0
+CARGO_CRATE_DEPENDS+=  libc-0.2.43
+CARGO_CRATE_DEPENDS+=  lock_api-0.1.3
+CARGO_CRATE_DEPENDS+=  log-0.4.5
+CARGO_CRATE_DEPENDS+=  memchr-2.0.2
+CARGO_CRATE_DEPENDS+=  memmap-0.6.2
+CARGO_CRATE_DEPENDS+=  memoffset-0.2.1
+CARGO_CRATE_DEPENDS+=  nodrop-0.1.12
+CARGO_CRATE_DEPENDS+=  num_cpus-1.8.0
+CARGO_CRATE_DEPENDS+=  owning_ref-0.3.3
+CARGO_CRATE_DEPENDS+=  parking_lot-0.6.4
+CARGO_CRATE_DEPENDS+=  parking_lot_core-0.3.0
+CARGO_CRATE_DEPENDS+=  pcre2-0.1.0
+CARGO_CRATE_DEPENDS+=  pcre2-sys-0.1.1
+CARGO_CRATE_DEPENDS+=  pkg-config-0.3.14
+CARGO_CRATE_DEPENDS+=  proc-macro2-0.4.18
+CARGO_CRATE_DEPENDS+=  quote-0.6.8
+CARGO_CRATE_DEPENDS+=  rand-0.4.3
+CARGO_CRATE_DEPENDS+=  rand-0.5.5
+CARGO_CRATE_DEPENDS+=  rand_core-0.2.1
+CARGO_CRATE_DEPENDS+=  redox_syscall-0.1.40
+CARGO_CRATE_DEPENDS+=  redox_termios-0.1.1
+CARGO_CRATE_DEPENDS+=  regex-1.0.5
+CARGO_CRATE_DEPENDS+=  regex-syntax-0.6.2
+CARGO_CRATE_DEPENDS+=  remove_dir_all-0.5.1
+CARGO_CRATE_DEPENDS+=  ryu-0.2.6
+CARGO_CRATE_DEPENDS+=  safemem-0.2.0
+CARGO_CRATE_DEPENDS+=  same-file-1.0.3
+CARGO_CRATE_DEPENDS+=  scopeguard-0.3.3
+CARGO_CRATE_DEPENDS+=  serde-1.0.77
+CARGO_CRATE_DEPENDS+=  serde_derive-1.0.77
+CARGO_CRATE_DEPENDS+=  serde_json-1.0.27
+CARGO_CRATE_DEPENDS+=  simd-0.2.2
+CARGO_CRATE_DEPENDS+=  smallvec-0.6.5
+CARGO_CRATE_DEPENDS+=  stable_deref_trait-1.1.1
+CARGO_CRATE_DEPENDS+=  strsim-0.7.0
+CARGO_CRATE_DEPENDS+=  syn-0.15.1
+CARGO_CRATE_DEPENDS+=  tempdir-0.3.7
+CARGO_CRATE_DEPENDS+=  termcolor-1.0.3
+CARGO_CRATE_DEPENDS+=  termion-1.5.1
+CARGO_CRATE_DEPENDS+=  textwrap-0.10.0
+CARGO_CRATE_DEPENDS+=  thread_local-0.3.6
+CARGO_CRATE_DEPENDS+=  ucd-util-0.1.1
+CARGO_CRATE_DEPENDS+=  unicode-width-0.1.5
+CARGO_CRATE_DEPENDS+=  unicode-xid-0.1.0
+CARGO_CRATE_DEPENDS+=  unreachable-1.0.0
+CARGO_CRATE_DEPENDS+=  utf8-ranges-1.0.1
+CARGO_CRATE_DEPENDS+=  version_check-0.1.4
+CARGO_CRATE_DEPENDS+=  void-1.0.2
+CARGO_CRATE_DEPENDS+=  walkdir-2.2.5
+CARGO_CRATE_DEPENDS+=  winapi-0.3.5
+CARGO_CRATE_DEPENDS+=  winapi-i686-pc-windows-gnu-0.4.0
+CARGO_CRATE_DEPENDS+=  winapi-util-0.1.1
+CARGO_CRATE_DEPENDS+=  winapi-x86_64-pc-windows-gnu-0.4.0
+CARGO_CRATE_DEPENDS+=  wincolor-1.0.1
 
 INSTALLATION_DIRS=     bin
 
diff -r 8e143434aa69 -r 9167e6c27ac8 textproc/ripgrep/distinfo
--- a/textproc/ripgrep/distinfo Fri Apr 12 07:08:58 2019 +0000
+++ b/textproc/ripgrep/distinfo Fri Apr 12 08:08:48 2019 +0000
@@ -1,45 +1,73 @@
-$NetBSD: distinfo,v 1.1 2018/05/08 07:48:39 maya Exp $
+$NetBSD: distinfo,v 1.2 2019/04/12 08:08:48 maya Exp $
 
-SHA1 (ripgrep/0.8.1.tar.gz) = b80b1e73bb0c1c18ab8a6715d695707a747041ac
-RMD160 (ripgrep/0.8.1.tar.gz) = eb9e2132e66704dc8f8118b1b38eef9d6fe7b016
-SHA512 (ripgrep/0.8.1.tar.gz) = 4554f1744c6f8dec9ca8efa80320b69cacc03c52dfa36014994dc7217ed109863798e6c89e80e05926fc3288e4afc44b94e7cb810b1046bb24507f39827a5f95
-Size (ripgrep/0.8.1.tar.gz) = 521088 bytes
-SHA1 (ripgrep/aho-corasick-0.6.4.crate) = fedf6ca36887ccf37e0b9be80b3303fb14508887
-RMD160 (ripgrep/aho-corasick-0.6.4.crate) = 64351ab3da703b5276bba7e1c332ac7e50a5fb63
-SHA512 (ripgrep/aho-corasick-0.6.4.crate) = 0191f627896469bdb271f1b9d2f3d3b0f7952579cd07c2659996ad66a961dbe605c6a4a929100d6b9c246e65199c0e180b1e8349943f06a6f08250e003e62b65
-Size (ripgrep/aho-corasick-0.6.4.crate) = 25443 bytes
-SHA1 (ripgrep/ansi_term-0.10.2.crate) = 4e4056e8b34d484aed6c8505398716485ce8e116
-RMD160 (ripgrep/ansi_term-0.10.2.crate) = f11adc9dd49c0e35655318dccfc0706968a06d71
-SHA512 (ripgrep/ansi_term-0.10.2.crate) = ad4572845913cb21fdd9d8c0bffc5fce1571ef62c32fe83fd41262f7955e918400a446077494038299c4c0dfb0bd030d089336b3f169e726a5e15ee5c78ea3b5
-Size (ripgrep/ansi_term-0.10.2.crate) = 16642 bytes
-SHA1 (ripgrep/atty-0.2.6.crate) = 5aff46b5870dc36cbe4beda3ae4b5dc450560e0d
-RMD160 (ripgrep/atty-0.2.6.crate) = 15be41a594e3efada859c63129819b81c57d4aaa
-SHA512 (ripgrep/atty-0.2.6.crate) = ae0aa91616571391eb4a2cc46b4765784dcd96b514fc7c3b64f756d1a180f95c83b9d14086f872fb7466be0e623f44a1a3170e786d7fbff5bdd949ef0cd88997
-Size (ripgrep/atty-0.2.6.crate) = 5617 bytes
-SHA1 (ripgrep/bitflags-1.0.1.crate) = d7da06a6de58e9273dee5207734057bf722376ba
-RMD160 (ripgrep/bitflags-1.0.1.crate) = 92184075730d0601dc17ced504601b0ae55d64e2
-SHA512 (ripgrep/bitflags-1.0.1.crate) = 6ca3a06645534769fb5c5ad91958e9e802db5a4b49a2a11b0be5243d7e92e32e552183a7ba8d7052f8543f642bc0e4799ef0f36013f64e5c60f4e98bbb26e465
-Size (ripgrep/bitflags-1.0.1.crate) = 13451 bytes
-SHA1 (ripgrep/bytecount-0.3.1.crate) = f80802909e11a56189949278dbe30d4b37c56f77
-RMD160 (ripgrep/bytecount-0.3.1.crate) = 20d9d32c4135616f3e6deb60d10143e4465a5278
-SHA512 (ripgrep/bytecount-0.3.1.crate) = 09f2fda4bcddffc94f9e1f60afe478ba988c74276196e003f652229d7979491b1dc29686d3d11e2a9015b628638288b6dac23b27b157ae1025f64b05c35a5e19
-Size (ripgrep/bytecount-0.3.1.crate) = 12347 bytes
-SHA1 (ripgrep/cfg-if-0.1.2.crate) = 052481643121edcc1e2d78ce8e260ce6beee5bf0
-RMD160 (ripgrep/cfg-if-0.1.2.crate) = 746bff7b0ffc0c28ed347c8dbb8963e62c759c59
-SHA512 (ripgrep/cfg-if-0.1.2.crate) = ed6732d8ef2c99d99861f5dcfec3bcd2d1b62dcf6e8e4e88ca25148b5566f86418270dbbe9a7d2fae62a8320d432c5e0474059fa25a11c0f66787084e36f36aa
-Size (ripgrep/cfg-if-0.1.2.crate) = 6668 bytes
-SHA1 (ripgrep/clap-2.30.0.crate) = b0b90d7a2cb47ea48429b585aae4531fb52f41e6
-RMD160 (ripgrep/clap-2.30.0.crate) = 93489305c2ed410f30c9249cc7f85353394860c5
-SHA512 (ripgrep/clap-2.30.0.crate) = 2a4af4035dd92adf00e183d15528ed658ce7dec6d9df592565fbcc86e94b1b41ce9f11996da64a655a85909fc89c9b9404ec9b717bbca78c14d96e85916480bb
-Size (ripgrep/clap-2.30.0.crate) = 190562 bytes
-SHA1 (ripgrep/crossbeam-0.3.2.crate) = 47298557bdb08970284b56b08591eea27158c274
-RMD160 (ripgrep/crossbeam-0.3.2.crate) = c0e5e84d49a1687a2fd17ab8b319eec16332cc89
-SHA512 (ripgrep/crossbeam-0.3.2.crate) = e467a84c3a3655ed1108e2af2ee75dc1fd7bd435dc28fa29e43c055edd26d24d8a5d95edac86fb428e52ba70fcca68ac960952442d0a451568877c371057f0e9
-Size (ripgrep/crossbeam-0.3.2.crate) = 33440 bytes
-SHA1 (ripgrep/encoding_rs-0.7.2.crate) = 566fe6e708f59ca1b235aa861427174e2e834183
-RMD160 (ripgrep/encoding_rs-0.7.2.crate) = ef1326f91d8e01562ed847afd257b1d8d1d257b2
-SHA512 (ripgrep/encoding_rs-0.7.2.crate) = 92633620eb915ec3a4b1cc3d9d3ac38134827fa5f750eb7415e31e97c99e65e8532393090202a6a5a86979ac64127a7e8531b7c736f1109f47ea303bcb4f81ee
-Size (ripgrep/encoding_rs-0.7.2.crate) = 1241345 bytes
+SHA1 (ripgrep/0.10.0.tar.gz) = 6db56cb4ecc955302a629fff0c75c1454d3d2ae8
+RMD160 (ripgrep/0.10.0.tar.gz) = 744a4c1c0f85583b5dec8d0ec2983369d6d728df
+SHA512 (ripgrep/0.10.0.tar.gz) = bc193d269131823076fdb857f69a95c165e88848896379039218139136028e3705e09f1b9be33903e060c8cc37ad5b992ea70a05f6f01c6210bef535a35570c0
+Size (ripgrep/0.10.0.tar.gz) = 428779 bytes
+SHA1 (ripgrep/aho-corasick-0.6.8.crate) = e39bb67748289a94512db5c32c599c37e6bb0317
+RMD160 (ripgrep/aho-corasick-0.6.8.crate) = adc1808fb3ec73db2643b6ad3754029e2e495e5f
+SHA512 (ripgrep/aho-corasick-0.6.8.crate) = 1adbce716a3082c3fcd3514c49af3872d926df14044767266707862c0ad7ee22848a6ce99903003c04a3e8f8cd91b38ec8ca5d4a2c9031bfec4c93cf71c15556
+Size (ripgrep/aho-corasick-0.6.8.crate) = 26786 bytes
+SHA1 (ripgrep/arrayvec-0.4.7.crate) = ebc432c7f507f73abf45ec8daed55bc9cd4ada9b
+RMD160 (ripgrep/arrayvec-0.4.7.crate) = e5e6de0e55d6936afa2bfa33b772e6a55ba1f3d2
+SHA512 (ripgrep/arrayvec-0.4.7.crate) = 195faecd7709eb908227cda7111e1b736ecf96120f9b615f1dc0a9a1cc61947e2ad4fedc7fc81d14405b51a4c8a216f81b8ed1d1d603a9fa451a38b4637e2bae
+Size (ripgrep/arrayvec-0.4.7.crate) = 22946 bytes
+SHA1 (ripgrep/atty-0.2.11.crate) = 1de1c341da9ff0dac035a1dc53112eab8a560ca9
+RMD160 (ripgrep/atty-0.2.11.crate) = 3276365dae3731cadede9ced14185178cc6f4ef9
+SHA512 (ripgrep/atty-0.2.11.crate) = 9d6417dc1e8abdb4969418525b36c451274fd76769adb57bef9875ef62ef521c50d58626ebc4f96d2bea32cbadb6999fd67653b570293d7253b403b6d0736c79
+Size (ripgrep/atty-0.2.11.crate) = 5916 bytes
+SHA1 (ripgrep/base64-0.9.2.crate) = 5c0d758fb4cec08001e395d331eb4440cb6c6fac
+RMD160 (ripgrep/base64-0.9.2.crate) = d7bbb7c3839d4135758086a2e06c3255f47f8cfd
+SHA512 (ripgrep/base64-0.9.2.crate) = d7c859ebddf17171daa2ef803a7cfd12871fa95cba47ebb24fa7491bf63fd33a593d98b3045149cc23f310c13292d703b045834431a0acf2cfcf4952127b8402
+Size (ripgrep/base64-0.9.2.crate) = 37967 bytes
+SHA1 (ripgrep/bitflags-1.0.4.crate) = fbc1ce9fa176ed7a7e15cfc6d1f6c2389f536361
+RMD160 (ripgrep/bitflags-1.0.4.crate) = fd720dba692f079a1c6662e43677533bb68654de
+SHA512 (ripgrep/bitflags-1.0.4.crate) = 81850d2be62eabb8486024ab263da67e6eb8ebfa732cac3a5d46a9186c564b2065cba15fa3da468bbd26eaf2b67038680e5de19d5dd99d78f60dae8a1776c8de
+Size (ripgrep/bitflags-1.0.4.crate) = 15282 bytes
+SHA1 (ripgrep/bytecount-0.3.2.crate) = fbfffd33881f2e043bb1db9b2d71136f626a12b4
+RMD160 (ripgrep/bytecount-0.3.2.crate) = cda4f686cbfddf42f17bc10748ec51816345ca33
+SHA512 (ripgrep/bytecount-0.3.2.crate) = fa3453f220112f83280dd3a123b25cf3ec07d2487c89cb80dc383f12e9f4d759e316d1eb05bcb0633186dc3f26d2ed58d979ba4ca86404a7f6edc4c174ae0edc
+Size (ripgrep/bytecount-0.3.2.crate) = 11026 bytes
+SHA1 (ripgrep/byteorder-1.2.6.crate) = 16bb716b0f0a4a4a308f62a044086be15ba631ea
+RMD160 (ripgrep/byteorder-1.2.6.crate) = 5deea3328a818b5868d74b40cc28a175ff718aa8
+SHA512 (ripgrep/byteorder-1.2.6.crate) = 7106b5404a213b080a231c4bcc3010caa2f2743a0d0b64553e0c789ad849970ce1fb547b330711d03374cba5a7ff56b728f5259d0c6fe7ac00c8c13324503dce
+Size (ripgrep/byteorder-1.2.6.crate) = 19985 bytes
+SHA1 (ripgrep/cc-1.0.24.crate) = 3c8b9cec046dd01e6222aac19b53adbeb6223ca6
+RMD160 (ripgrep/cc-1.0.24.crate) = 88b074b3d6d3488721e685fc362979af82803796
+SHA512 (ripgrep/cc-1.0.24.crate) = 97bb515c57448dfa67c57ab69402893181ad5324ec870efe49b8185facdcd536bff3550f4db7deb79a5b397e387a8f734d4cabcdac2661dc020c82ea993f42c9
+Size (ripgrep/cc-1.0.24.crate) = 43132 bytes
+SHA1 (ripgrep/cfg-if-0.1.5.crate) = 339930032ee743c826a9aa16336be064d4c73475
+RMD160 (ripgrep/cfg-if-0.1.5.crate) = 6188700603b1077e603aec815dad25b81e2aaf4d
+SHA512 (ripgrep/cfg-if-0.1.5.crate) = 48ab0bb1fe89d6e388ac4bf851b9aaed6479f9ca7da62945e2ebe58800b5201897feaf6aabd2b028110b0205b33d5abca7f02826ab3c688647b944e7140e6d94
+Size (ripgrep/cfg-if-0.1.5.crate) = 7363 bytes
+SHA1 (ripgrep/clap-2.32.0.crate) = 056a334c2e22d1696c94d2b78b26ccb3095870c6
+RMD160 (ripgrep/clap-2.32.0.crate) = 069963d76d9d566b3ec52976b30c798d564e198d
+SHA512 (ripgrep/clap-2.32.0.crate) = ee2a66cec0d867d73fce35c055bcac77cc3ea9537b355be04be3ee17ddabefebfe3649cbdfc30ea356c54cf9f066369540eac4f5dc67e60cdadc9c66be014ef0
+Size (ripgrep/clap-2.32.0.crate) = 196073 bytes
+SHA1 (ripgrep/cloudabi-0.0.3.crate) = 3686cb2aa6c559198711acc8b0c7b0b1494d70b9
+RMD160 (ripgrep/cloudabi-0.0.3.crate) = 4da7ab080c1d18e5881dbcb419d250d0c38387eb
+SHA512 (ripgrep/cloudabi-0.0.3.crate) = 691ed793e9b35ba382f03897f4c0efc31a528394862a27b814ba8993ad30bbe0ebc9808484baf580e8b69d9c13ad1612776a1efd0f6981545b420139ff83592c
+Size (ripgrep/cloudabi-0.0.3.crate) = 22156 bytes
+SHA1 (ripgrep/crossbeam-channel-0.2.4.crate) = ad5ad35f3166c99eb163483db5d240bc809a2335
+RMD160 (ripgrep/crossbeam-channel-0.2.4.crate) = 299bd18c2dc07e16778cd60f18fd39343279ad72
+SHA512 (ripgrep/crossbeam-channel-0.2.4.crate) = d753fc9114e2dc0f7b2e3a4048457a859034f80f6be245f46771933e9352685b20b256ce389223d9426e50ec600c681a819b9cc7701bb888b98f3d2bf18b630b
+Size (ripgrep/crossbeam-channel-0.2.4.crate) = 59889 bytes
+SHA1 (ripgrep/crossbeam-epoch-0.5.2.crate) = ce4dc204456e8fd3c72e8d5dc4ccaa5f710d356c
+RMD160 (ripgrep/crossbeam-epoch-0.5.2.crate) = c62acf757c2a50ed68bdcd3e3b539f48a329352b
+SHA512 (ripgrep/crossbeam-epoch-0.5.2.crate) = 2b54b0e7a3af100e336d9b6b7c9078907de9d98c3694a39f353865b4b618cf004941108d274803d91bfd98eb694ee9d8d593e67efe2d7ccecd5c66dbaad7564e
+Size (ripgrep/crossbeam-epoch-0.5.2.crate) = 34136 bytes
+SHA1 (ripgrep/crossbeam-utils-0.5.0.crate) = fa943563666aa72448a1ad75b117cfe5c37ce540
+RMD160 (ripgrep/crossbeam-utils-0.5.0.crate) = f9ebf06c67cd225a4c4719a9d6618c6644a3fbfa
+SHA512 (ripgrep/crossbeam-utils-0.5.0.crate) = eebb6bf81517c930fdb4c15a8eaf92693907fe58dbf1913a9c2f4315a6c0550eb772cb15c47e2ac4e3f4decdd47f69ea8e42910ea649bd2e2279ad4cbf9d02c4
+Size (ripgrep/crossbeam-utils-0.5.0.crate) = 12162 bytes
+SHA1 (ripgrep/encoding_rs-0.8.6.crate) = 8fb666ec2fb4c6bbcda4d012011c5f8f5b6918ae
+RMD160 (ripgrep/encoding_rs-0.8.6.crate) = 1d4bd893264244ad318b49d0f15af27621db4162
+SHA512 (ripgrep/encoding_rs-0.8.6.crate) = e3bca118c94d947eb0e94ca73affa75092821623e5e32204df8093c181c4f5df58ff9ee54fbbfa5c5215fdf3bfe97f5dcd83dbf289abd86e65e0c0199c812456
+Size (ripgrep/encoding_rs-0.8.6.crate) = 1242813 bytes
+SHA1 (ripgrep/encoding_rs_io-0.1.2.crate) = 0a472d90e5e3e9efd0495460f197cfb437df8fc3
+RMD160 (ripgrep/encoding_rs_io-0.1.2.crate) = 083802cbc86929c3915a212489c67c84d420be9f
+SHA512 (ripgrep/encoding_rs_io-0.1.2.crate) = ba955cfd1e571afab630db77e44fe9ff3c20866686d94be750c15b0d99909b0863deda81704326ae831897e169361ccda7ac831e0d44e8e62f70519b2089e82d
+Size (ripgrep/encoding_rs_io-0.1.2.crate) = 15356 bytes
 SHA1 (ripgrep/fnv-1.0.6.crate) = c27de3ad3f2efcfd015ca605f9a206b5da2cc8f6
 RMD160 (ripgrep/fnv-1.0.6.crate) = 2dd59fa1942e8e496ea4e2e01dc98279a95b5dcf
 SHA512 (ripgrep/fnv-1.0.6.crate) = f1356b3da25f76cb3ccb4336ff54d4967f1dc7523eae6cba21a4349b8ce563516f6a2aa10d626cd5bb6046b55ac2f246e61e4e526a03fad5e78d0ea174841844
@@ -56,127 +84,227 @@
 RMD160 (ripgrep/glob-0.2.11.crate) = 428e7b3db03c18f8a1e96fe0c26d5774eb0496f3
 SHA512 (ripgrep/glob-0.2.11.crate) = 91a1a751bc4ed3b13154aa056180f2b8123c33627cbe972bdd7986fb0b6f1ef90e59abd4128d6e4db5e69523d757440c7df9b9721a61f5ea5a091ffc9843e10e
 Size (ripgrep/glob-0.2.11.crate) = 18065 bytes
-SHA1 (ripgrep/globset-0.3.0.crate) = 2ab892f885fec17c7649934d0fa43d3f4dc45712
-RMD160 (ripgrep/globset-0.3.0.crate) = 6e1d8580c49d8a1ad97def059c2718012b4ef812
-SHA512 (ripgrep/globset-0.3.0.crate) = 53cce0854058e70c869c4d7803dc040866028bb91ef2a5be59f3d93de18452898ec958b035961d536821fe967ad52c074114dcf23d62e0d0a5317b32d264e8bf
-Size (ripgrep/globset-0.3.0.crate) = 21315 bytes
-SHA1 (ripgrep/grep-0.1.8.crate) = d6805224a778f3894580d03b9023766599e791cd
-RMD160 (ripgrep/grep-0.1.8.crate) = 26bc27c904764101f790318abdb47ad7481a535a
-SHA512 (ripgrep/grep-0.1.8.crate) = d0a4e9dd51402ed8036aa5d2cfcdb184538d2bf0c81baac75c73e80d05945a63cb08a931d87fa526695af93271cecaed6650a045904ceaa05ed6e06fd23e537b
-Size (ripgrep/grep-0.1.8.crate) = 236744 bytes
-SHA1 (ripgrep/ignore-0.4.0.crate) = d240bb831c90c8b83a6c93fa8ff05d607abb309c
-RMD160 (ripgrep/ignore-0.4.0.crate) = d4acac9969038353aeca7d05b24109326c8277ca
-SHA512 (ripgrep/ignore-0.4.0.crate) = ebb68ffb421de2ef50f1d8e02f639bd28225c9351b30012bd97c7e6fe5ac99791efeee92f8900f885379ee696a4770e737982f8c1ed2d667ae9ddee1416578e4
-Size (ripgrep/ignore-0.4.0.crate) = 41412 bytes
-SHA1 (ripgrep/lazy_static-1.0.0.crate) = a9069d41c8de2900a62adcb15b69ba00d570a5d4
-RMD160 (ripgrep/lazy_static-1.0.0.crate) = b3be9fd42b94bb13ff7971303fd61c3069c16327
-SHA512 (ripgrep/lazy_static-1.0.0.crate) = 73044fce4d00002d35931d4b28810feb5c28c3debfb7bd570d9a8434cf15c29c17f0daf29ac04d748a32f52a205d5f52ecf69aa395f49d46b825e3fc0cbcd41b
-Size (ripgrep/lazy_static-1.0.0.crate) = 12611 bytes
-SHA1 (ripgrep/libc-0.2.36.crate) = f9179b478aa40379abfa5090a7e8f15d4b6f91cb
-RMD160 (ripgrep/libc-0.2.36.crate) = 1e6dd6dee3ced1c71db2161883afefec1db2c6da
-SHA512 (ripgrep/libc-0.2.36.crate) = 97995c49322f5a3c93df2db08b7372ba3a6da0edc9247cbd3bfb58f9b01315953596154c97c5bca1517b56b8e35e8d03bbf89f9b980aff724977b98bc0d938ed
-Size (ripgrep/libc-0.2.36.crate) = 310575 bytes
-SHA1 (ripgrep/log-0.4.1.crate) = cbfc4127dd3dce06de30beb8ee4a299db8296dd5
-RMD160 (ripgrep/log-0.4.1.crate) = 7f3f029ecc7321bf7105603f50094bdc5ff6820f
-SHA512 (ripgrep/log-0.4.1.crate) = a142f4d230cbe64a4efe2c46055722bf06e7af500c0f14d66f1d7d7fec99d552081ee9541d4a5b3aa5f46bc3be42f7702dff76132cc1eed7734234b2db37c0f0
-Size (ripgrep/log-0.4.1.crate) = 20731 bytes
-SHA1 (ripgrep/memchr-2.0.1.crate) = 17b027562b22417a77b63a3e13f3ad82adf40b50
-RMD160 (ripgrep/memchr-2.0.1.crate) = 4894e0ad3a987cf78a6b4be9974e830865db22c5
-SHA512 (ripgrep/memchr-2.0.1.crate) = 50daeb73062c30b244c8fec965ff0c69c29571022a9228dafd1ed397164956e39fbe260b8adce33522b5cedcd7f9135500ac45d6bc0b5e72bf9e89ebea0954d1
-Size (ripgrep/memchr-2.0.1.crate) = 9858 bytes
+SHA1 (ripgrep/itoa-0.4.2.crate) = e55c734b39a9375de64a61300b4aff902d68619a
+RMD160 (ripgrep/itoa-0.4.2.crate) = dbac232bc7f582c7bb5136b036bac838433efe84
+SHA512 (ripgrep/itoa-0.4.2.crate) = d7201f9bb44f5dce15a90dedfbe6b722aadecf15c3defe1eb1fcb5f8fe64300a594c9acef4f14538129a787044374c71d69e69dbef76d1bb780309fe7d55a796
+Size (ripgrep/itoa-0.4.2.crate) = 10581 bytes
+SHA1 (ripgrep/lazy_static-1.1.0.crate) = 4b95eab679872497f6a64d3ba3e0aac7c623b9a1



Home | Main Index | Thread Index | Old Index