gnu: rust-async-task-4: Update to 4.4.0.

* gnu/packages/crates-io.scm (rust-async-task-4): Update to 4.4.0.
[cargo-development-inputs]: Add rust-flaky-test-0.1,
rust-futures-lite-1, rust-once-cell-1, rust-smol-1.
This commit is contained in:
Efraim Flashner 2023-08-02 19:42:26 +03:00
parent c7b76a411e
commit dbbdfc5bf9
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -5397,20 +5397,24 @@ (define-public rust-async-stream-impl-0.3
(define-public rust-async-task-4
(package
(name "rust-async-task")
(version "4.0.3")
(version "4.4.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "async-task" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1w0a1c8jim6s5bvcyiiwg9m4bdv3xnd4hbjm97ndgmphmgg32679"))))
(base32 "1bis5aqnjw3gxridzpq2cwrlj4y8alrfqy19rly6ag2vh50spizc"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs
(("rust-atomic-waker" ,rust-atomic-waker-1)
("rust-easy-parallel" ,rust-easy-parallel-3)
("rust-flume" ,rust-flume-0.10))))
("rust-flaky-test" ,rust-flaky-test-0.1)
("rust-flume" ,rust-flume-0.10)
("rust-futures-lite" ,rust-futures-lite-1)
("rust-once-cell" ,rust-once-cell-1)
("rust-smol" ,rust-smol-1))))
(home-page "https://github.com/stjepang/async-task")
(synopsis "Task abstraction for building executors")
(description