[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/07: gnu: Add rust-html-escape.
From: |
guix-commits |
Subject: |
04/07: gnu: Add rust-html-escape. |
Date: |
Thu, 9 Feb 2023 08:38:54 -0500 (EST) |
abcdw pushed a commit to branch master
in repository guix.
commit 8686933c1e5852300844bcce54401229caf99919
Author: Pierre Langlois <pierre.langlois@gmx.com>
AuthorDate: Fri Nov 25 01:21:13 2022 +0000
gnu: Add rust-html-escape.
* gnu/packages/crates-io.scm (rust-html-escape): New variable.
Signed-off-by: Andrew Tropin <andrew@trop.in>
---
gnu/packages/crates-io.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 661411b2c5..370fb96438 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -26033,6 +26033,30 @@ Hash-based Message Authentication Code algorithm} for
SHA1.")
"This package provides a library for HTML entity encoding and decoding.")
(license (list license:asl2.0 license:expat license:mpl2.0))))
+(define-public rust-html-escape-0.2
+ (package
+ (name "rust-html-escape")
+ (version "0.2.12")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "html-escape" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "01f2v3c6j2rk5h2lhdbh62j07cm1fvzqw4vplj2sms83jpx5qc8m"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-utf8-width" ,rust-utf8-width-0.1))
+ #:cargo-development-inputs
+ (("rust-bencher" ,rust-bencher-0.1))))
+ (home-page "https://magiclen.org/html-escape")
+ (synopsis "Library for encoding and escaping special characters in HTML")
+ (description
+ "This package provides a library for encoding and escaping special
+characters in HTML, decoding and unescaping HTML entities as well.")
+ (license license:expat)))
+
(define-public rust-hts-sys-2
(package
(name "rust-hts-sys")
- branch master updated (1a5f5694a7 -> 53b00b91b7), guix-commits, 2023/02/09
- 03/07: gnu: tree-sitter: Update package style., guix-commits, 2023/02/09
- 02/07: gnu: tree-sitter: Update to 0.20.7., guix-commits, 2023/02/09
- 01/07: gnu: tree-sitter: Move to its own module., guix-commits, 2023/02/09
- 04/07: gnu: Add rust-html-escape.,
guix-commits <=
- 06/07: gnu: Add tree-sitter-cli., guix-commits, 2023/02/09
- 07/07: gnu: Add tree-sitter-grammar-html., guix-commits, 2023/02/09
- 05/07: gnu: Add rust-smallbitvec-2., guix-commits, 2023/02/09