This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 4e45e89 gnu: rust-regex-1: Fix building.
4e45e89 is described below
commit 4e45e89a7b9b79fc3ec527cb3ad243f9f266660a
Author: Efraim Flashner <[email protected]>
AuthorDate: Wed Nov 10 12:24:27 2021 +0200
gnu: rust-regex-1: Fix building.
* gnu/packages/crates-io.scm (rust-regex-1)[cargo-development-inputs]:
Replace rust-quickcheck-0.8 with 1, rust-rand-0.6 with 0.8.
---
gnu/packages/crates-io.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 4ccf463..0874651 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -40294,8 +40294,8 @@ memory to speed up reallocation.")
("rust-regex-syntax" ,rust-regex-syntax-0.6))
#:cargo-development-inputs
(("rust-lazy-static" ,rust-lazy-static-1)
- ("rust-quickcheck" ,rust-quickcheck-0.8)
- ("rust-rand" ,rust-rand-0.6))))
+ ("rust-quickcheck" ,rust-quickcheck-1)
+ ("rust-rand" ,rust-rand-0.8))))
(home-page "https://github.com/rust-lang/regex")
(synopsis "Regular expressions for Rust")
(description