1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 10:30:43 +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
(package
(name "rust-petgraph")
(version "0.6.0")
(version "0.6.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "petgraph" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0kw27zzhsa82d4qpkrz91vznyxi3wm0qg0i84grfaqqbkpxa44sa"))))
(base32 "1ns7mbxidnn2pqahbbjccxkrqkrll2i5rbxx43ns6rh6fn3cridl"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-fixedbitset" ,rust-fixedbitset-0.4)
("rust-indexmap" ,rust-indexmap-1)
("rust-indexmap" ,rust-indexmap-2)
("rust-quickcheck" ,rust-quickcheck-0.8)
("rust-rayon" ,rust-rayon-1)
("rust-serde" ,rust-serde-1)
("rust-serde-derive" ,rust-serde-derive-1))))
(home-page "https://github.com/petgraph/petgraph")