diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-14 10:57:13 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:41:12 +0300 |
commit | f16f56bfc454843a07e16523b330bfc4b1be902a (patch) | |
tree | 6c6933c86abc429473597183d2179302bc1449ef | |
parent | b7f77a58fb50c2f85d4a90ba73bc3e0683e2886b (diff) | |
download | guix-f16f56bfc454843a07e16523b330bfc4b1be902a.tar.gz guix-f16f56bfc454843a07e16523b330bfc4b1be902a.zip |
gnu: rust-indexmap-2: Update to 2.2.5.
* gnu/packages/crates-io.scm (rust-indexmap-2): Update to 2.2.5.
[cargo-inputs]: Add rust-borsh-1.
[cargo-development-inputs]: Replace rust-itertools-0.11 with 0.12.
Change-Id: I740dd16e8d28c5c3863cda18f0f1a0d3688d9719
-rw-r--r-- | gnu/packages/crates-io.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 2495d24935..94083ae2a0 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -30237,18 +30237,19 @@ that efficiently appends and removes common indentation after every newline.") (define-public rust-indexmap-2 (package (name "rust-indexmap") - (version "2.1.0") + (version "2.2.5") (source (origin (method url-fetch) (uri (crate-uri "indexmap" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "07rxrqmryr1xfnmhrjlz8ic6jw28v6h5cig3ws2c9d0wifhy2c6m")))) + "1x4x9zdqvlkfks3y84dsynh1p8na3nn48nn454s26rqla6fr42vv")))) (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-quickcheck" ,rust-quickcheck-1) @@ -30258,7 +30259,7 @@ that efficiently appends and removes common indentation after every newline.") #:cargo-development-inputs (("rust-fnv" ,rust-fnv-1) ("rust-fxhash" ,rust-fxhash-0.2) - ("rust-itertools" ,rust-itertools-0.11) + ("rust-itertools" ,rust-itertools-0.12) ("rust-lazy-static" ,rust-lazy-static-1) ("rust-quickcheck" ,rust-quickcheck-1) ("rust-rand" ,rust-rand-0.8) |