[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#49946] [PATCH v7 03/32] gnu: Add rust-html-escape.
From: |
( |
Subject: |
[bug#49946] [PATCH v7 03/32] gnu: Add rust-html-escape. |
Date: |
Fri, 25 Nov 2022 06:46:20 +0000 |
On Fri Nov 25, 2022 at 1:21 AM GMT, Pierre Langlois wrote:
> * gnu/packages/crates-io.scm (rust-html-escape): New variable.
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -25913,6 +25913,30 @@ (define-public rust-htmlescape-0.3
> + (arguments
> + `(#:cargo-inputs
> + (("rust-utf8-width" ,rust-utf8-width-0.1))
> + #:cargo-development-inputs
> + (("rust-bencher" ,rust-bencher-0.1))))
Please use LIST here:
(arguments
(list #:cargo-inputs
`(("rust-utf8-width" ,rust-utf8-width-0.1))
#:cargo-development-inputs
`(("rust-bencher" ,rust-bencher-0.1))))
> + (description
> + "This package provides a library for encoding and escaping special
> +characters in HTML, decoding and unescaping HTML entities as well.")
This isn't quite a full, grammatical sentence (I guess it was lifted from
the crates.io page?) How about this?
(description
"This package provides a library for encoding special characters
as HTML entities and vice versa.")
-- (
- [bug#49946] [PATCH v7 00/32] gnu: Add tree-sitter for emacs., Pierre Langlois, 2022/11/24
- [bug#49946] [PATCH v7 02/32] gnu: tree-sitter: Update to 0.20.7., Pierre Langlois, 2022/11/24
- [bug#49946] [PATCH v7 01/32] gnu: tree-sitter: Move to its own module., Pierre Langlois, 2022/11/24
- [bug#49946] [PATCH v7 04/32] gnu: Add rust-smallbitvec-2., Pierre Langlois, 2022/11/24
- [bug#49946] [PATCH v7 03/32] gnu: Add rust-html-escape., Pierre Langlois, 2022/11/24
- [bug#49946] [PATCH v7 03/32] gnu: Add rust-html-escape.,
( <=
- [bug#49946] [PATCH v7 08/32] gnu: Add tree-sitter-cpp., Pierre Langlois, 2022/11/24
- [bug#49946] [PATCH v7 10/32] gnu: Add tree-sitter-css., Pierre Langlois, 2022/11/24
- [bug#49946] [PATCH v7 07/32] gnu: Add tree-sitter-c., Pierre Langlois, 2022/11/24
- [bug#49946] [PATCH v7 05/32] gnu: Add tree-sitter-cli., Pierre Langlois, 2022/11/24