mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add rust-stackvector-1.0.
* gnu/packages/crates-io.scm (rust-stackvector-1.0): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
15466f9acd
commit
a4be6e9c89
1 changed files with 26 additions and 0 deletions
|
@ -7254,6 +7254,32 @@ deeply recursive algorithms that may accidentally blow the stack.")
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-stackvector-1.0
|
||||||
|
(package
|
||||||
|
(name "rust-stackvector")
|
||||||
|
(version "1.0.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "stackvector" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1bv820fhdad16islwli1g3iksk39ivf0zaqz4j1m08vq15jjaiqw"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-unreachable" ,rust-unreachable-1.0))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-rustc-version" ,rust-rustc-version-0.2))))
|
||||||
|
(home-page "https://github.com/Alexhuszagh/rust-stackvector")
|
||||||
|
(synopsis "Vector-like facade for stack-allocated arrays")
|
||||||
|
(description
|
||||||
|
"StackVec: vector-like facade for stack-allocated arrays.")
|
||||||
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-static-assertions-0.3
|
(define-public rust-static-assertions-0.3
|
||||||
(package
|
(package
|
||||||
(name "rust-static-assertions")
|
(name "rust-static-assertions")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue