diff options
author | Nicolas Graves <[email protected]> | 2024-11-06 00:15:05 +0100 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2025-01-07 10:16:40 +0200 |
commit | d1d9d36430679257cebd2dcdc5260679cf929b10 (patch) | |
tree | 2419523e37ea39d9a98d538a458946bc9acabc76 | |
parent | 38ef48cc415b805722c4c7cf0221e02466c7d0ff (diff) |
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 <[email protected]>
Change-Id: Ib7e0c52d78c6f4d91c8ee31afffd17878434e1a5
-rw-r--r-- | gnu/packages/crates-io.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 02779932d6..7cc69d7898 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -75424,17 +75424,21 @@ iterated over only by reference rather than by value.") (define-public rust-strength-reduce-0.2 (package (name "rust-strength-reduce") - (version "0.2.3") + (version "0.2.4") (source (origin (method url-fetch) (uri (crate-uri "strength_reduce" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0m12phq654mfxpmh2h5akqkag5ha6nlhjc2bp9jwarr5r1qjzzx3")))) + (base32 "10jdq9dijjdkb20wg1dmwg447rnj37jbq0mwvbadvqi2gys5x2gy")))) (build-system cargo-build-system) - (arguments `(#:skip-build? #t)) - (home-page "http://github.com/ejmahler/strength_reduce") + (arguments + `(#: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") (description "Strength_reduce implements integer division and modulo via @dfn{arithmetic strength reduction}. Modern processors can do multiplication |