gnu: Add rust-tinystr-0.7.

* gnu/packages/crates-io.scm (rust-tinystr-0.7): New variable.

Change-Id: I58ab9a56b300c500ce0a48b805b7fd9d4cee90c7
This commit is contained in:
Efraim Flashner 2024-12-24 10:19:48 +02:00
parent 51bfa3a13d
commit ee41de5bb4
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -88168,6 +88168,36 @@ (define-public rust-tinyfiledialogs-3
C library.")
(license license:zlib)))
(define-public rust-tinystr-0.7
(package
(name "rust-tinystr")
(version "0.7.6")
(source
(origin
(method url-fetch)
(uri (crate-uri "tinystr" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0bxqaw7z8r2kzngxlzlgvld1r6jbnwyylyvyjbv1q71rvgaga5wi"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; unresolved import `rand::rngs::SmallRng`
#:cargo-inputs (("rust-databake" ,rust-databake-0.1)
("rust-displaydoc" ,rust-displaydoc-0.2)
("rust-serde" ,rust-serde-1)
("rust-zerovec" ,rust-zerovec-0.10))
#:cargo-development-inputs (("rust-bincode" ,rust-bincode-1)
("rust-criterion" ,rust-criterion-0.5)
("rust-postcard" ,rust-postcard-1)
("rust-rand" ,rust-rand-0.8)
("rust-serde-json" ,rust-serde-json-1))))
(home-page "https://github.com/unicode-org/icu4x")
(synopsis "ASCII-only bounded length string representation")
(description
"This package provides a small ASCII-only bounded length string
representation.")
(license license:unicode)))
(define-public rust-tinytemplate-1
(package
(name "rust-tinytemplate")