1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 02:50:45 +02:00

gnu: rust-petgraph-0.6: Update to 0.6.5.

* gnu/packages/crates-io.scm (rust-petgraph-0.6): Update to 0.6.5.
[cargo-inputs]: Add rust-rayon-1.  Replace rust-indexmap-1 with 2.

Change-Id: I9231dc18304eb625c720e5cc5bbc7ccc58257369
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Jordan Moore 2025-01-04 23:29:21 -05:00 committed by Efraim Flashner
parent 091b7cf5ec
commit f65867896e
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -52673,21 +52673,22 @@ algorithm.")
(define-public rust-petgraph-0.6 (define-public rust-petgraph-0.6
(package (package
(name "rust-petgraph") (name "rust-petgraph")
(version "0.6.0") (version "0.6.5")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (crate-uri "petgraph" version)) (uri (crate-uri "petgraph" version))
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "0kw27zzhsa82d4qpkrz91vznyxi3wm0qg0i84grfaqqbkpxa44sa")))) (base32 "1ns7mbxidnn2pqahbbjccxkrqkrll2i5rbxx43ns6rh6fn3cridl"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:skip-build? #t `(#:skip-build? #t
#:cargo-inputs #:cargo-inputs
(("rust-fixedbitset" ,rust-fixedbitset-0.4) (("rust-fixedbitset" ,rust-fixedbitset-0.4)
("rust-indexmap" ,rust-indexmap-1) ("rust-indexmap" ,rust-indexmap-2)
("rust-quickcheck" ,rust-quickcheck-0.8) ("rust-quickcheck" ,rust-quickcheck-0.8)
("rust-rayon" ,rust-rayon-1)
("rust-serde" ,rust-serde-1) ("rust-serde" ,rust-serde-1)
("rust-serde-derive" ,rust-serde-derive-1)))) ("rust-serde-derive" ,rust-serde-derive-1))))
(home-page "https://github.com/petgraph/petgraph") (home-page "https://github.com/petgraph/petgraph")