me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-futures-sink-0.3.

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

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Valentin Ignatev 2020-01-15 03:33:05 +03:00 committed by Efraim Flashner
parent 953297c271
commit e6cb6c35f0
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 20 additions and 0 deletions

View File

@ -4243,6 +4243,26 @@ for the futures-rs library.")
@code{Future}s at once and handling the first one to complete.")
(license (list license:expat license:asl2.0))))
(define-public rust-futures-sink-0.3
(package
(name "rust-futures-sink")
(version "0.3.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "futures-sink" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"05iwskzxq3yqvxv9l1kqnd7kkmp0dwc39fnvwrcjsg76z8zf66qp"))))
(build-system cargo-build-system)
(home-page "https://rust-lang-nursery.github.io/futures-rs")
(synopsis "Asynchronous `Sink` trait for the futures-rs library")
(description "This package provides the asynchronous @code{Sink} trait for
the futures-rs library.")
(license (list license:expat license:asl2.0))))
(define-public rust-futures-sink-preview-0.3
(package
(name "rust-futures-sink-preview")