mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add rust-castaway-0.2.
* gnu/packages/crates-io.scm (rust-castaway-0.2): New variable.
This commit is contained in:
parent
1739b5b1ea
commit
449d70bfbf
1 changed files with 24 additions and 0 deletions
|
@ -10226,6 +10226,30 @@ (define-public rust-cast-0.2
|
|||
#:cargo-development-inputs
|
||||
(("rust-quickcheck" ,rust-quickcheck-0.9))))))
|
||||
|
||||
(define-public rust-castaway-0.2
|
||||
(package
|
||||
(name "rust-castaway")
|
||||
(version "0.2.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "castaway" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1k1z4v61vq7la56js1azkr0k9b415vif2kaxiqk3d1gw6mbfs5wa"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-rustversion" ,rust-rustversion-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-paste" ,rust-paste-1))))
|
||||
(home-page "https://github.com/sagebind/castaway")
|
||||
(synopsis "Zero-cost downcasting for limited compile-time specialization")
|
||||
(description
|
||||
"This is an experimental library that implements zero-cost downcasting of
|
||||
types that works on stable Rust.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-cblas-sys-0.1
|
||||
(package
|
||||
(name "rust-cblas-sys")
|
||||
|
|
Loading…
Reference in a new issue