gnu: rust-http-1: Update to 1.2.0.

* gnu/packages/crates-web.scm (rust-http-1): Update to 1.2.0.
[cargo-development-inputs]: Replace rust-quickcheck-0.9 with 1,
rust-rand-0.7 with 0.8.  Remove rust-indexmap-1.8, rust-seahash-3.

Change-Id: Ie3929310466edddc020e1560e99965a481aafff2
This commit is contained in:
Efraim Flashner 2024-12-04 21:35:32 +02:00
parent b921487e7b
commit cbcb781038
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3110,24 +3110,22 @@ libraries.")
(define-public rust-http-1
(package
(name "rust-http")
(version "1.0.0")
(version "1.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "http" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1sllw565jn8r5w7h928nsfqq33x586pyasdfr7vid01scwwgsamk"))))
(base32 "1skglzdf98j5nzxlii540n11is0w4l80mi5sm3xrj716asps4v7i"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-bytes" ,rust-bytes-1)
("rust-fnv" ,rust-fnv-1)
("rust-itoa" ,rust-itoa-1))
#:cargo-development-inputs (("rust-doc-comment" ,rust-doc-comment-0.3)
("rust-indexmap" ,rust-indexmap-1.8)
("rust-quickcheck" ,rust-quickcheck-0.9)
("rust-rand" ,rust-rand-0.7)
("rust-seahash" ,rust-seahash-3)
("rust-quickcheck" ,rust-quickcheck-1)
("rust-rand" ,rust-rand-0.8)
("rust-serde" ,rust-serde-1)
("rust-serde-json" ,rust-serde-json-1))))
(home-page "https://github.com/hyperium/http")