gnu: rust-tokio-timer-0.2: Update to 0.2.13.

* gnu/packages/crates-io.scm (rust-tokio-timer-0.2): Update to 0.2.13.
[arguments]: Don't skip build.
[cargo-inputs]: Replace rust-crossbeam-utils-0.6 with 0.7.
[cargo-development-inputs]: Replace rust-rand-0.4 with 0.7.
This commit is contained in:
Efraim Flashner 2023-05-16 12:44:24 +03:00
parent 7d897b6d7e
commit b9cabb0cdd
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -67490,7 +67490,7 @@ (define-public rust-tokio-threadpool-0.1
(define-public rust-tokio-timer-0.2
(package
(name "rust-tokio-timer")
(version "0.2.11")
(version "0.2.13")
(source
(origin
(method url-fetch)
@ -67499,17 +67499,16 @@ (define-public rust-tokio-timer-0.2
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"03m68ainkdy3b5pf20rjyknhk2ppx35bjdc2yfj2bv80sl96h47j"))))
"15pjjj6daks3sii8p24a509b0dapl2kyk740nwfgz59w64nly14k"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
`(#:cargo-inputs
(("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
("rust-futures" ,rust-futures-0.1)
("rust-slab" ,rust-slab-0.4)
("rust-tokio-executor" ,rust-tokio-executor-0.1))
#:cargo-development-inputs
(("rust-rand" ,rust-rand-0.4)
(("rust-rand" ,rust-rand-0.7)
("rust-tokio" ,rust-tokio-0.1)
("rust-tokio-mock-task" ,rust-tokio-mock-task-0.1))))
(home-page "https://github.com/tokio-rs/tokio")