mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: Add rust-utf-8-0.7.
* gnu/packges/crates-io.scm (rust-utf-8-0.7): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
6691d93d92
commit
0c5b3abe7b
1 changed files with 22 additions and 0 deletions
|
@ -11178,6 +11178,28 @@ (define-public rust-url-1.7
|
||||||
"URL library for Rust, based on the WHATWG URL Standard.")
|
"URL library for Rust, based on the WHATWG URL Standard.")
|
||||||
(license (list license:asl2.0 license:expat))))
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-utf-8-0.7
|
||||||
|
(package
|
||||||
|
(name "rust-utf-8")
|
||||||
|
(version "0.7.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "utf-8" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1iw5rp4i3mfi9k51picbr5bgjqhjcmnxx7001clh5ydq31y2zr05"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments `(#:skip-build? #t))
|
||||||
|
(home-page "https://github.com/SimonSapin/rust-utf8")
|
||||||
|
(synopsis
|
||||||
|
"Incremental, zero-copy UTF-8 decoding with error handling")
|
||||||
|
(description
|
||||||
|
"Incremental, zero-copy UTF-8 decoding with error handling.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-utf8-ranges-1.0
|
(define-public rust-utf8-ranges-1.0
|
||||||
(package
|
(package
|
||||||
(name "rust-utf8-ranges")
|
(name "rust-utf8-ranges")
|
||||||
|
|
Loading…
Reference in a new issue