efraim pushed a commit to branch rust-team
in repository guix.
commit 719b63f78926af90f1b9bc37bc4306e1c616413d
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Dec 29 22:45:01 2024 +0200
gnu: Add rust-glob-match-0.2.
* gnu/packages/crates-io.scm (rust-glob-match-0.2): New variable.
Change-Id: I63f6051b4f60ec36e26768f9f4d2b7707a04b24b
---
gnu/packages/crates-io.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 28f8a7b145..c0b915d876 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -31803,6 +31803,27 @@ shell style patterns.")
(base32
"1ysvi72slkw784fcsymgj4308c3y03gwjjzqxp80xdjnkbh8vqcb"))))))
+(define-public rust-glob-match-0.2
+ (package
+ (name "rust-glob-match")
+ (version "0.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "glob-match" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "178bjn684dd50px9n8lwa72fn94566d9wmcp86m9h8a17d8ck1cr"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.4)
+ ("rust-glob" ,rust-glob-0.3)
+ ("rust-globset" ,rust-globset-0.4))))
+ (home-page "https://docs.rs/glob-match/0.2.1")
+ (synopsis "An extremely fast glob matcher")
+ (description "This package provides an extremely fast glob matcher.")
+ (license license:expat)))
+
(define-public rust-globset-0.4
(package
(name "rust-globset")