gnu: Add rust-utf8-width-0.1.

* gnu/packages/crates-io.scm (rust-utf8-width-0.1): New variable.
This commit is contained in:
Nicolas Goaziou 2020-12-09 15:26:33 +01:00
parent 6cac86c985
commit 92d03ec863
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -33940,6 +33940,25 @@ (define-public rust-utf8-ranges-0.1
`(#:cargo-development-inputs
(("rust-quickcheck" ,rust-quickcheck-0.2))))))
(define-public rust-utf8-width-0.1
(package
(name "rust-utf8-width")
(version "0.1.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "utf8-width" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1ylf5mvzck81iszchxyqmhwimkcdqv7jhazvd454g911cchsqwch"))))
(build-system cargo-build-system)
(home-page "https://magiclen.org/utf8-width")
(synopsis "Determine the width of a UTF-8 character")
(description
"This package determines the width of a UTF-8 character by providing its
first byte.")
(license license:expat)))
(define-public rust-utf8parse-0.1
(package
(name "rust-utf8parse")