diff options
author | Franz Geffke <m@f-a.nz> | 2025-03-26 16:47:29 +0000 |
---|---|---|
committer | Franz Geffke <m@f-a.nz> | 2025-03-26 16:47:29 +0000 |
commit | d4c380720a56bbba1fe1f9b4fe0ba19c5cead003 (patch) | |
tree | 1bd78a292242857dc5b3244c145abcb2559d27ea | |
parent | 240ebc659bd6314e2def8d283ecff4e3fef2f408 (diff) |
px: rust-rayon-core: Added v1.10.2
-rw-r--r-- | px/packages/crates-io.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/px/packages/crates-io.scm b/px/packages/crates-io.scm index cca201b..6b5f62c 100644 --- a/px/packages/crates-io.scm +++ b/px/packages/crates-io.scm @@ -479,4 +479,30 @@ widely-used Serde framework.") (synopsis "Simple work-stealing parallelism for Rust") (description "This package provides Simple work-stealing parallelism for Rust.") + (license (list license:expat license:asl2.0)))) + +(define-public rust-rayon-core-1.10 + (package + (name "rust-rayon-core") + (version "1.10.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "rayon-core" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0nw3ds7agdc9a3swyjhzw9ndr60ic54apk8108676kwmy4jhcsim")))) + (build-system cargo-build-system) + (arguments + `(#: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)) + #:cargo-development-inputs (("rust-libc" ,rust-libc-0.2) + ("rust-rand" ,rust-rand-0.8) + ("rust-rand-xorshift" ,rust-rand-xorshift-0.3) + ("rust-scoped-tls" ,rust-scoped-tls-1)))) + (home-page "https://github.com/rayon-rs/rayon") + (synopsis "Core APIs for Rayon") + (description "This package provides Core APIs for Rayon.") (license (list license:expat license:asl2.0))))
\ No newline at end of file |