me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-smol-str-0.1.

* gnu/packages/crates-io.scm (rust-smol-str-0.1): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Zheng junjie 2021-06-11 21:11:56 +08:00 committed by Nicolas Goaziou
parent 7c65ae4197
commit d70f78911d
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 30 additions and 0 deletions

View File

@ -41903,6 +41903,36 @@ control on the fields.")
(description "This package provides a small and fast async runtime.")
(license (list license:asl2.0 license:expat))))
(define-public rust-smol-str-0.1
(package
(name "rust-smol-str")
(version "0.1.17")
(source
(origin
(method url-fetch)
(uri (crate-uri "smol-str" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1srj7gd14cllfwh55jwmid425rz2idpvbw7ly08448r97b7gg83c"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-serde" ,rust-serde-1))
#:cargo-development-inputs
(("rust-proptest" ,rust-proptest-0.10)
("rust-serde" ,rust-serde-1)
("rust-serde-json" ,rust-serde-json-1))))
(home-page "https://github.com/rust-analyzer/smol_str")
(synopsis
"Small-string optimized string type with O(1) clone")
(description
"This package provides a small-string optimized string type with O(1)
clone.")
(license (list license:expat license:asl2.0))))
(define-public rust-snailquote-0.3
(package
(name "rust-snailquote")