mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add rust-maybe-rayon-0.1.
* gnu/packages/crates-io.scm (rust-maybe-rayon-0.1): New variable.
This commit is contained in:
parent
e39b8ae5aa
commit
fb1198e8b7
1 changed files with 20 additions and 0 deletions
|
@ -33705,6 +33705,26 @@ (define-public rust-matrixmultiply-0.1
|
|||
`(#:cargo-inputs (("rust-rawpointer" ,rust-rawpointer-0.1))
|
||||
#:cargo-development-inputs (("rust-bencher" ,rust-bencher-0.1))))))
|
||||
|
||||
(define-public rust-maybe-rayon-0.1
|
||||
(package
|
||||
(name "rust-maybe-rayon")
|
||||
(version "0.1.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "maybe-rayon" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "06cmvhj4n36459g327ng5dnj8d58qs472pv5ahlhm7ynxl6g78cf"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-cfg-if" ,rust-cfg-if-1)
|
||||
("rust-rayon" ,rust-rayon-1))))
|
||||
(home-page "https://github.com/shssoichiro/maybe-rayon")
|
||||
(synopsis "Either acts as rayon or creates a single-threaded facade")
|
||||
(description "Either acts as rayon or creates a single-threaded facade")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-maybe-uninit-2
|
||||
(package
|
||||
(name "rust-maybe-uninit")
|
||||
|
|
Loading…
Reference in a new issue