me
/
guix
Archived
1
0
Fork 0

gnu: rust-grep-searcher-0.1: Update to 0.1.13.

* gnu/packages/crates-io.scm (rust-grep-searcher-0.1): Update to 0.1.13.
[cargo-inputs]: Add rust-memchr-2.  Replace rust-bstr-0.2 with 1,
rust-memmap2-0.3 with 0.9.  Remove rust-bytecount-0.6.
[home-page]: Update to exact location of crate within ripgrep.

Change-Id: Id49df7543faa055b03a825551a04ee0d32b97425
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Jaeme Sifat 2023-12-10 18:06:51 -05:00 committed by Efraim Flashner
parent a49f801289
commit e5ed7b8ac2
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 14 additions and 17 deletions

View File

@ -33828,30 +33828,27 @@ provides standard printing of search results, similar to grep itself.")
(define-public rust-grep-searcher-0.1
(package
(name "rust-grep-searcher")
(version "0.1.8")
(version "0.1.13")
(source
(origin
(method url-fetch)
(uri (crate-uri "grep-searcher" version))
(file-name
(string-append name "-" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0gf2qkkfsywvzrqvfx6h88qzb68zmnvggvid1ljdqam51glvvgbz"))))
(base32 "0m1w35d9wnpv157g0adj3grqw0nkacqxv14mhgc65v4vyvj6llxs"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-bstr" ,rust-bstr-0.2)
("rust-bytecount" ,rust-bytecount-0.6)
("rust-encoding-rs" ,rust-encoding-rs-0.8)
("rust-encoding-rs-io" ,rust-encoding-rs-io-0.1)
("rust-grep-matcher" ,rust-grep-matcher-0.1)
("rust-log" ,rust-log-0.4)
("rust-memmap" ,rust-memmap2-0.3))
#:cargo-development-inputs
(("rust-grep-regex" ,rust-grep-regex-0.1)
("rust-regex" ,rust-regex-1))))
(home-page "https://github.com/BurntSushi/ripgrep")
`(#:cargo-inputs (("rust-bstr" ,rust-bstr-1)
("rust-encoding-rs" ,rust-encoding-rs-0.8)
("rust-encoding-rs-io" ,rust-encoding-rs-io-0.1)
("rust-grep-matcher" ,rust-grep-matcher-0.1)
("rust-log" ,rust-log-0.4)
("rust-memchr" ,rust-memchr-2)
("rust-memmap2" ,rust-memmap2-0.9))
#:cargo-development-inputs (("rust-grep-regex" ,rust-grep-regex-0.1)
("rust-regex" ,rust-regex-1))))
(home-page
"https://github.com/BurntSushi/ripgrep/tree/master/crates/searcher")
(synopsis "Line oriented regex searching as a library")
(description
"Fast line oriented regex searching as a library.")