mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
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:
parent
8f88f83fed
commit
c7b76a411e
1 changed files with 9 additions and 5 deletions
|
@ -5002,19 +5002,23 @@ (define-public rust-async-io-1
|
|||
(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.")
|
||||
|
|
Loading…
Reference in a new issue