mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 23:36:35 +01:00
gnu: Add rust-h3-0.0.6.
* gnu/packages/crates-web.scm (rust-h3-0.0.6): New variable. (rust-h3-0.0.4): Inherit from rust-h3-0.0.6. Change-Id: I66b01f3c8b47db1c94e32800be2c5e6045a87090
This commit is contained in:
parent
96da8b980e
commit
cc1b3305fb
1 changed files with 41 additions and 6 deletions
|
@ -2793,8 +2793,48 @@ (define-public rust-h2-0.1
|
||||||
("rust-webpki" ,rust-webpki-0.21)
|
("rust-webpki" ,rust-webpki-0.21)
|
||||||
("rust-webpki-roots" ,rust-webpki-roots-0.17))))))
|
("rust-webpki-roots" ,rust-webpki-roots-0.17))))))
|
||||||
|
|
||||||
|
(define-public rust-h3-0.0.6
|
||||||
|
(package
|
||||||
|
(name "rust-h3")
|
||||||
|
(version "0.0.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "h3" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1ay6bfnj49wdyhvsqf78msdv3zxl32cjfk745z8scirvjsh7axjy"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:tests? #f ; not all files included
|
||||||
|
#:cargo-inputs
|
||||||
|
(list rust-bytes-1
|
||||||
|
rust-fastrand-2
|
||||||
|
rust-futures-util-0.3
|
||||||
|
rust-http-1
|
||||||
|
rust-pin-project-lite-0.2
|
||||||
|
rust-tokio-1
|
||||||
|
rust-tracing-0.1)
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(list rust-assert-matches-1
|
||||||
|
rust-futures-0.3
|
||||||
|
rust-futures-util-0.3
|
||||||
|
rust-proptest-1
|
||||||
|
rust-quinn-0.11
|
||||||
|
rust-quinn-proto-0.11
|
||||||
|
rust-rcgen-0.13
|
||||||
|
rust-rustls-0.23
|
||||||
|
rust-tokio-1
|
||||||
|
rust-tokio-util-0.7
|
||||||
|
rust-tracing-subscriber-0.3)))
|
||||||
|
(home-page "https://github.com/hyperium/h3")
|
||||||
|
(synopsis "Async HTTP/3 implementation")
|
||||||
|
(description "This package provides an async HTTP/3 implementation.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-h3-0.0.4
|
(define-public rust-h3-0.0.4
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-h3-0.0.6)
|
||||||
(name "rust-h3")
|
(name "rust-h3")
|
||||||
(version "0.0.4")
|
(version "0.0.4")
|
||||||
(source
|
(source
|
||||||
|
@ -2804,7 +2844,6 @@ (define-public rust-h3-0.0.4
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "04clhh6b5iqlgnbppikbz4zpxl78g4vkyhyrjgnyg4vfkrmqij5i"))))
|
(base32 "04clhh6b5iqlgnbppikbz4zpxl78g4vkyhyrjgnyg4vfkrmqij5i"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;not all files included
|
`(#:tests? #f ;not all files included
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
|
@ -2826,11 +2865,7 @@ (define-public rust-h3-0.0.4
|
||||||
("rust-rustls" ,rust-rustls-0.21)
|
("rust-rustls" ,rust-rustls-0.21)
|
||||||
("rust-tokio" ,rust-tokio-1)
|
("rust-tokio" ,rust-tokio-1)
|
||||||
("rust-tokio-util" ,rust-tokio-util-0.7)
|
("rust-tokio-util" ,rust-tokio-util-0.7)
|
||||||
("rust-tracing-subscriber" ,rust-tracing-subscriber-0.3))))
|
("rust-tracing-subscriber" ,rust-tracing-subscriber-0.3))))))
|
||||||
(home-page "https://github.com/hyperium/h3")
|
|
||||||
(synopsis "Async HTTP/3 implementation")
|
|
||||||
(description "This package provides an async HTTP/3 implementation.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-h3-0.0.3
|
(define-public rust-h3-0.0.3
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue