efraim pushed a commit to branch rust-team
in repository guix.
commit dc2d447277e5cd5a1fc1a3143f224296a83c35cf
Author: Herman Rimm <[email protected]>
AuthorDate: Tue Dec 24 21:11:14 2024 +0100
gnu: rust-pulldown-cmark-to-cmark-10: Order alphabetically.
* gnu/packages/crates-io.scm (rust-pulldown-cmark-to-cmark-10): Order.
Change-Id: I6f93466e23fdb0c796266264e1465126a53bbf58
Signed-off-by: Efraim Flashner <[email protected]>
---
gnu/packages/crates-io.scm | 60 +++++++++++++++++++++++-----------------------
1 file changed, 30 insertions(+), 30 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 1394edb809..c29c7235d1 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -63339,36 +63339,6 @@ compliant email address validation.")
the pulldown-cmark project.")
(license license:expat)))
-(define-public rust-pulldown-cmark-to-cmark-10
- (package
- (name "rust-pulldown-cmark-to-cmark")
- (version "10.0.4")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "pulldown-cmark-to-cmark" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "0gc366cmd5jxal9m95l17rvqsm4dn62lywc8v5gwq8vcjvhyd501"))))
- (build-system cargo-build-system)
- (arguments
- `(#:cargo-inputs (("rust-pulldown-cmark" ,rust-pulldown-cmark-0.9))
- #:cargo-development-inputs
- (("rust-indoc" ,rust-indoc-1)
- ("rust-pretty-assertions" ,rust-pretty-assertions-0.7))))
- (home-page "https://github.com/Byron/pulldown-cmark-to-cmark")
- (synopsis
- "Convert pulldown-cmark Events back to the string they were parsed from")
- (description
- "A utility library which translates Event back to markdown. It's the
-prerequisite for writing markdown filters which can work as
-@code{mdbook-preprocessors}.
-
-This library takes great pride in supporting everything that
-@code{pulldown-cmark} supports, including tables and footnotes and codeblocks
-in codeblocks, while assuring quality with a powerful test suite.")
- (license license:asl2.0)))
-
(define-public rust-pulldown-cmark-0.12
(package
(name "rust-pulldown-cmark")
@@ -63553,6 +63523,36 @@ in codeblocks, while assuring quality with a powerful
test suite.")
(("rust-bitflags" ,rust-bitflags-0.9)
("rust-getopts" ,rust-getopts-0.2))))))
+(define-public rust-pulldown-cmark-to-cmark-10
+ (package
+ (name "rust-pulldown-cmark-to-cmark")
+ (version "10.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "pulldown-cmark-to-cmark" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0gc366cmd5jxal9m95l17rvqsm4dn62lywc8v5gwq8vcjvhyd501"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-pulldown-cmark" ,rust-pulldown-cmark-0.9))
+ #:cargo-development-inputs
+ (("rust-indoc" ,rust-indoc-1)
+ ("rust-pretty-assertions" ,rust-pretty-assertions-0.7))))
+ (home-page "https://github.com/Byron/pulldown-cmark-to-cmark")
+ (synopsis
+ "Convert pulldown-cmark Events back to the string they were parsed from")
+ (description
+ "A utility library which translates Event back to markdown. It's the
+prerequisite for writing markdown filters which can work as
+@code{mdbook-preprocessors}.
+
+This library takes great pride in supporting everything that
+@code{pulldown-cmark} supports, including tables and footnotes and codeblocks
+in codeblocks, while assuring quality with a powerful test suite.")
+ (license license:asl2.0)))
+
(define-public rust-pulldown-cmark-to-cmark-7
(package
(inherit rust-pulldown-cmark-to-cmark-10)