efraim pushed a commit to branch rust-team
in repository guix.
commit 5f49b4ccce229feacc69401e41a180427db2afd6
Author: Efraim Flashner <[email protected]>
AuthorDate: Wed Oct 25 09:56:11 2023 +0300
gnu: Add rust-rstest-0.13.
* gnu/packages/crates-io.scm (rust-rstest-0.13): New variable.
Change-Id: If3aaad4342441c752617f2fa739f53e3e0abfc54
---
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 fb55b062f9..f927a85c5d 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -61493,6 +61493,27 @@ contains the API endpoint response objects.")
and table-based tests.")
(license (list license:expat license:asl2.0))))
+(define-public rust-rstest-0.13
+ (package
+ (inherit rust-rstest-0.15)
+ (name "rust-rstest")
+ (version "0.13.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "rstest" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1p04kbsvk2xna7fk5657p0zi76qrcglrxkw33ay147fbjdgjjfdr"))))
+ (arguments
+ `(#:skip-build? #t ; Cut the dependency graph.
+ #:cargo-inputs
+ (("rust-async-std" ,rust-async-std-1)
+ ("rust-futures" ,rust-futures-0.3)
+ ("rust-futures-timer" ,rust-futures-timer-3)
+ ("rust-rstest-macros" ,rust-rstest-macros-0.13)
+ ("rust-rustc-version" ,rust-rustc-version-0.4))))))
+
(define-public rust-rstest-0.12
(package
(inherit rust-rstest-0.15)