gnu: Add rust-futures-macro-0.3.

* gnu/packages/crates-io.scm (rust-futures-macro-0.3): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Valentin Ignatev 2020-01-19 15:50:47 +03:00 committed by Efraim Flashner
parent e8f03c5059
commit c5ac44e659
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -4756,6 +4756,32 @@ (define-public rust-futures-io-preview-0.3
(license (list license:asl2.0
license:expat))))
(define-public rust-futures-macro-0.3
(package
(name "rust-futures-macro")
(version "0.3.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "futures-macro" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0r3px32wgqfbmfyb1lrj9wplvjris5magdyhfr7xnyjk2mncbrsj"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
("rust-proc-macro2" ,rust-proc-macro2-1.0)
("rust-quote" ,rust-quote-1.0)
("rust-syn" ,rust-syn-1.0))))
(home-page "https://rust-lang-nursery.github.io/futures-rs")
(synopsis "Futures-rs procedural macro implementations")
(description
"This package provides the @code{futures-rs} procedural macro implementations.")
(license (list license:expat license:asl2.0))))
(define-public rust-futures-select-macro-preview-0.3
(package
(name "rust-futures-select-macro-preview")