guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

28/272: gnu: Add rust-async-ready-3.


From: guix-commits
Subject: 28/272: gnu: Add rust-async-ready-3.
Date: Sat, 13 Feb 2021 05:53:52 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 3b2323a16952f25b90711794d3d76cda91f47c4e
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Feb 9 12:02:48 2021 +0100

    gnu: Add rust-async-ready-3.
    
    * gnu/packages/crates-io.scm (rust-async-ready-3): New variable.
---
 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 9227df5..94edad6 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -2482,6 +2482,27 @@ This is unlike the process API in the standard library, 
where dropping
 a running Child leaks its resources.")
     (license (list license:asl2.0 license:expat))))
 
+(define-public rust-async-ready-3
+  (package
+    (name "rust-async-ready")
+    (version "3.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "async-ready" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "09xw34q0k48r1bvs3s1l2a1mglz98l7zjbkdcy861k8zsyfwfw4l"))))
+    (build-system cargo-build-system)
+    (arguments `(#:skip-build? #t))
+    (home-page "https://github.com/rustasync/async-ready";)
+    (synopsis "Async readiness traits")
+    (description
+     "This package provides Async readiness traits.  Those can be useful when
+implementing async state machines that can later be wrapped in dedicated
+futures.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-async-std-0.99
   (package
     (name "rust-async-std")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]