me
/
guix
Archived
1
0
Fork 0

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>
master
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
1 changed files with 21 additions and 0 deletions

View File

@ -4095,6 +4095,27 @@ featuring zero allocations, composability, and iterator-like interfaces.")
"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")