me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-byte-slice-cast-1.

* gnu/packages/crates-io.scm (rust-byte-slice-cast-1): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Attila Lendvai 2022-01-19 17:16:15 +01:00 committed by Nicolas Goaziou
parent 4e333ddc0b
commit 601482a9fd
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 19 additions and 0 deletions

View File

@ -8595,6 +8595,25 @@ reasonable.")
memory usage.") memory usage.")
(license (list license:asl2.0 license:expat)))) (license (list license:asl2.0 license:expat))))
(define-public rust-byte-slice-cast-1
(package
(name "rust-byte-slice-cast")
(version "1.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "byte-slice-cast" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "162618ai9pnsim49lkjpq2yi2b3wssclvqxwwycw8xrbb58wfc0x"))))
(build-system cargo-build-system)
(home-page "https://github.com/sdroege/bytes-num-slice-cast")
(synopsis
"Safely cast bytes slices from/to slices of built-in fundamental numeric types")
(description "This Rust library enables safely cast bytes slices from/to slices
of built-in fundamental numeric types.")
(license license:expat)))
(define-public rust-byte-tools-0.3 (define-public rust-byte-tools-0.3
(package (package
(name "rust-byte-tools") (name "rust-byte-tools")