gnu: Add rust-futures-io-preview.

* gnu/packages/crates-io.scm (rust-futures-io-preview): New variable.
master
Efraim Flashner 2019-08-28 15:53:55 +03:00
parent 36bd543afc
commit c4b7a9abb6
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 20 additions and 0 deletions

View File

@ -478,6 +478,26 @@ featuring zero allocations, composability, and iterator-like interfaces.")
(license (list license:asl2.0
license:expat))))
(define-public rust-futures-io-preview
(package
(name "rust-futures-io-preview")
(version "0.3.0-alpha.17")
(source
(origin
(method url-fetch)
(uri (crate-uri "futures-io-preview" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0fhvwhdb8ywjjbfng0ra1r8yyc9yzpyxg9sv3spb3f7w0lk40bh8"))))
(build-system cargo-build-system)
(home-page "https://rust-lang-nursery.github.io/futures-rs/")
(synopsis "Async read and write traits for the futures library")
(description "This crate provides the @code{AsyncRead} and
@code{AsyncWrite} traits for the @code{futures-rs} library.")
(license (list license:asl2.0
license:expat))))
(define-public rust-hex
(package
(name "rust-hex")