efraim pushed a commit to branch rust-team
in repository guix.
commit 706417c96e16269691c1b0907e5031ed60d68f78
Author: Efraim Flashner <[email protected]>
AuthorDate: Tue Dec 3 16:49:29 2024 +0200
gnu: rust-indexmap-2: Update to 2.7.0.
* gnu/packages/crates-io.scm (rust-indexmap-2): Update to 2.7.0.
[cargo-inputs]: Replace rust-hashbrown-0.14 with 0.15.
[home-page]: Update to new home-page.
Change-Id: I8de56d9fc90d969106515b7972e8bf88b070d9d1
---
gnu/packages/crates-io.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 957e9a4651..3733e611bf 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -35824,21 +35824,21 @@ that efficiently appends and removes common
indentation after every newline.")
(define-public rust-indexmap-2
(package
(name "rust-indexmap")
- (version "2.6.0")
+ (version "2.7.0")
(source (origin
(method url-fetch)
(uri (crate-uri "indexmap" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "1nmrwn8lbs19gkvhxaawffzbvrpyrb5y3drcrr645x957kz0fybh"))))
+ "07s7jmdymvd0rm4yswp0j3napx57hkjm9gs9n55lvs2g78vj5y32"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-arbitrary" ,rust-arbitrary-1)
("rust-borsh" ,rust-borsh-1)
("rust-equivalent" ,rust-equivalent-1)
- ("rust-hashbrown" ,rust-hashbrown-0.14)
+ ("rust-hashbrown" ,rust-hashbrown-0.15)
("rust-quickcheck" ,rust-quickcheck-1)
("rust-rayon" ,rust-rayon-1)
("rust-rustc-rayon" ,rust-rustc-rayon-0.5)
@@ -35851,7 +35851,7 @@ that efficiently appends and removes common indentation
after every newline.")
("rust-quickcheck" ,rust-quickcheck-1)
("rust-rand" ,rust-rand-0.8)
("rust-serde-derive" ,rust-serde-derive-1))))
- (home-page "https://github.com/bluss/indexmap")
+ (home-page "https://github.com/indexmap-rs/indexmap")
(synopsis "Hash table with consistent order and fast iteration")
(description
"This package provides a hash table with consistent order and fast
iteration.