Archived
1
0
Fork 0

gnu: Add rust-futures-channel-0.3.

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

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

View file

@ -4070,6 +4070,31 @@ featuring zero allocations, composability, and iterator-like interfaces.")
(license (list license:asl2.0
license:expat))))
(define-public rust-futures-channel-0.3
(package
(name "rust-futures-channel")
(version "0.3.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "futures-channel" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"11lvk749n61654ad40xn751gmxzwb697nwh36s5gs0ni2z59ibpw"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f
#:cargo-inputs
(("rust-futures-core" ,rust-futures-core-0.3)
("rust-futures-sink" ,rust-futures-sink-0.3))))
(home-page "https://rust-lang-nursery.github.io/futures-rs")
(synopsis "Channels for asynchronous communication using futures-rs")
(description
"Channels for asynchronous communication using futures-rs.")
(license (list license:expat license:asl2.0))))
(define-public rust-futures-channel-preview-0.3
(package
(name "rust-futures-channel-preview")