me
/
guix
Archived
1
0
Fork 0

gnu: rust-plotters-bitmap-0.3: Update to 0.3.3.

* gnu/packages/crates-io.scm (rust-plotters-bitmap-0.3): Update to
0.3.3.
[arguments]: Don't skip the build.  Skip the tests.
[cargo-inputs]: Replace rust-gif-0.11 with 0.12, rust-image-0.23 with
0.24.
[cargo-development-inputs]: Add rust-criterion-0.4, rust-rayon-1.

Change-Id: Ie0fba7734c3f1b4772c5266d10280ba749c5763f
master
Efraim Flashner 2024-04-01 13:25:14 +03:00
parent d201be86e3
commit dbd59cb89a
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 8 additions and 6 deletions

View File

@ -53451,21 +53451,23 @@ both WASM and native applications")
(define-public rust-plotters-bitmap-0.3
(package
(name "rust-plotters-bitmap")
(version "0.3.1")
(version "0.3.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "plotters-bitmap" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0m0bq3fqrnhgg37k6lz0m328n3ifymc965pxmqc5cpk90nljydi1"))))
(base32 "0hw5zd70l7q122np8m731sksclmv6m82k2wyqsmrjli0f0gvxsqc"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
`(#:tests? #f ; use of undeclared crate or module `plotters`
#:cargo-inputs
(("rust-gif" ,rust-gif-0.11)
("rust-image" ,rust-image-0.23)
("rust-plotters-backend" ,rust-plotters-backend-0.3))))
(("rust-gif" ,rust-gif-0.12)
("rust-image" ,rust-image-0.24)
("rust-plotters-backend" ,rust-plotters-backend-0.3))
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.4)
("rust-rayon" ,rust-rayon-1))))
(home-page "https://plotters-rs.github.io")
(synopsis "Plotters Bitmap Backend")
(description "This package provides Plotters bitmap backend.")