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>
This commit is contained in:
parent
88e267bee8
commit
c74508b67c
1 changed files with 29 additions and 0 deletions
|
@ -1220,6 +1220,35 @@ floating-point primitives to an @code{io::Write}.")
|
||||||
@code{Right} is a general purpose sum type with two cases.")
|
@code{Right} is a general purpose sum type with two cases.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(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
|
(define-public rust-env-logger-0.6
|
||||||
(package
|
(package
|
||||||
(name "rust-env-logger")
|
(name "rust-env-logger")
|
||||||
|
|
Reference in a new issue