diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-07-09 10:47:30 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-07-09 17:00:15 +0300 |
commit | b36766ecd240e84120bbec7a42699f007e7c553d (patch) | |
tree | 3b4f6853ba51b8ca709a98a2c5a1fdb9b3687be9 /gnu | |
parent | 9cd6679fedc6d9af67f08b5a47dd276cfb1ab64a (diff) | |
download | guix-b36766ecd240e84120bbec7a42699f007e7c553d.tar.gz |
gnu: rust-indexmap-1: Update to 1.4.0.
* gnu/packages/crates-io.scm (rust-indexmap-1): Update to 1.4.0. [arguments]: Don't skip build. Add rust-fnv-1.0, rust-itertools-0.8, rust-lazy-static-1, rust-quickcheck-0.9, rust-rand-0.7, rust-serde-test-1.0 to cargo-development-inputs.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index cb4a3adfc1..bd9674667f 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -10687,7 +10687,7 @@ for the most common image formats.") (define-public rust-indexmap-1 (package (name "rust-indexmap") - (version "1.3.2") + (version "1.4.0") (source (origin (method url-fetch) @@ -10696,14 +10696,20 @@ for the most common image formats.") (string-append name "-" version ".tar.gz")) (sha256 (base32 - "14i2gmq9pwaafvlxmsc12j6539hjgqk4j4jz40fz763vbcn08vq7")))) + "1ziabh0lc4wwahv3qgv6aqckyydcrczpagpfp770jn5m2fqv5663")))) (build-system cargo-build-system) (arguments - `(#:skip-build? #t - #:cargo-inputs + `(#:cargo-inputs (("rust-autocfg" ,rust-autocfg-1.0) ("rust-serde" ,rust-serde-1.0) - ("rust-rayon" ,rust-rayon-1)))) + ("rust-rayon" ,rust-rayon-1)) + #:cargo-development-inputs + (("rust-fnv" ,rust-fnv-1.0) + ("rust-itertools" ,rust-itertools-0.8) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-quickcheck" ,rust-quickcheck-0.9) + ("rust-rand" ,rust-rand-0.7) + ("rust-serde-test" ,rust-serde-test-1.0)))) (home-page "https://github.com/bluss/indexmap") (synopsis "Hash table with consistent order and fast iteration.") (description |