gnu: Add rust-gix-traverse-0.33.

* gnu/packages/crates-io.scm (rust-gix-traverse-0.33): New variable.
(rust-gix-traverse-0.26): Inherit from rust-gix-traverse-0.33.

Change-Id: I0cdf6eb9261e8237dd95afa4bf11c4dbe6ac4fe4
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Steve George 2023-11-09 19:38:17 +00:00 committed by Efraim Flashner
parent 375518b3ee
commit 5bbacd1139
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -31929,8 +31929,36 @@ (define-public rust-gix-transport-0.32
implementing the git transport layer.")
(license (list license:expat license:asl2.0))))
(define-public rust-gix-traverse-0.33
(package
(name "rust-gix-traverse")
(version "0.33.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "gix-traverse" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "180vp1piwlalsv8qkmmif03l7h2kdxfx5vawkclbmb236smh9vr2"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-gix-commitgraph" ,rust-gix-commitgraph-0.21)
("rust-gix-date" ,rust-gix-date-0.8)
("rust-gix-hash" ,rust-gix-hash-0.13)
("rust-gix-hashtable" ,rust-gix-hashtable-0.4)
("rust-gix-object" ,rust-gix-object-0.37)
("rust-gix-revwalk" ,rust-gix-revwalk-0.8)
("rust-smallvec" ,rust-smallvec-1)
("rust-thiserror" ,rust-thiserror-1))))
(home-page "https://github.com/Byron/gitoxide")
(synopsis "Ways to traverse Git commit graphs and trees for Gix")
(description "Part of Gitoxide, a pure Rust implementation of Git. This
package is used to traverse Git commit graphs and trees.")
(license (list license:expat license:asl2.0))))
(define-public rust-gix-traverse-0.26
(package
(inherit rust-gix-traverse-0.33)
(name "rust-gix-traverse")
(version "0.26.0")
(source
@ -31940,17 +31968,12 @@ (define-public rust-gix-traverse-0.26
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1n9kgzw5jal2jsqb56bpaj1xp35zp2hz6nf5klrjdgxl9jc2x15h"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-gix-hash" ,rust-gix-hash-0.11)
("rust-gix-hashtable" ,rust-gix-hashtable-0.2)
("rust-gix-object" ,rust-gix-object-0.30)
("rust-thiserror" ,rust-thiserror-1))))
(home-page "https://github.com/Byron/gitoxide")
(synopsis "Crate of the gitoxide project")
(description "This package provides a crate of the gitoxide project.")
(license (list license:expat license:asl2.0))))
("rust-thiserror" ,rust-thiserror-1))))))
(define-public rust-gix-url-0.19
(package