gnu: Add rust-strsim-0.11.

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

Change-Id: If2a421a7016d9bb5f9bcbf76860fde230cc9ef11
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
VÖRÖSKŐI András 2024-02-24 21:39:54 +01:00 committed by Efraim Flashner
parent eb6e3cbd77
commit 8f137d38d7
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -71411,19 +71411,17 @@ (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)
(uri (crate-uri "strsim" version))
(file-name
(string-append name "-" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"08s69r4rcrahwnickvi0kq49z524ci50capybln83mg6b473qivk"))))
(base32 "00gsdp2x1gkkxsbjxgrjyil2hsbdg49bwv8q2y1f406dwk4p7q2y"))))
(build-system cargo-build-system)
(home-page "https://github.com/dguo/strsim-rs")
(synopsis "Rust implementations of string similarity metrics")
@ -71432,6 +71430,19 @@ (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)