efraim pushed a commit to branch rust-team
in repository guix.
commit 855eb0333a56ffe029f0719e9b0201c032963158
Author: Steve George <[email protected]>
AuthorDate: Thu Oct 3 10:34:10 2024 +0100
gnu: Add rust-extract-map-0.1.
* gnu/packages/crates-io.scm (rust-extract-map-0.1): New variable.
Change-Id: I1425b95fb0d8d92b0500c8a24ae736f63c9dc51d
---
gnu/packages/crates-io.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 10d4450b2b..70f5390856 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -25694,6 +25694,31 @@ testing.")
like Don libes expect.")
(license license:expat)))
+(define-public rust-extract-map-0.1
+ (package
+ (name "rust-extract-map")
+ (version "0.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "extract_map" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0s695n5yzs7wwyvaphkkscr8lfv7h94xsczg49a9qa37nnd51xxb"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-gat-lending-iterator" ,rust-gat-lending-iterator-0.1)
+ ("rust-serde" ,rust-serde-1))
+ #:cargo-development-inputs
+ (("rust-serde-json" ,rust-serde-json-1))))
+ (home-page "https://github.com/GnomedDev/extract_map")
+ (synopsis "HashMap for memory efficent storage of value types")
+ (description
+ "This package provides a @code{HashMap} for memory efficent storage of
value
+types which contain their own keys.")
+ (license license:expat)))
+
(define-public rust-eyeball-0.8
(package
(name "rust-eyeball")