guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#70146] [PATCH 003/147] gnu: Add rust-strsim-0.11.


From: Jean-Pierre De Jesus DIAZ
Subject: [bug#70146] [PATCH 003/147] gnu: Add rust-strsim-0.11.
Date: Tue, 2 Apr 2024 18:03:15 +0200

* gnu/packages/crates-io.scm (rust-strsim-0.11): New variable.
(rust-strsim-0.10): Inherit from rust-strsim-0.11.

Change-Id: I31aaa0b18a947ec32424330ff1eb99afb0e9ac59
---
 gnu/packages/crates-io.scm | 20 +++++++++++++++++---
 1 file changed, 17 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index d8504eb396..ba64a5d47d 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -65236,10 +65236,10 @@ (define-public rust-strong-xml-derive-0.6
      "This package provides a strong typed XML parser, based on xmlparser.")
     (license license:expat)))
 
-(define-public rust-strsim-0.10
+(define-public rust-strsim-0.11
   (package
     (name "rust-strsim")
-    (version "0.10.0")
+    (version "0.11.0")
     (source
      (origin
        (method url-fetch)
@@ -65248,7 +65248,7 @@ (define-public rust-strsim-0.10
         (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "08s69r4rcrahwnickvi0kq49z524ci50capybln83mg6b473qivk"))))
+         "00gsdp2x1gkkxsbjxgrjyil2hsbdg49bwv8q2y1f406dwk4p7q2y"))))
     (build-system cargo-build-system)
     (home-page "https://github.com/dguo/strsim-rs";)
     (synopsis "Rust implementations of string similarity metrics")
@@ -65257,6 +65257,20 @@ (define-public rust-strsim-0.10
 and Jaro-Winkler.")
     (license license:expat)))
 
+(define-public rust-strsim-0.10
+  (package
+    (inherit rust-strsim-0.11)
+    (name "rust-strsim")
+    (version "0.10.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "strsim" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "08s69r4rcrahwnickvi0kq49z524ci50capybln83mg6b473qivk"))))))
+
 (define-public rust-strsim-0.9
   (package
     (inherit rust-strsim-0.10)
-- 
2.41.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]