diff options
author | Jakub Kądziołka <kuba@kadziolka.net> | 2020-06-24 19:47:08 +0200 |
---|---|---|
committer | Jakub Kądziołka <kuba@kadziolka.net> | 2020-06-25 02:55:10 +0200 |
commit | 3472ec0257c16b558f40fee38f94a0fcd647fa71 (patch) | |
tree | 80deec0669247bf9db37a525eb76f1e3dd197ffc /gnu | |
parent | 1aabcf92224e41e3de88bcdc148e412316ab4fb4 (diff) | |
download | guix-3472ec0257c16b558f40fee38f94a0fcd647fa71.tar.gz |
gnu: rust-grep-regex-0.1: Update to 0.1.8.
* gnu/packages/crates-io.scm (rust-grep-regex-0.1): Update to 0.1.8. [cargo-inputs]: Add rust-bstr-0.2. Replace rust-thread-local-0.3 with 1.0. Remove rust-utf8-ranges-1.0.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 100c63d264..a6541dbdcf 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -9297,7 +9297,7 @@ standard printing of search results, similar to grep itself.") (define-public rust-grep-regex-0.1 (package (name "rust-grep-regex") - (version "0.1.4") + (version "0.1.8") (source (origin (method url-fetch) @@ -9306,17 +9306,17 @@ standard printing of search results, similar to grep itself.") (string-append name "-" version ".tar.gz")) (sha256 (base32 - "090k1sbn4jq680dmgp1jyqs7f9dzn198k0806kc8f40jcjazd88n")))) + "1lm3mpp93m8qw6sgcqw64inadp0z061x3xb0pnn51684594mxfm7")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs (("rust-aho-corasick" ,rust-aho-corasick-0.7) + ("rust-bstr" ,rust-bstr-0.2) ("rust-grep-matcher" ,rust-grep-matcher-0.1) ("rust-log" ,rust-log-0.4) ("rust-regex" ,rust-regex-1) ("rust-regex-syntax" ,rust-regex-syntax-0.6) - ("rust-thread-local" ,rust-thread-local-0.3) - ("rust-utf8-ranges" ,rust-utf8-ranges-1.0)))) + ("rust-thread-local" ,rust-thread-local-1.0)))) (home-page "https://github.com/BurntSushi/ripgrep") (synopsis "Use Rust's regex library with the grep crate") (description |