mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-06 11:26:55 -05:00
gnu: Add rust-argminmax-0.6.
* gnu/packages/crates-io.scm (rust-argminmax-0.6): New variable. Change-Id: I4b997d0305dad407034ca8afa2c36e3faeed4360
This commit is contained in:
parent
b518645153
commit
6a6522e768
1 changed files with 38 additions and 0 deletions
|
@ -2553,6 +2553,44 @@ (define-public rust-argmax-0.3
|
||||||
too long errors.")
|
too long errors.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-argminmax-0.6
|
||||||
|
(package
|
||||||
|
(name "rust-argminmax")
|
||||||
|
(version "0.6.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "argminmax" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1alfp2wfh3pms6f5fj8qw9birndgac2jd2shdl2xascxsrclnhjj"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin (substitute* "Cargo.toml"
|
||||||
|
(("\"=([[:digit:]]+(\\.[[:digit:]]+)*)" _ version)
|
||||||
|
(string-append "\"^" version)))))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t ; `#![feature]` may not be used on the stable release channel
|
||||||
|
#:cargo-inputs (("rust-arrow" ,rust-arrow-5)
|
||||||
|
("rust-arrow2" ,rust-arrow2-0.7)
|
||||||
|
("rust-half" ,rust-half-2)
|
||||||
|
("rust-ndarray" ,rust-ndarray-0.15)
|
||||||
|
("rust-num-traits" ,rust-num-traits-0.2))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-codspeed-criterion-compat" ,rust-codspeed-criterion-compat-2)
|
||||||
|
("rust-criterion" ,rust-criterion-0.5)
|
||||||
|
("rust-rand" ,rust-rand-0.8)
|
||||||
|
("rust-rstest" ,rust-rstest-0.18)
|
||||||
|
("rust-rstest-reuse" ,rust-rstest-reuse-0.6))))
|
||||||
|
(home-page "https://github.com/jvdd/argminmax")
|
||||||
|
(synopsis
|
||||||
|
"ArgMinMax (argmin & argmax in 1 function) with SIMD for floats and integers")
|
||||||
|
(description
|
||||||
|
"@code{ArgMinMax} (argmin & argmax in 1 function) with SIMD for floats and
|
||||||
|
integers.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-ariadne-0.1
|
(define-public rust-ariadne-0.1
|
||||||
(package
|
(package
|
||||||
(name "rust-ariadne")
|
(name "rust-ariadne")
|
||||||
|
|
Loading…
Reference in a new issue