me
/
guix
Archived
1
0
Fork 0

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.
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
1 changed files with 9 additions and 5 deletions

View File

@ -5002,19 +5002,23 @@ that expires at a point in time.")
(define-public rust-async-lock-2
(package
(name "rust-async-lock")
(version "2.3.0")
(version "2.7.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "async-lock" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1yrvnshs94aiimvprqkhcg1z7x9abzsja8f4ifcakr5x6abn15hr"))))
(base32 "1mrd4kai92fcgl9974dpmibiq6ja9drz41v3crvv0c27a8kzf97s"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-event-listener" ,rust-event-listener-2))))
`(#:cargo-inputs
(("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")
(synopsis "Async synchronization primitives")
(description "This package provides Async synchronization primitives.")