diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2020-04-24 23:28:17 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2020-05-05 13:20:21 +0200 |
commit | 304c702f6084a864634c3283190e4c56d159ad83 (patch) | |
tree | ef145f0fa848d5e9af3dd61f6d1f4f57cda5166b | |
parent | 30b610d68c07e903ff3e2f5453d88f31da510a15 (diff) | |
download | guix-304c702f6084a864634c3283190e4c56d159ad83.tar.gz |
gnu: Add rust-futures-timer-0.1.
* gnu/packages/crates-io.scm (rust-futures-timer-0.1): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index f9178d710c..cd028329fa 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -7657,6 +7657,25 @@ futures-rs library.") (description "Tools for working with tasks.") (license (list license:expat license:asl2.0)))) +(define-public rust-futures-timer-0.1 + (package + (name "rust-futures-timer") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "futures-timer" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0hw0nlyrq5an6l6y8md1rg6r380zrddvmh9cg0h64xfwnvlxzkm5")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-futures" ,rust-futures-0.1)))) + (home-page "https://github.com/async-rs/futures-timer") + (synopsis "Timeouts for futures") + (description "Timeouts for futures.") + (license (list license:expat license:asl2.0)))) + (define-public rust-futures-util-0.3 (package (name "rust-futures-util") |