efraim pushed a commit to branch rust-team
in repository guix.

commit 74fdf44b612312597c93bf06d9da1ee0b2ab1714
Author: Efraim Flashner <[email protected]>
AuthorDate: Sat Dec 28 20:52:10 2024 +0200

    gnu: Add rust-roxmltree-0.20.
    
    * gnu/packages/crates-io.scm (rust-roxmltree-0.20): New variable.
    (rust-roxmltree-0.19): Inherit from rust-roxmltree-0.20.
    
    Change-Id: I6be7716bfe65d5036aec6b2378e9d2b7f2e5acb8
---
 gnu/packages/crates-io.scm | 19 ++++++++++++++++---
 1 file changed, 16 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5f1e1a767f..6450103e83 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -66275,17 +66275,17 @@ can handle huge texts and memory-incoherent edits 
with ease.")
      "This package provides a library for generic lossless syntax trees.")
     (license (list license:expat license:asl2.0))))
 
-(define-public rust-roxmltree-0.19
+(define-public rust-roxmltree-0.20
   (package
     (name "rust-roxmltree")
-    (version "0.19.0")
+    (version "0.20.0")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "roxmltree" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "0zs0q8hg5nnh91s1ib6r0fky7xm8ay63ayfa5i1afxxpwgalzl9w"))))
+        (base32 "15vw91ps91wkmmgy62khf9zb63bdinvm80957dascbsw7dwvc83c"))))
     (build-system cargo-build-system)
     (home-page "https://github.com/RazrFalcon/roxmltree";)
     (synopsis "Represent an XML as a read-only tree")
@@ -66293,6 +66293,19 @@ can handle huge texts and memory-incoherent edits with 
ease.")
      "@code{roxmltree} represents an XML 1.0 document as a read-only tree.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-roxmltree-0.19
+  (package
+    (inherit rust-roxmltree-0.20)
+    (name "rust-roxmltree")
+    (version "0.19.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "roxmltree" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0zs0q8hg5nnh91s1ib6r0fky7xm8ay63ayfa5i1afxxpwgalzl9w"))))))
+
 (define-public rust-roxmltree-0.18
   (package
     (inherit rust-roxmltree-0.19)

Reply via email to