dannym pushed a commit to branch master
in repository guix.
commit c488c7898dc29ffdc93cfcd431d5e308bb835ba9
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Mon May 19 01:38:49 2025 +0200
gnu: rust-faster-hex: Update to 0.10.0.
* gnu/packages/crates-io.scm (rust-faster-hex-0.10): New variable.
Change-Id: I44bbb3e94cb2742f99b2f69fbf247272ba6b33c8
---
gnu/packages/crates-io.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 079f960197..85b63b02f0 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -25833,6 +25833,27 @@ is defined in the HTML specification.")
(description "This package provides a fast floating-point number parser.")
(license (list license:expat license:asl2.0))))
+(define-public rust-faster-hex-0.10
+ (package
+ (name "rust-faster-hex")
+ (version "0.10.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "faster-hex" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0wzvv4a1czxfxmh99cza2y0jps97hm3k1j6r6cs816qp5wnsw8vj"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs (("rust-heapless" ,rust-heapless-0.8)
+ ("rust-serde" ,rust-serde-1))))
+ (home-page "https://github.com/NervosFoundation/faster-hex")
+ (synopsis "Fast hex encoding")
+ (description "This package provides fast hex encoding.")
+ (license license:expat)))
+
(define-public rust-faster-hex-0.9
(package
(name "rust-faster-hex")