1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 11:30:44 +02:00

gnu: rust-h2-0.4: Update to 0.4.7.

* gnu/packages/crates-web.scm (rust-h2-0.4): Update to 0.4.7.
[cargo-inputs]: Add rust-atomic-waker-1.  Remove rust-futures-util-3.
[cargo-development-inputs]: Replace rust-tokio-rustls-0.24 with 0.26,
rust-webpki-roots-0.25 with 0.26.

Change-Id: Iaabbe33fa5a1e21a5848c8f9d44f6aa848a9b30d
This commit is contained in:
Efraim Flashner 2024-12-04 20:51:05 +02:00
parent ef1a74981a
commit bd213b5fef
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2368,22 +2368,22 @@ transfer coding.")
(define-public rust-h2-0.4
(package
(name "rust-h2")
(version "0.4.4")
(version "0.4.7")
(source
(origin
(method url-fetch)
(uri (crate-uri "h2" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0sc0ymhiqp4hbz39d405cjbga77wnz2pprbgyc498xs58hlwfvl1"))))
(base32 "0bljg66n2x3c5yzbi12v2jfcj77hb35rjq0gq21x0d6n52bjgbnc"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Not all files included
#:cargo-inputs (("rust-bytes" ,rust-bytes-1)
#:cargo-inputs (("rust-atomic-waker" ,rust-atomic-waker-1)
("rust-bytes" ,rust-bytes-1)
("rust-fnv" ,rust-fnv-1)
("rust-futures-core" ,rust-futures-core-0.3)
("rust-futures-sink" ,rust-futures-sink-0.3)
("rust-futures-util" ,rust-futures-util-0.3)
("rust-http" ,rust-http-1)
("rust-indexmap" ,rust-indexmap-2)
("rust-slab" ,rust-slab-0.4)
@ -2398,9 +2398,9 @@ transfer coding.")
("rust-serde" ,rust-serde-1)
("rust-serde-json" ,rust-serde-json-1)
("rust-tokio" ,rust-tokio-1)
("rust-tokio-rustls" ,rust-tokio-rustls-0.24)
("rust-tokio-rustls" ,rust-tokio-rustls-0.26)
("rust-walkdir" ,rust-walkdir-2)
("rust-webpki-roots" ,rust-webpki-roots-0.25))))
("rust-webpki-roots" ,rust-webpki-roots-0.26))))
(home-page "https://github.com/hyperium/h2")
(synopsis "HTTP/2 client and server")
(description "This package provides an HTTP/2 client and server.")