me
/
guix
Archived
1
0
Fork 0

gnu: rust-parking-2: Update to 2.2.0.

* gnu/packages/crates-io.scm (rust-parking-2): Update to 2.2.0.
[cargo-inputs]: Add rust-loom-0.7.
[home-page]: Update to new home-page.

Change-Id: I4d1b3aa5ca5e5f9ce60d079c65e0524068f4067d
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Herman Rimm 2024-01-30 16:25:02 +01:00 committed by Efraim Flashner
parent 631d8f0e58
commit 0feececfe3
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 6 deletions

View File

@ -44171,22 +44171,23 @@ derive macro for Parity SCALE Codec.")
(define-public rust-parking-2
(package
(name "rust-parking")
(version "2.0.0")
(version "2.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "parking" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0wnxxnizfxlax3n709s5r83f4n8awy3m4a18q4fdk0z7z693hz22"))))
(base32 "1blwbkq6im1hfxp5wlbr475mw98rsyc0bbr2d5n16m38z253p0dv"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs
`(#:cargo-inputs (("rust-loom" ,rust-loom-0.7))
#:cargo-development-inputs
(("rust-easy-parallel" ,rust-easy-parallel-3))))
(home-page "https://github.com/stjepang/parking")
(home-page "https://github.com/smol-rs/parking")
(synopsis "Thread parking and unparking")
(description "This package provides methods for thread parking and
unparking.")
(description
"This package provides methods for thread parking and unparking.")
(license (list license:asl2.0 license:expat))))
(define-public rust-parking-1