me
/
guix
Archived
1
0
Fork 0

gnu: rust-once-cell-1: Update to 1.13.0.

* gnu/packages/crates-io.scm (rust-once-cell-1): Update to 1.13.0.
[arguments]: Replace rust-parking-lot with rust-parking-lot-core; upgrade
rust-crossbeam-utils.
master
Ricardo Wurmus 2022-09-01 18:58:50 +02:00
parent bc248300c0
commit af39bd88a2
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 7 additions and 7 deletions

View File

@ -40165,22 +40165,22 @@ other crates to create safe wrappers around Oniguruma.")
(define-public rust-once-cell-1 (define-public rust-once-cell-1
(package (package
(name "rust-once-cell") (name "rust-once-cell")
(version "1.9.0") (version "1.13.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (crate-uri "once-cell" version)) (uri (crate-uri "once_cell" version))
(file-name (file-name (string-append name "-" version ".tar.gz"))
(string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "1mfqhrsgi368x92bwnq3vi3p5nv0n1qlrn69gfflhvkfkxfm2cns")))) (base32
"1qfqvgnwfzzwxd13ybvplzshaqwnjnna9ghcn0zgijaq0zixp9hq"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:cargo-inputs `(#:cargo-inputs
(("rust-atomic-polyfill" ,rust-atomic-polyfill-0.1) (("rust-atomic-polyfill" ,rust-atomic-polyfill-0.1)
("rust-parking-lot" ,rust-parking-lot-0.11)) ("rust-parking-lot-core" ,rust-parking-lot-core-0.9))
#:cargo-development-inputs #:cargo-development-inputs
(("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7) (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.8)
("rust-lazy-static" ,rust-lazy-static-1) ("rust-lazy-static" ,rust-lazy-static-1)
("rust-regex" ,rust-regex-1)))) ("rust-regex" ,rust-regex-1))))
(home-page "https://github.com/matklad/once_cell") (home-page "https://github.com/matklad/once_cell")