guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

15/19: gnu: Add rust-futures-core-0.3.


From: guix-commits
Subject: 15/19: gnu: Add rust-futures-core-0.3.
Date: Tue, 11 Feb 2020 15:29:04 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit ff0c3862d0e348e3c87eb896e28428fb3721cc52
Author: Valentin Ignatev <address@hidden>
AuthorDate: Wed Jan 15 03:55:21 2020 +0300

    gnu: Add rust-futures-core-0.3.
    
    * gnu/packages/crates-io.scm (rust-futures-core-0.3): New variable.
    
    Signed-off-by: Efraim Flashner <address@hidden>
---
 gnu/packages/crates-io.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 85fc0b6..d4bc1c4 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]