me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-async-ready-3.

* gnu/packages/crates-io.scm (rust-async-ready-3): New variable.
master
Nicolas Goaziou 2021-02-09 12:02:48 +01:00
parent 3c2950f74b
commit 3b2323a169
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 21 additions and 0 deletions

View File

@ -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")