mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: rust-strength-reduce-0.2: Update to 0.2.4.
* gnu/packages/crates-io.scm (rust-strength-reduce-0.2): Update to 0.2.4. [arguments]<#:skip-build?>: Drop option. <#:cargo-development-inputs>: Add rust-num-bigint-0.4, rust-proptest-1, rust-rand-0.8. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: Ib7e0c52d78c6f4d91c8ee31afffd17878434e1a5
This commit is contained in:
parent
38ef48cc41
commit
d1d9d36430
1 changed files with 8 additions and 4 deletions
|
@ -75424,17 +75424,21 @@ (define-public rust-streaming-stats-0.2
|
||||||
(define-public rust-strength-reduce-0.2
|
(define-public rust-strength-reduce-0.2
|
||||||
(package
|
(package
|
||||||
(name "rust-strength-reduce")
|
(name "rust-strength-reduce")
|
||||||
(version "0.2.3")
|
(version "0.2.4")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "strength_reduce" version))
|
(uri (crate-uri "strength_reduce" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0m12phq654mfxpmh2h5akqkag5ha6nlhjc2bp9jwarr5r1qjzzx3"))))
|
(base32 "10jdq9dijjdkb20wg1dmwg447rnj37jbq0mwvbadvqi2gys5x2gy"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments `(#:skip-build? #t))
|
(arguments
|
||||||
(home-page "http://github.com/ejmahler/strength_reduce")
|
`(#:cargo-development-inputs
|
||||||
|
(("rust-num-bigint" ,rust-num-bigint-0.4)
|
||||||
|
("rust-proptest" ,rust-proptest-1)
|
||||||
|
("rust-rand" ,rust-rand-0.8))))
|
||||||
|
(home-page "https://github.com/ejmahler/strength_reduce")
|
||||||
(synopsis "Faster integer division and modulus operations")
|
(synopsis "Faster integer division and modulus operations")
|
||||||
(description "Strength_reduce implements integer division and modulo via
|
(description "Strength_reduce implements integer division and modulo via
|
||||||
@dfn{arithmetic strength reduction}. Modern processors can do multiplication
|
@dfn{arithmetic strength reduction}. Modern processors can do multiplication
|
||||||
|
|
Loading…
Reference in a new issue