efraim pushed a commit to branch rust-team
in repository guix.

commit f9730bf3034a16ad1df81f94c6c183449f0bdc3d
Author: Efraim Flashner <efr...@flashner.co.il>
AuthorDate: Fri Feb 14 13:18:45 2025 +0200

    gnu: Add rust-gix-transport-0.43.
    
    * gnu/packages/crates-vcs.scm (rust-gix-transport-0.43): New variable.
    (rust-gix-transport-0.42): Inherit from rust-gix-transport-0.43.
    
    Change-Id: I04404238860cb0d74385e01b1ba5fbbd38098b66
---
 gnu/packages/crates-vcs.scm | 53 +++++++++++++++++++++++++++++++++++++--------
 1 file changed, 44 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/crates-vcs.scm b/gnu/packages/crates-vcs.scm
index 8e62e005c4..2a3693b6d2 100644
--- a/gnu/packages/crates-vcs.scm
+++ b/gnu/packages/crates-vcs.scm
@@ -7211,8 +7211,51 @@ tempfile capability with a global registry to assure 
clean-up.")
 can be turned off to zero cost.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-gix-transport-0.43
+  (package
+    (name "rust-gix-transport")
+    (version "0.43.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "gix-transport" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "02r0fwai9pq6f2n1nn588pjc71rxh9zi9169w01nq8xpaw9s989r"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs (("rust-async-std" ,rust-async-std-1)
+                       ("rust-async-trait" ,rust-async-trait-0.1)
+                       ("rust-base64" ,rust-base64-0.22)
+                       ("rust-bstr" ,rust-bstr-1)
+                       ("rust-curl" ,rust-curl-0.4)
+                       ("rust-document-features" ,rust-document-features-0.2)
+                       ("rust-futures-io" ,rust-futures-io-0.3)
+                       ("rust-futures-lite" ,rust-futures-lite-2)
+                       ("rust-gix-command" ,rust-gix-command-0.3)
+                       ("rust-gix-credentials" ,rust-gix-credentials-0.25)
+                       ("rust-gix-features" ,rust-gix-features-0.39)
+                       ("rust-gix-packetline" ,rust-gix-packetline-0.18)
+                       ("rust-gix-quote" ,rust-gix-quote-0.4)
+                       ("rust-gix-sec" ,rust-gix-sec-0.10)
+                       ("rust-gix-url" ,rust-gix-url-0.28)
+                       ("rust-pin-project-lite" ,rust-pin-project-lite-0.2)
+                       ("rust-reqwest" ,rust-reqwest-0.12)
+                       ("rust-serde" ,rust-serde-1)
+                       ("rust-thiserror" ,rust-thiserror-2))
+       #:cargo-development-inputs (("rust-async-std" ,rust-async-std-1)
+                                   ("rust-blocking" ,rust-blocking-1)
+                                   ("rust-maybe-async" 
,rust-maybe-async-0.2))))
+    (home-page "https://github.com/GitoxideLabs/gitoxide";)
+    (synopsis "Implements the Git transport layer for Gitoxide")
+    (description
+     "This package is part of Gitoxide a Rust implementation of Git.  It
+provides an implementation of the Git transport layer.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-gix-transport-0.42
   (package
+    (inherit rust-gix-transport-0.43)
     (name "rust-gix-transport")
     (version "0.42.3")
     (source
@@ -7222,7 +7265,6 @@ can be turned off to zero cost.")
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
         (base32 "07s8lsq97r0hgg9znd2f0jaj49prm2bss9mjjxfs2h8vn35cq7a2"))))
-    (build-system cargo-build-system)
     (arguments
      `(#:cargo-inputs
        (("rust-async-std" ,rust-async-std-1)
@@ -7247,14 +7289,7 @@ can be turned off to zero cost.")
        #:cargo-development-inputs
        (("rust-async-std" ,rust-async-std-1)
         ("rust-blocking" ,rust-blocking-1)
-        ("rust-maybe-async" ,rust-maybe-async-0.2))))
-    (home-page "https://github.com/Byron/gitoxide";)
-    (synopsis
-     "Implements the Git transport layer for Gitoxide")
-    (description
-     "This package is part of Gitoxide a Rust implementation of Git.  It
-provides an implementation of the Git transport layer.")
-    (license (list license:expat license:asl2.0))))
+        ("rust-maybe-async" ,rust-maybe-async-0.2))))))
 
 (define-public rust-gix-transport-0.40
   (package

Reply via email to