mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: Add rust-async-recursion-0.3.
* gnu/packages/crates-io.scm (rust-async-recursion-0.3): New variable.
This commit is contained in:
parent
f04feceab6
commit
c7f6affa47
1 changed files with 25 additions and 0 deletions
|
@ -2900,6 +2900,31 @@ (define-public rust-async-ready-3
|
|||
futures.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-async-recursion-0.3
|
||||
(package
|
||||
(name "rust-async-recursion")
|
||||
(version "0.3.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "async-recursion" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "18npixkwglnpvjgp89fpcyzf820ngx3a1hxp4hqbkw81p9b8dmyp"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-proc-macro2" ,rust-proc-macro2-1)
|
||||
("rust-quote" ,rust-quote-1)
|
||||
("rust-syn" ,rust-syn-1))))
|
||||
(home-page "https://github.com/dcchut/async-recursion")
|
||||
(synopsis "Recursion for async functions")
|
||||
(description
|
||||
"This package provides a procedural macro for recursive async
|
||||
functions.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-async-std-1
|
||||
(package
|
||||
(name "rust-async-std")
|
||||
|
|
Loading…
Reference in a new issue