3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add rust-futures-timer-0.1.

* gnu/packages/crates-io.scm (rust-futures-timer-0.1): New variable.
This commit is contained in:
Hartmut Goebel 2020-04-24 23:28:17 +02:00
parent 30b610d68c
commit 304c702f60
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -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")