gnu: Add rust-futures-core-0.3.

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

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

View file

@ -4095,6 +4095,27 @@ (define-public rust-futures-channel-preview-0.3
"Channels for asynchronous communication using futures-rs.")
(license (list license:expat license:asl2.0))))
(define-public rust-futures-core-0.3
(package
(name "rust-futures-core")
(version "0.3.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "futures-core" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0rh8q6pg08dizk5hwksvjgvkw26s3sr3b199nggv3ypyg914qmkr"))))
(build-system cargo-build-system)
(arguments '(#:tests? #f))
(home-page "https://rust-lang-nursery.github.io/futures-rs")
(synopsis "Core traits and types in for the `futures` library")
(description "This package provides the core traits and types in for the
@code{futures} library.")
(license (list license:expat license:asl2.0))))
(define-public rust-futures-core-preview-0.3
(package
(name "rust-futures-core-preview")