diff options
author | Valentin Ignatev <valentignatev@gmail.com> | 2020-01-15 03:55:21 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-02-11 21:52:44 +0200 |
commit | ff0c3862d0e348e3c87eb896e28428fb3721cc52 (patch) | |
tree | 54904599cfa907f1ac88d2c2994d31466637891f | |
parent | ded7d58646acede8833d1457d11fad0961e4f7d3 (diff) | |
download | patches-ff0c3862d0e348e3c87eb896e28428fb3721cc52.tar patches-ff0c3862d0e348e3c87eb896e28428fb3721cc52.tar.gz |
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>
-rw-r--r-- | gnu/packages/crates-io.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 85fc0b66ed..d4bc1c43e1 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -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") |