mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 19:57:39 -05:00
gnu: Add rust-async-macros-1.
* gnu/packages/crates-io.scm (rust-async-macros-1): New variable.
This commit is contained in:
parent
e8cef78758
commit
fa660cfbea
1 changed files with 24 additions and 0 deletions
|
@ -1269,6 +1269,30 @@ (define-public rust-async-log-attributes-1
|
|||
crate.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-async-macros-1
|
||||
(package
|
||||
(name "rust-async-macros")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "async-macros" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1fib4wxiym9f045xqb8a2gyfa8yym3hb62g4jqjfmzn14jdxa8g4"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #false
|
||||
#:cargo-inputs
|
||||
(("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
|
||||
("rust-pin-utils" ,rust-pin-utils-0.1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-futures-preview" ,rust-futures-preview-0.3))))
|
||||
(home-page "https://github.com/async-rs/async-macros")
|
||||
(synopsis "Macros for async-std")
|
||||
(description "Macros for async-std.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-async-stream-0.3
|
||||
(package
|
||||
(name "rust-async-stream")
|
||||
|
|
Loading…
Reference in a new issue