me
/
guix
Archived
1
0
Fork 0

gnu: rust-thread-local-1: Update to 1.1.7.

* gnu/packages/crates-io.scm (rust-thread-local-1): Update to 1.1.7.
[arguments]: Don't skip build.
[cargo-inputs]: Add rust-cfg-if-1. Remove rust-criterion-0.3.
[cargo-development-inputs]: Add rust-criterion-0.3.
Efraim Flashner 2023-05-22 17:19:39 +03:00
parent 2394ffd557
commit bd4a4caa09
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 6 deletions

View File

@ -65109,20 +65109,21 @@ different for every thread.")
(define-public rust-thread-local-1 (define-public rust-thread-local-1
(package (package
(name "rust-thread-local") (name "rust-thread-local")
(version "1.1.3") (version "1.1.7")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (crate-uri "thread_local" version)) (uri (crate-uri "thread_local" version))
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "1gccp3grndpi6dyhzylz4hkqnkzc1xyri98n0xwwhnn90i7d4640")))) (base32 "0lp19jdgvp5m4l60cgxdnl00yw1hlqy8gcywg9bddwng9h36zp9z"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:skip-build? #t `(#:cargo-inputs
#:cargo-inputs (("rust-cfg-if" ,rust-cfg-if-1)
(("rust-criterion" ,rust-criterion-0.3) ("rust-once-cell" ,rust-once-cell-1))
("rust-once-cell" ,rust-once-cell-1)))) #:cargo-development-inputs
(("rust-criterion" ,rust-criterion-0.4))))
(home-page "https://github.com/Amanieu/thread_local-rs") (home-page "https://github.com/Amanieu/thread_local-rs")
(synopsis "Per-object thread-local storage") (synopsis "Per-object thread-local storage")
(description "Per-object thread-local storage.") (description "Per-object thread-local storage.")