efraim pushed a commit to branch rust-team
in repository guix.
commit b4b1323ec5d906ecde023d62797fec54af99b35b
Author: Efraim Flashner <[email protected]>
AuthorDate: Fri Dec 27 13:31:29 2024 +0200
gnu: Add rust-tiny-bench-0.3.
* gnu/packages/crates-check.scm (rust-tiny-bench-0.3): New variable.
Change-Id: Id6848a8d243d10a22812ea4b7a92484f974673f3
---
gnu/packages/crates-check.scm | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/gnu/packages/crates-check.scm b/gnu/packages/crates-check.scm
index 5ffb460c90..5bb0676ab2 100644
--- a/gnu/packages/crates-check.scm
+++ b/gnu/packages/crates-check.scm
@@ -764,6 +764,23 @@ integers, floats, tuples, booleans, lists, strings,
options and results.")
#:cargo-development-inputs
(("rust-quickcheck" ,rust-quickcheck-0.8))))))
+(define-public rust-tiny-bench-0.3
+ (package
+ (name "rust-tiny-bench")
+ (version "0.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "tiny-bench" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0j2rsyspqbk89y6zjndpc6d36ljir1ymyj15vv6jxhaphl6q9nng"))))
+ (build-system cargo-build-system)
+ (home-page "https://github.com/EmbarkStudios/tiny-bench")
+ (synopsis "tiny benchmarking library")
+ (description "This package provides a tiny benchmarking library.")
+ (license (list license:expat license:asl2.0))))
+
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar