me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-bytemuck-1.

* gnu/packages/crates-io.scm (rust-bytemuck-1): New variable.
master
Efraim Flashner 2020-07-12 12:45:20 +03:00
parent 4be1d5d8ec
commit 561af003cb
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 20 additions and 0 deletions

View File

@ -2255,6 +2255,26 @@ in a byte slice, fast.")
("rust-quickcheck" ,rust-quickcheck-0.6)
("rust-rand" ,rust-rand-0.4))))))
(define-public rust-bytemuck-1
(package
(name "rust-bytemuck")
(version "1.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "bytemuck" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0cclc9v10hc1abqrxgirg3qbwa3ra3s0dai3xiwv9v4j4bgi7yip"))))
(build-system cargo-build-system)
(home-page "https://github.com/Lokathor/bytemuck")
(synopsis "crate for mucking around with piles of bytes")
(description
"This package provides a crate for mucking around with piles of bytes.")
(license license:zlib)))
(define-public rust-byteorder-1.3
(package
(name "rust-byteorder")