gnu: rust-fixedbitset-0.4: Update to 0.4.2.

* gnu/packages/crates-io.scm (rust-fixedbitset-0.4): Update to 0.4.2.
[arguments]: Don't skip build.
[cargo-development-inputs]: Add rust-serde-json-1.
This commit is contained in:
Efraim Flashner 2023-03-09 18:35:53 +02:00
parent 123fcaae8b
commit ab2e9c4089
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -21890,18 +21890,18 @@ (define-public rust-fixed-hash-0.7
(define-public rust-fixedbitset-0.4
(package
(name "rust-fixedbitset")
(version "0.4.0")
(version "0.4.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "fixedbitset" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "17mnwa48dy11dnbasxa0c92sdj243acjl2ilhpcb1fa0pvxa93ir"))))
(base32 "101v41amgv5n9h4hcghvrbfk5vrncx1jwm35rn5szv4rk55i7rqc"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-serde" ,rust-serde-1))))
`(#:cargo-inputs (("rust-serde" ,rust-serde-1))
#:cargo-development-inputs (("rust-serde-json" ,rust-serde-json-1))))
(home-page "https://github.com/bluss/fixedbitset")
(synopsis "Simple bitset collection")
(description "FixedBitSet is a simple bitset collection.")