From 00a820f205697926a10aab3f660258f2eac1c5ef Mon Sep 17 00:00:00 2001 From: John Soo Date: Sun, 15 Dec 2019 07:36:50 -0800 Subject: [PATCH 151/206] gnu: Add rust-encoding-index-tests-0.1 * gnu/packages/crates-io.scm (rust-encoding-index-tests-0.1): New variable. --- gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index a4f6983f90..3ea9dc9ea7 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -1983,6 +1983,29 @@ floating-point primitives to an @code{io::Write}.") char, u8 and u16.") (license `(,license:expat ,license:asl2.0)))) +(define-public rust-encoding-index-tests-0.1 + (package + (name "rust-encoding-index-tests") + (version "0.1.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "encoding_index_tests" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0s85y091gl17ixass49bzaivng7w8p82p6nyvz2r3my9w4mxhim2")))) + (build-system cargo-build-system) + (home-page + "https://github.com/lifthrasiir/rust-encoding") + (synopsis + "Macros used to test index tables for character encodings") + (description + "Helper macros used to test index tables for character +encodings") + (license license:cc0))) + (define-public rust-env-logger-0.6 (package (name "rust-env-logger") -- 2.24.0