me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-indexmap-2.

* gnu/packages/crates-io.scm (rust-indexmap-2): New variable.
(rust-indexmap-1): Inherit from rust-indexmap-2.
Efraim Flashner 2023-07-13 12:30:22 +03:00
parent da19d144d0
commit c5aa46102b
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 40 additions and 10 deletions

View File

@ -30681,23 +30681,26 @@ crate.")
that efficiently appends and removes common indentation after every newline.") that efficiently appends and removes common indentation after every newline.")
(license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
(define-public rust-indexmap-1 (define-public rust-indexmap-2
(package (package
(name "rust-indexmap") (name "rust-indexmap")
(version "1.9.2") (version "2.0.0")
(source (source (origin
(origin (method url-fetch)
(method url-fetch) (uri (crate-uri "indexmap" version))
(uri (crate-uri "indexmap" version)) (file-name (string-append name "-" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz")) (sha256
(sha256 (base32
(base32 "16dkr2h5p379jcr8rnb420396yvzid2myirc2w70zcf43yffg18q")))) "0pdnbvv6gnyxx2li8mks8p00fya3ynmhx3n6infpcy8a4gi7yiym"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:cargo-inputs `(#:cargo-inputs
(("rust-arbitrary" ,rust-arbitrary-1) (("rust-arbitrary" ,rust-arbitrary-1)
("rust-equivalent" ,rust-equivalent-1)
("rust-hashbrown" ,rust-hashbrown-0.14)
("rust-quickcheck" ,rust-quickcheck-1) ("rust-quickcheck" ,rust-quickcheck-1)
("rust-rustc-rayon" ,rust-rustc-rayon-0.4) ("rust-rayon" ,rust-rayon-1)
("rust-rustc-rayon" ,rust-rustc-rayon-0.5)
("rust-serde" ,rust-serde-1)) ("rust-serde" ,rust-serde-1))
#:cargo-development-inputs #:cargo-development-inputs
(("rust-fnv" ,rust-fnv-1) (("rust-fnv" ,rust-fnv-1)
@ -30719,6 +30722,33 @@ removals, and it allows lookup of its elements by either hash table key
or numerical index. A corresponding hash set type is also provided.") or numerical index. A corresponding hash set type is also provided.")
(license (list license:asl2.0 license:expat)))) (license (list license:asl2.0 license:expat))))
(define-public rust-indexmap-1
(package
(inherit rust-indexmap-2)
(name "rust-indexmap")
(version "1.9.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "indexmap" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "16dkr2h5p379jcr8rnb420396yvzid2myirc2w70zcf43yffg18q"))))
(arguments
`(#:cargo-inputs
(("rust-arbitrary" ,rust-arbitrary-1)
("rust-quickcheck" ,rust-quickcheck-1)
("rust-rustc-rayon" ,rust-rustc-rayon-0.4)
("rust-serde" ,rust-serde-1))
#:cargo-development-inputs
(("rust-fnv" ,rust-fnv-1)
("rust-fxhash" ,rust-fxhash-0.2)
("rust-itertools" ,rust-itertools-0.10)
("rust-lazy-static" ,rust-lazy-static-1)
("rust-quickcheck" ,rust-quickcheck-1)
("rust-rand" ,rust-rand-0.8)
("rust-serde-derive" ,rust-serde-derive-1))))))
(define-public rust-indexmap-1.8 (define-public rust-indexmap-1.8
(package (package
(inherit rust-indexmap-1) (inherit rust-indexmap-1)