me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-futures-timer-0.1.

* gnu/packages/crates-io.scm (rust-futures-timer-0.1): New variable.
master
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
1 changed files with 19 additions and 0 deletions

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