gnu: rust-async-lock-2: Update to 2.7.0.

* gnu/packages/crates-io.scm (rust-async-lock-2): Update to 2.7.0.
[arguments]: Don't skip build.
[cargo-development-inputs]: Add rust-async-channel-1, rust-fastrand-1,
rust-futures-lite-1, rust-wasm-bindgen-test-0.3.
This commit is contained in:
Efraim Flashner 2023-08-02 19:41:21 +03:00
parent 8f88f83fed
commit c7b76a411e
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -5002,19 +5002,23 @@ (define-public rust-async-io-1
(define-public rust-async-lock-2 (define-public rust-async-lock-2
(package (package
(name "rust-async-lock") (name "rust-async-lock")
(version "2.3.0") (version "2.7.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (crate-uri "async-lock" version)) (uri (crate-uri "async-lock" version))
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "1yrvnshs94aiimvprqkhcg1z7x9abzsja8f4ifcakr5x6abn15hr")))) (base32 "1mrd4kai92fcgl9974dpmibiq6ja9drz41v3crvv0c27a8kzf97s"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:skip-build? #t `(#:cargo-inputs
#:cargo-inputs (("rust-event-listener" ,rust-event-listener-2))
(("rust-event-listener" ,rust-event-listener-2)))) #:cargo-development-inputs
(("rust-async-channel" ,rust-async-channel-1)
("rust-fastrand" ,rust-fastrand-1)
("rust-futures-lite" ,rust-futures-lite-1)
("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3))))
(home-page "https://github.com/stjepang/async-lock") (home-page "https://github.com/stjepang/async-lock")
(synopsis "Async synchronization primitives") (synopsis "Async synchronization primitives")
(description "This package provides Async synchronization primitives.") (description "This package provides Async synchronization primitives.")