diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-11-10 12:24:27 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-11-10 12:24:27 +0200 |
commit | 4e45e89a7b9b79fc3ec527cb3ad243f9f266660a (patch) | |
tree | 98fd365d94fd3fa565080ff57cc80d0f4664dfc4 | |
parent | 7a4a77e05ac0ff29f7769bb689358dc76e2f58f4 (diff) |
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.
-rw-r--r-- | gnu/packages/crates-io.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 4ccf463e23..087465186f 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 |