gnu: rust-zip-0.6: Update to 0.6.6.

* gnu/packages/crates-io.scm (rust-zip-0.6): Update to 0.6.6.
[cargo-inputs]: Replace rust-aes-0.7 with 0.8.
[home-page]: Update to new home-page.

Change-Id: I0e6ab726961dd750e2c6fb5b73a59401351d2a0c
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Steve George 2023-11-09 19:38:44 +00:00 committed by Efraim Flashner
parent 1d32cdf92c
commit db2057904b
Signed by untrusted user: efraim
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 5 additions and 6 deletions

View File

@ -90971,19 +90971,18 @@ implementation that works everywhere, even WASM!")
(define-public rust-zip-0.6
(package
(name "rust-zip")
(version "0.6.4")
(version "0.6.6")
(source
(origin
(method url-fetch)
(uri (crate-uri "zip" version))
(file-name
(string-append name "-" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1vydb0v9xl6skr63r6prjs9a67hjzcdc25j3kd9r7fr4r7xx0i84"))))
(base32 "0qcjbqfvbwxi5g9wbymf2r05cvziic2qqj4xy64q3hp48vi980vn"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-aes" ,rust-aes-0.7)
(("rust-aes" ,rust-aes-0.8)
("rust-byteorder" ,rust-byteorder-1)
("rust-bzip2" ,rust-bzip2-0.4)
("rust-constant-time-eq" ,rust-constant-time-eq-0.1)
@ -91000,7 +90999,7 @@ implementation that works everywhere, even WASM!")
("rust-getrandom" ,rust-getrandom-0.2)
("rust-time" ,rust-time-0.3)
("rust-walkdir" ,rust-walkdir-2))))
(home-page "https://github.com/mvdnes/zip-rs.git")
(home-page "https://github.com/zip-rs/zip")
(synopsis
"Library to support the reading and writing of zip files")
(description