me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-ref-cast-1.0.

* gnu/packages/crates-io.scm (rust-ref-cast-1.0): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Valentin Ignatev 2020-01-19 16:05:30 +03:00 committed by Efraim Flashner
parent afa0a59eb0
commit 73c59b3f51
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 26 additions and 0 deletions

View File

@ -11454,6 +11454,32 @@ system calls.")
functionality.")
(license license:expat)))
(define-public rust-ref-cast-1.0
(package
(name "rust-ref-cast")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "ref-cast" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1vy378bdzb4kcz13kh96c5n5qw1jinhfrya5j4bf9rxz65x1jzq7"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-ref-cast-impl" ,rust-ref-cast-impl-1.0))
#:cargo-development-inputs
(("rust-rustversion" ,rust-rustversion-1.0)
("rust-trybuild" ,rust-trybuild-1.0))))
(home-page "https://github.com/dtolnay/ref-cast")
(synopsis "Safely cast &T to &U")
(description
"Safely cast &T to &U where the struct U contains a single field of type T.")
(license (list license:expat license:asl2.0))))
(define-public rust-ref-cast-0.2
(package
(name "rust-ref-cast")