gnu: Add rust-bit-vec-0.5.
* gnu/packages/crates-io.scm (rust-bit-vec-0.5): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
22e2e2de3f
commit
9fce9dd758
1 changed files with 26 additions and 0 deletions
|
@ -456,6 +456,32 @@ and no more (caveat: black_box is still missing!).")
|
||||||
that uses Serde for transforming structs into bytes and vice versa!")
|
that uses Serde for transforming structs into bytes and vice versa!")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-bit-vec-0.5
|
||||||
|
(package
|
||||||
|
(name "rust-bit-vec")
|
||||||
|
(version "0.5.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "bit-vec" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1fyh8221s6cxlmng01v8v2ljhavzawqqs8r1xjc66ap5sjavx6zm"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-serde" ,rust-serde-1.0))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-serde-json" ,rust-serde-json-1.0))))
|
||||||
|
(home-page "https://github.com/contain-rs/bit-vec")
|
||||||
|
(synopsis "Vector of bits")
|
||||||
|
(description
|
||||||
|
"This package provides a vector of bits.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-bitflags-1
|
(define-public rust-bitflags-1
|
||||||
(package
|
(package
|
||||||
(name "rust-bitflags")
|
(name "rust-bitflags")
|
||||||
|
|
Reference in a new issue