diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-12-20 00:23:53 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-12-28 21:54:44 +0100 |
commit | 76ed409e22ccc646ead95e45a069fcc908cc4b89 (patch) | |
tree | 13a6d1386d4f44219b7fdca0655a606ed884c759 | |
parent | 06f2b1e6eaa020c55829b49bfcb6597752435079 (diff) | |
download | guix-76ed409e22ccc646ead95e45a069fcc908cc4b89.tar.gz |
gnu: rust-futures-select-macro-preview-0.3: Update to 0.3.0-alpha.19.
* gnu/packages/crates-io.scm (rust-futures-select-macro-preview-0.3): Update to 0.3.0-alpha.19. [arguments]: Update rust-proc-macro2, rust-quote and rust-sync Cargo inputs. [description]: Use complete sentences.
-rw-r--r-- | gnu/packages/crates-io.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index b17881947f..36566d65f3 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -10116,7 +10116,7 @@ composability, and iterator-like interfaces.") (define-public rust-futures-select-macro-preview-0.3 (package (name "rust-futures-select-macro-preview") - (version "0.3.0-alpha.17") + (version "0.3.0-alpha.19") (source (origin (method url-fetch) @@ -10125,20 +10125,20 @@ composability, and iterator-like interfaces.") (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1a90ivjzkgz7msiz5si05xzi8xwsk5gar1gkrbmrgqpgkliqd7a6")))) + "1xsq55cf2rnf7k6r04q8wynmxiy9svm3pi840vjva47bc0sy8anz")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5) - ("rust-proc-macro2" ,rust-proc-macro2-0.4) - ("rust-quote" ,rust-quote-0.6) - ("rust-syn" ,rust-syn-0.15)))) + ("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) (home-page "https://github.com/rust-lang/futures-rs") (synopsis "Handle the first Future to complete") (description - "The @code{select!} macro for waiting on multiple different -@code{Future}s at once and handling the first one to complete.") + "This package provides the @code{select!} macro for waiting on multiple +different @code{Future}s at once and handling the first one to complete.") (license (list license:expat license:asl2.0)))) (define-public rust-futures-sink-0.3 |