diff options
author | Nicolas Graves <[email protected]> | 2024-11-06 00:15:02 +0100 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2025-01-07 09:07:13 +0200 |
commit | a8b22544e510bd8f89f560083466750228025e2e (patch) | |
tree | fe03f3a7139296ec9992cf5fdc189ee67f09930f | |
parent | c03ba10b3cd6425dbc23a5bf397406b4d0e24f63 (diff) |
gnu: rust-crc-any-2: Update to 2.5.0.
* gnu/packages/crates-io.scm (rust-crc-any-2): Update to 2.5.0.
[cargo-inputs]: Replace rust-heapless-0.5 with 0.8.
Signed-off-by: Efraim Flashner <[email protected]>
Change-Id: I9a2a436438c21654f805797c3fcda021324d16d0
-rw-r--r-- | gnu/packages/crates-io.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 4115eda49b..3c3a4bdc17 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -16323,20 +16323,19 @@ to the @code{is_x86_feature_detected!} macro.") (define-public rust-crc-any-2 (package (name "rust-crc-any") - (version "2.3.12") + (version "2.5.0") (source (origin (method url-fetch) (uri (crate-uri "crc-any" version)) - (file-name - (string-append name "-" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0fq85y5akcadahnj5nqbs47qhgp5cpfn2z19zc3gp4wpxr3989kr")))) + (base32 "0wzs26q5cf29fhfnrkrjsr8dpai0rlm4im8b53by8rbrbzzwjbm6")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs (("rust-debug-helper" ,rust-debug-helper-0.3) - ("rust-heapless" ,rust-heapless-0.5)) + ("rust-heapless" ,rust-heapless-0.8)) #:cargo-development-inputs (("rust-bencher" ,rust-bencher-0.1)))) (home-page "https://magiclen.org/crc-any") |