mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-20 17:53:26 -05:00
gnu: Add rust-tinyvec@0.3.3.
* gnu/packages/crates-io.scm (rust-tinyvec-0.3): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
e44e45cd8b
commit
cb9d0aa860
1 changed files with 23 additions and 0 deletions
|
@ -26618,6 +26618,29 @@ (define-public rust-tinytemplate-1.0
|
||||||
"Simple, lightweight template engine.")
|
"Simple, lightweight template engine.")
|
||||||
(license (list license:asl2.0 license:expat))))
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-tinyvec-0.3
|
||||||
|
(package
|
||||||
|
(name "rust-tinyvec")
|
||||||
|
(version "0.3.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "tinyvec" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1vgg2z317kq75bpd0nfda2v507qjpd7g2cjahjgivn2s78nkv5ak"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-development-inputs
|
||||||
|
(("rust-criterion" ,rust-criterion-0.3))))
|
||||||
|
(home-page "https://crates.io/crates/tinyvec")
|
||||||
|
(synopsis "Tiny vec-like types for Rust")
|
||||||
|
(description
|
||||||
|
"A 100% safe crate of vec-like types.")
|
||||||
|
(license license:zlib)))
|
||||||
|
|
||||||
(define-public rust-tokio-0.2
|
(define-public rust-tokio-0.2
|
||||||
(package
|
(package
|
||||||
(name "rust-tokio")
|
(name "rust-tokio")
|
||||||
|
|
Loading…
Reference in a new issue