me
/
guix
Archived
1
0
Fork 0

gnu: rust-arc-swap-1: Update to 1.6.0.

* gnu/packages/crates-io.scm (rust-arc-swap-1): Update to 1.6.0.
[arguments]: Don't skip build.
[cargo-inputs]: Add rust-serde-1.  Remove rust-adaptive-barrier-0.1,
rust-criterion-0.3.
[cargo-development-inputs]: Add rust-adaptive-barrier-1,
rust-criterion-0.4, rust-serde-derive-1, rust-serde-test-1.  Replace
rust-itertools-0.9 with 0.10, rust-parking-lot-0.11 with 0.12,
rust-proptest-0.10 with 1.

Change-Id: I4572fd1c6df261702ba7dc95cff83a68c57c8e02
Efraim Flashner 2023-10-24 09:00:13 +03:00
parent de9db06b1c
commit 33b71fd371
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 12 additions and 9 deletions

View File

@ -3870,26 +3870,29 @@ coverage-guided, mutation-based fuzzers.")
(define-public rust-arc-swap-1 (define-public rust-arc-swap-1
(package (package
(name "rust-arc-swap") (name "rust-arc-swap")
(version "1.2.0") (version "1.6.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (crate-uri "arc-swap" version)) (uri (crate-uri "arc-swap" version))
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "0wwdvayqa07grw4ljvb6plbw0wdg78jcdg3hwnlq2yqljlrxdmyl")))) (base32 "19n9j146bpxs9phyh48gmlh9jjsdijr9p9br04qms0g9ypfsvp5x"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:skip-build? #t `(#:cargo-inputs
#:cargo-inputs (("rust-serde" ,rust-serde-1))
(("rust-adaptive-barrier" ,rust-adaptive-barrier-0.1) #:cargo-development-inputs
("rust-criterion" ,rust-criterion-0.3) (("rust-adaptive-barrier" ,rust-adaptive-barrier-1)
("rust-criterion" ,rust-criterion-0.4)
("rust-crossbeam-utils" ,rust-crossbeam-utils-0.8) ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.8)
("rust-itertools" ,rust-itertools-0.9) ("rust-itertools" ,rust-itertools-0.10)
("rust-num-cpus" ,rust-num-cpus-1) ("rust-num-cpus" ,rust-num-cpus-1)
("rust-once-cell" ,rust-once-cell-1) ("rust-once-cell" ,rust-once-cell-1)
("rust-parking-lot" ,rust-parking-lot-0.11) ("rust-parking-lot" ,rust-parking-lot-0.12)
("rust-proptest" ,rust-proptest-0.10)))) ("rust-proptest" ,rust-proptest-1)
("rust-serde-derive" ,rust-serde-derive-1)
("rust-serde-test" ,rust-serde-test-1))))
(home-page "https://github.com/vorner/arc-swap") (home-page "https://github.com/vorner/arc-swap")
(synopsis "Atomically swappable Arc") (synopsis "Atomically swappable Arc")
(description "This package provides an atomically swappable Arc.") (description "This package provides an atomically swappable Arc.")