1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add rust-smol-str@0.3.2.

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

Change-Id: Ie80f34861e7101d70714cdb4147a4c9464d5eadb
This commit is contained in:
Danny Milosavljevic 2025-05-19 02:09:19 +02:00
parent 38e1d1423a
commit 69705ed81f
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -75621,6 +75621,30 @@ monotone matrix.")
(description "This package provides a proc macro for smol runtime.")
(license (list license:expat license:asl2.0))))
(define-public rust-smol-str-0.3
(package
(name "rust-smol-str")
(version "0.3.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "smol_str" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "039mj6lc1vkljj17ndlzzkak8kvlmw8ppi6yjdxsh433snfbhxln"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-arbitrary" ,rust-arbitrary-1)
("rust-borsh" ,rust-borsh-1)
("rust-serde" ,rust-serde-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-smol-str-0.2
(package
(name "rust-smol-str")