gnu: Add rust-bitvec-1.

* gnu/packages/crates-io.scm (rust-bitvec-1): New variable.
This commit is contained in:
Ricardo Wurmus 2023-03-22 16:27:29 +01:00 committed by Efraim Flashner
parent 61cf09a2b4
commit df34979063
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -7540,6 +7540,33 @@ (define-public rust-bitstream-io-0.8
"00a6wy54s1dmadm5xz8k2cbsd7ixvm48mlc45bk0fdy0pbra6jk1"))))
(arguments `(#:skip-build? #t))))
(define-public rust-bitvec-1
(package
(name "rust-bitvec")
(version "1.0.1")
(source (origin
(method url-fetch)
(uri (crate-uri "bitvec" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"173ydyj2q5vwj88k6xgjnfsshs4x9wbvjjv7sm0h36r34hn87hhv"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-funty" ,rust-funty-2)
("rust-radium" ,rust-radium-0.7)
("rust-serde" ,rust-serde-1)
("rust-tap" ,rust-tap-1)
("rust-wyz" ,rust-wyz-0.5))
#:cargo-development-inputs
(("rust-bincode" ,rust-bincode-1))))
(home-page "https://bitvecto-rs.github.io/bitvec")
(synopsis "Manipulate memory, bit by bit")
(description
"This package provides a crate for manipulating memory, bit by bit.")
(license license:expat)))
(define-public rust-bitvec-0.22
(package
(name "rust-bitvec")