gnu: Add rust-hyper-1.
* gnu/packages/crates-web.scm (rust-hyper-1): Add variable. (rust-hyper-0.14): Inherit rust-hyper-1. Change-Id: I4a803247155cae29dab9e9d4bcf915196d8ee31f Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
5dd1fc7f71
commit
ce9f4cc294
1 changed files with 48 additions and 5 deletions
|
@ -2896,8 +2896,55 @@ response bodies.")
|
||||||
"This crates parses and formats HTTP datetime strings.")
|
"This crates parses and formats HTTP datetime strings.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-hyper-1
|
||||||
|
(package
|
||||||
|
(name "rust-hyper")
|
||||||
|
(version "1.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "hyper" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0fi6k7hz5fmdph0a5r8hw50d7h2n9zxkizmafcmb65f67bblhr8q"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; unresolved imports `super::DecodedLength`, `super::Sender`
|
||||||
|
#:cargo-inputs (("rust-bytes" ,rust-bytes-1)
|
||||||
|
("rust-futures-channel" ,rust-futures-channel-0.3)
|
||||||
|
("rust-futures-util" ,rust-futures-util-0.3)
|
||||||
|
("rust-h2" ,rust-h2-0.4)
|
||||||
|
("rust-http" ,rust-http-1)
|
||||||
|
("rust-http-body" ,rust-http-body-1)
|
||||||
|
("rust-http-body-util" ,rust-http-body-util-0.1)
|
||||||
|
("rust-httparse" ,rust-httparse-1)
|
||||||
|
("rust-httpdate" ,rust-httpdate-1)
|
||||||
|
("rust-itoa" ,rust-itoa-1)
|
||||||
|
("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-pin-project-lite" ,rust-pin-project-lite-0.2)
|
||||||
|
("rust-tokio" ,rust-tokio-1)
|
||||||
|
("rust-tracing" ,rust-tracing-0.1)
|
||||||
|
("rust-want" ,rust-want-0.3))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-form-urlencoded" ,rust-form-urlencoded-1)
|
||||||
|
("rust-futures-channel" ,rust-futures-channel-0.3)
|
||||||
|
("rust-futures-util" ,rust-futures-util-0.3)
|
||||||
|
("rust-http-body-util" ,rust-http-body-util-0.1)
|
||||||
|
("rust-pretty-env-logger" ,rust-pretty-env-logger-0.5)
|
||||||
|
("rust-serde" ,rust-serde-1)
|
||||||
|
("rust-serde-json" ,rust-serde-json-1)
|
||||||
|
("rust-spmc" ,rust-spmc-0.3)
|
||||||
|
("rust-tokio" ,rust-tokio-1)
|
||||||
|
("rust-tokio-test" ,rust-tokio-test-0.4)
|
||||||
|
("rust-tokio-util" ,rust-tokio-util-0.7))))
|
||||||
|
(home-page "https://hyper.rs")
|
||||||
|
(synopsis "Fast and correct HTTP library")
|
||||||
|
(description "This package provides a fast and correct HTTP library.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-hyper-0.14
|
(define-public rust-hyper-0.14
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-hyper-1)
|
||||||
(name "rust-hyper")
|
(name "rust-hyper")
|
||||||
(version "0.14.27")
|
(version "0.14.27")
|
||||||
(source
|
(source
|
||||||
|
@ -2940,11 +2987,7 @@ response bodies.")
|
||||||
("rust-tokio-test" ,rust-tokio-test-0.4)
|
("rust-tokio-test" ,rust-tokio-test-0.4)
|
||||||
("rust-tokio-util" ,rust-tokio-util-0.7)
|
("rust-tokio-util" ,rust-tokio-util-0.7)
|
||||||
("rust-tower" ,rust-tower-0.4)
|
("rust-tower" ,rust-tower-0.4)
|
||||||
("rust-url" ,rust-url-2))))
|
("rust-url" ,rust-url-2))))))
|
||||||
(home-page "https://hyper.rs")
|
|
||||||
(synopsis "Fast and correct HTTP library")
|
|
||||||
(description "This package provides a fast and correct HTTP library.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-hyper-0.13
|
(define-public rust-hyper-0.13
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue