me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/crates-io.scm (rust-once-cell-1): Update to 1.17.0.
[arguments]: Disable tests.
[cargo-inputs]: Add rust-critical-section-1.
[cargo-development-inputs]: Add rust-critical-section-1.
master
Efraim Flashner 2023-01-12 17:01:21 +02:00 committed by Maxim Cournoyer
parent e424c8ba21
commit c36d77a054
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 7 additions and 4 deletions

View File

@ -38070,7 +38070,7 @@ other crates to create safe wrappers around Oniguruma.")
(define-public rust-once-cell-1
(package
(name "rust-once-cell")
(version "1.15.0")
(version "1.17.0")
(source
(origin
(method url-fetch)
@ -38078,14 +38078,17 @@ other crates to create safe wrappers around Oniguruma.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1q9r8c0ls1qgjp89p4rd36sjv4671pz6710c106ajwcv2c2asbg8"))))
"0rpackaf6ljxkcaa3svaiak1ddsbh0hqf5z3l7bb78hyfjhznqbg"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
`(#:tests? #f ; Needs a newer rust
#:cargo-inputs
(("rust-atomic-polyfill" ,rust-atomic-polyfill-1)
("rust-critical-section" ,rust-critical-section-1)
("rust-parking-lot-core" ,rust-parking-lot-core-0.9))
#:cargo-development-inputs
(("rust-crossbeam-utils" ,rust-crossbeam-utils-0.8)
(("rust-critical-section" ,rust-critical-section-1)
("rust-crossbeam-utils" ,rust-crossbeam-utils-0.8)
("rust-lazy-static" ,rust-lazy-static-1)
("rust-regex" ,rust-regex-1))))
(home-page "https://github.com/matklad/once_cell")