diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-10-01 16:37:16 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-10-18 11:35:48 +0300 |
commit | 047e84ae9569795310854176627e9cd389a1f69e (patch) | |
tree | 632021106e0976b4b35e2c1b9777a1d3e8130d5e | |
parent | 482872a547f1b0347923c6f9809779041ced8d75 (diff) |
gnu: rust-rayon-core-1: Update to 1.12.0.
* gnu/packages/crates-io.scm (rust-rayon-core-1): Update to 1.12.0.
[cargo-inputs]: Remove rust-crossbeam-channel-0.5, rust-num-cpus-1.
-rw-r--r-- | gnu/packages/crates-io.scm | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 664948701e..c599eda1d8 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -53795,24 +53795,20 @@ Rust.") (define-public rust-rayon-core-1 (package (name "rust-rayon-core") - (version "1.10.1") + (version "1.12.0") (source (origin (method url-fetch) (uri (crate-uri "rayon-core" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1lvavqk42lmll47q008j8y6nw54f3sfvcjlbaa26iaq0bnpi1i6a")))) + (base32 "1vaq0q71yfvcwlmia0iqf6ixj2fibjcf2xjy92n1m1izv1mgpqsw")))) (build-system cargo-build-system) (arguments - ;; One of the tests attempts to overflow the stack, but the compiler has - ;; since gotten smarter and the test became defective. - `(#:tests? #f + `(#:tests? #f ; `Sender<usize>` cannot be shared between threads safely #:cargo-inputs - (("rust-crossbeam-channel" ,rust-crossbeam-channel-0.5) - ("rust-crossbeam-deque" ,rust-crossbeam-deque-0.8) - ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.8) - ("rust-num-cpus" ,rust-num-cpus-1)) + (("rust-crossbeam-deque" ,rust-crossbeam-deque-0.8) + ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.8)) #:cargo-development-inputs (("rust-libc" ,rust-libc-0.2) ("rust-rand" ,rust-rand-0.8) |