me
/
guix
Archived
1
0
Fork 0

gnu: rust-tempfile-3: Update to 3.8.0.

* gnu/packages/crates-io.scm (rust-tempfile-3): Update to 3.8.0.
[cargo-inputs]: Replace rust-fastrand-1 with 2, rust-rustix-0.37 with
0.38, rust-windows-sys-0.45 with 0.48.
Efraim Flashner 2023-10-03 16:04:56 +03:00
parent fd75e263ee
commit 806042ae9e
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 5 additions and 5 deletions

View File

@ -70016,22 +70016,22 @@ deleting all contents when it's dropped.")
(define-public rust-tempfile-3 (define-public rust-tempfile-3
(package (package
(name "rust-tempfile") (name "rust-tempfile")
(version "3.5.0") (version "3.8.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (crate-uri "tempfile" version)) (uri (crate-uri "tempfile" version))
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "163rp254r3x7i5hisagrpxid2166pq94jvk511dpkmc1yf2fryxr")))) (base32 "1vsl2193w3gpx3mwj36fwx3v6q2qyvmzrdn6m8fgfsjkrkrx556b"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:cargo-inputs `(#:cargo-inputs
(("rust-cfg-if" ,rust-cfg-if-1) (("rust-cfg-if" ,rust-cfg-if-1)
("rust-fastrand" ,rust-fastrand-1) ("rust-fastrand" ,rust-fastrand-2)
("rust-redox-syscall" ,rust-redox-syscall-0.3) ("rust-redox-syscall" ,rust-redox-syscall-0.3)
("rust-rustix" ,rust-rustix-0.37) ("rust-rustix" ,rust-rustix-0.38)
("rust-windows-sys" ,rust-windows-sys-0.45)) ("rust-windows-sys" ,rust-windows-sys-0.48))
#:cargo-development-inputs #:cargo-development-inputs
(("rust-doc-comment" ,rust-doc-comment-0.3)))) (("rust-doc-comment" ,rust-doc-comment-0.3))))
(home-page "https://stebalien.com/projects/tempfile-rs") (home-page "https://stebalien.com/projects/tempfile-rs")