me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-encode-unicode-0.3.

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

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-14 13:44:58 -08:00 committed by Efraim Flashner
parent 88e267bee8
commit c74508b67c
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 29 additions and 0 deletions

View File

@ -1220,6 +1220,35 @@ floating-point primitives to an @code{io::Write}.")
@code{Right} is a general purpose sum type with two cases.")
(license (list license:expat license:asl2.0))))
(define-public rust-encode-unicode-0.3
(package
(name "rust-encode-unicode")
(version "0.3.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "encode_unicode" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1g8a8pixkxz6r927f4sc4r15qyc0szxdxb1732v8q7h0di4wkclh"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-ascii" ,rust-ascii-0.9)
("rust-clippy" ,rust-clippy-0.0))
#:cargo-development-inputs
(("rust-lazy-static" ,rust-lazy-static-1.3))))
(home-page "https://github.com/tormol/encode_unicode")
(synopsis
"UTF-8 and UTF-16 support for char, u8 and u16")
(description
"UTF-8 and UTF-16 character types, iterators and related methods for
char, u8 and u16.")
(license (list license:expat license:asl2.0))))
(define-public rust-env-logger-0.6
(package
(name "rust-env-logger")