gnu: rust-bytemuck-derive-1: Update to 1.5.0.

* gnu/packages/crates-io.scm (rust-bytemuck-derive-1): Update to 1.5.0.
[arguments]: Don't skip the build.  Skip the test suite.
[cargo-development-inputs]: Remove field.

Change-Id: I27ed850ec9068741e3ac73b2f31d253a407d4d5c
This commit is contained in:
Efraim Flashner 2023-11-05 16:35:22 +02:00
parent 2d99010a55
commit ce02ec1550
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -10570,7 +10570,7 @@ (define-public rust-bytemuck-1
(define-public rust-bytemuck-derive-1
(package
(name "rust-bytemuck-derive")
(version "1.3.0")
(version "1.5.0")
(source
(origin
(method url-fetch)
@ -10578,16 +10578,14 @@ (define-public rust-bytemuck-derive-1
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1d1j74dgq9b0wx73hvirsyzr3hmi7ip16bfvwc3q0bzic2wk7qjz"))))
"1cgj75df2v32l4fmvnp25xxkkz4lp6hz76f7hfhd55wgbzmvfnln"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
`(#:tests? #f ; unresolved import `bytemuck`
#:cargo-inputs
(("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-1))
#:cargo-development-inputs
(("rust-bytemuck" ,rust-bytemuck-1))))
("rust-syn" ,rust-syn-2))))
(home-page "https://github.com/Lokathor/bytemuck")
(synopsis "Derive proc-macros for @code{bytemuck}")
(description