mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 04:07:10 -05:00
gnu: Add rust-bitvec-0.19.
* gnu/packages/crates-io.scm (rust-bitvec-0.19): New variable.
This commit is contained in:
parent
e3cf342773
commit
8b9cb0b381
1 changed files with 33 additions and 0 deletions
|
@ -2388,6 +2388,39 @@ (define-public rust-bitstream-io-0.8
|
|||
"Library for reading/writing un-aligned values from/to streams in big-endian and little-endian formats.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-bitvec-0.19
|
||||
(package
|
||||
(name "rust-bitvec")
|
||||
(version "0.19.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "bitvec" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"10bz751jbsy8fj203ibjwil07p2fwfzvx7b326wfssaravlkbfm7"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-funty" ,rust-funty-1)
|
||||
("rust-radium" ,rust-radium-0.5)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-tap" ,rust-tap-1)
|
||||
("rust-wyz" ,rust-wyz-0.2))
|
||||
#:cargo-development-inputs
|
||||
(("rust-criterion" ,rust-criterion-0.3)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-serde-json" ,rust-serde-json-1)
|
||||
("rust-serde-test" ,rust-serde-test-1)
|
||||
("rust-static-assertions" ,rust-static-assertions-1))))
|
||||
(home-page "https://myrrlyn.net/crates/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-blake2-0.8
|
||||
(package
|
||||
(name "rust-blake2")
|
||||
|
|
Loading…
Reference in a new issue