diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-11-14 09:43:28 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-11-28 11:05:14 +0200 |
commit | 5b9f0a09aff6109c0255da6779fc838f7bf3f2b9 (patch) | |
tree | acd8a85caebb832c480f75fe6bf9e00605e1b256 /gnu/packages/crates-graphics.scm | |
parent | 16994fffc94044d3c8f063a0277502d4231e9d88 (diff) | |
download | guix-5b9f0a09aff6109c0255da6779fc838f7bf3f2b9.tar.gz guix-5b9f0a09aff6109c0255da6779fc838f7bf3f2b9.zip |
gnu: rust-avif-parse-1: Update to 1.3.2.
* gnu/packages/crates-graphics.scm (rust-avif-parse-1): Update to 1.3.2.
[cargo-inputs]: Add rust-arrayvec-0.7, rust-leb128-0.2. Replace
rust-fallible-collections-0.4 with 0.5. Remove
rust-static-assertions-1.
[cargo-development-inputs]: Replace rust-env-logger-0.9 with 0.11.
Change-Id: I7abb3272148f21f884fd0de8f822a85a1beb7fd6
Diffstat (limited to 'gnu/packages/crates-graphics.scm')
-rw-r--r-- | gnu/packages/crates-graphics.scm | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/packages/crates-graphics.scm b/gnu/packages/crates-graphics.scm index a5e1f73c94..a024b34248 100644 --- a/gnu/packages/crates-graphics.scm +++ b/gnu/packages/crates-graphics.scm @@ -407,23 +407,24 @@ Mac, and Unix.") (define-public rust-avif-parse-1 (package (name "rust-avif-parse") - (version "1.0.0") + (version "1.3.2") (source (origin (method url-fetch) (uri (crate-uri "avif-parse" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1vhd4n06g5mbf4sznz67mk352pw9hh97f4ysafp737xvzfd3zyw7")))) + (base32 "02gjhprg6hs79shpb7mljc68zsz0f75dall1pkhqcax0f5jmpdvz")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs - (("rust-bitreader" ,rust-bitreader-0.3) + (("rust-arrayvec" ,rust-arrayvec-0.7) + ("rust-bitreader" ,rust-bitreader-0.3) ("rust-byteorder" ,rust-byteorder-1) - ("rust-fallible-collections" ,rust-fallible-collections-0.4) - ("rust-log" ,rust-log-0.4) - ("rust-static-assertions" ,rust-static-assertions-1)) + ("rust-fallible-collections" ,rust-fallible-collections-0.5) + ("rust-leb128" ,rust-leb128-0.2) + ("rust-log" ,rust-log-0.4)) #:cargo-development-inputs - (("rust-env-logger" ,rust-env-logger-0.9) + (("rust-env-logger" ,rust-env-logger-0.11) ("rust-walkdir" ,rust-walkdir-2)))) (home-page "https://github.com/kornelski/avif-parse") (synopsis "Parser for AVIF image files") |