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.
This commit is contained in:
Efraim Flashner 2020-07-09 10:47:30 +03:00
parent 9cd6679fed
commit b36766ecd2
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -10687,7 +10687,7 @@ (define-public rust-image-0.20
(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 @@ (define-public rust-indexmap-1
(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