mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 00:42:17 -05:00
gnu: Add rust-async-ready-3.
* gnu/packages/crates-io.scm (rust-async-ready-3): New variable.
This commit is contained in:
parent
3c2950f74b
commit
3b2323a169
1 changed files with 21 additions and 0 deletions
|
@ -2482,6 +2482,27 @@ (define-public rust-async-process-1
|
||||||
a running Child leaks its resources.")
|
a running Child leaks its resources.")
|
||||||
(license (list license:asl2.0 license:expat))))
|
(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
|
(define-public rust-async-std-0.99
|
||||||
(package
|
(package
|
||||||
(name "rust-async-std")
|
(name "rust-async-std")
|
||||||
|
|
Loading…
Reference in a new issue