mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 23:48:07 -05:00
gnu: rust-regex-1: Update to 1.9.1.
* gnu/packages/crates-io.scm (rust-regex-1): Update to 1.9.1. [cargo-inputs]: Add rust-regex-automata-0.3. Replace rust-aho-corasick-0.7 with 1, rust-regex-syntax-0.6 with 0.7. [cargo-development-inputs]: Add rust-anyhow-1, rust-doc-comment-0.3, rust-env-logger-0.9, rust-once-cell-1, rust-regex-test-0.1. Remove rust-lazy-static-1, rust-rand-0.8.
This commit is contained in:
parent
49f740e432
commit
e56b33b784
1 changed files with 10 additions and 6 deletions
|
@ -52006,24 +52006,28 @@ (define-public rust-refpool-0.4
|
|||
(define-public rust-regex-1
|
||||
(package
|
||||
(name "rust-regex")
|
||||
(version "1.7.1")
|
||||
(version "1.9.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "regex" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0czp6hxg02lm02hvlhp9xjkd65cjcagw119crnaznwd5idsabaj8"))))
|
||||
(base32 "0xdmrvs8fy7yw2bdk76mjbhzqibms7g4ljg468jwzxr0qa7ydsmj"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-aho-corasick" ,rust-aho-corasick-0.7)
|
||||
(("rust-aho-corasick" ,rust-aho-corasick-1)
|
||||
("rust-memchr" ,rust-memchr-2)
|
||||
("rust-regex-syntax" ,rust-regex-syntax-0.6))
|
||||
("rust-regex-automata" ,rust-regex-automata-0.3)
|
||||
("rust-regex-syntax" ,rust-regex-syntax-0.7))
|
||||
#:cargo-development-inputs
|
||||
(("rust-lazy-static" ,rust-lazy-static-1)
|
||||
(("rust-anyhow" ,rust-anyhow-1)
|
||||
("rust-doc-comment" ,rust-doc-comment-0.3)
|
||||
("rust-env-logger" ,rust-env-logger-0.9)
|
||||
("rust-once-cell" ,rust-once-cell-1)
|
||||
("rust-quickcheck" ,rust-quickcheck-1)
|
||||
("rust-rand" ,rust-rand-0.8))))
|
||||
("rust-regex-test" ,rust-regex-test-0.1))))
|
||||
(home-page "https://github.com/rust-lang/regex")
|
||||
(synopsis "Regular expressions for Rust")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue