mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: Add rust-futures-preview-0.3.
* gnu/packages/crates-io.scm (rust-futures-preview-0.3): New variable.
This commit is contained in:
parent
07bf6cbc49
commit
8f000e87a2
1 changed files with 30 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue