mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 00:18:29 +01:00
gnu: Add rust-smartstring-0.2.
* gnu/packages/crates-io.scm (rust-smartstring-0.2): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
ddcbbf8935
commit
134bef2790
1 changed files with 24 additions and 0 deletions
|
@ -56431,6 +56431,30 @@ (define-public rust-smart-default-0.6
|
|||
control on the fields.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-smartstring-0.2
|
||||
(package
|
||||
(name "rust-smartstring")
|
||||
(version "0.2.9")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "smartstring" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"16rc6n0p4r4aw6k6jxf2s37wyaijaa4pwpw7rqki7cn2q0qnmaii"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-arbitrary" ,rust-arbitrary-0.4)
|
||||
("rust-proptest" ,rust-proptest-0.10)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-static-assertions" ,rust-static-assertions-1))))
|
||||
(home-page "https://github.com/bodil/smartstring")
|
||||
(synopsis "Compact inlined strings")
|
||||
(description "This package provides compact inlined strings.")
|
||||
(license license:mpl2.0)))
|
||||
|
||||
(define-public rust-smol-1
|
||||
(package
|
||||
(name "rust-smol")
|
||||
|
|
Loading…
Reference in a new issue