diff options
author | Efraim Flashner <[email protected]> | 2024-12-04 21:35:32 +0200 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2025-01-06 12:14:49 +0200 |
commit | cbcb7810383a7e99d840f14cb9c4c3aa7adcc6fa (patch) | |
tree | a38a4ad27702725fa1a2e68aa2d853d6f273cd2d /gnu/packages/crates-web.scm | |
parent | b921487e7ba2850c5562134c1671faa95e60e8b9 (diff) |
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
Diffstat (limited to 'gnu/packages/crates-web.scm')
-rw-r--r-- | gnu/packages/crates-web.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/crates-web.scm b/gnu/packages/crates-web.scm index 7bbd266cdd..1e67c8c038 100644 --- a/gnu/packages/crates-web.scm +++ b/gnu/packages/crates-web.scm @@ -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") |