gnu: Add rust-futures-preview-0.3.

* gnu/packages/crates-io.scm (rust-futures-preview-0.3): New variable.
This commit is contained in:
Efraim Flashner 2020-03-18 22:51:54 +02:00
parent 07bf6cbc49
commit 8f000e87a2
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -5889,6 +5889,36 @@ (define-public rust-futures-macro-0.3
"This package provides the @code{futures-rs} procedural macro implementations.")
(license (list license:expat license:asl2.0))))
(define-public rust-futures-preview-0.3
(package
(name "rust-futures-preview")
(version "0.3.0-alpha.17")
(source
(origin
(method url-fetch)
(uri (crate-uri "futures-preview" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0rsq8d1ciyg37i5ysd9dynwmklwy4sx466z9a72687wsi8fgj9dz"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f
#:cargo-inputs
(("rust-futures-channel-preview" ,rust-futures-channel-preview-0.3)
("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
("rust-futures-executor-preview" ,rust-futures-executor-preview-0.3)
("rust-futures-io-preview" ,rust-futures-io-preview-0.3)
("rust-futures-sink-preview" ,rust-futures-sink-preview-0.3)
("rust-futures-util-preview" ,rust-futures-util-preview-0.3))))
(home-page "https://rust-lang-nursery.github.io/futures-rs")
(synopsis "An implementation of futures and streams")
(description
"An implementation of futures and streams featuring zero allocations,
composability, and iterator-like interfaces.")
(license (list license:expat license:asl2.0))))
(define-public rust-futures-select-macro-preview-0.3
(package
(name "rust-futures-select-macro-preview")