diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-12-24 09:56:28 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:56:36 +0200 |
commit | a2b0f0ff7ab34fccf81bada8833e5cf20794ba60 (patch) | |
tree | 86d9f72b0360d98d0d459ec2931035647342d3c1 /gnu/packages/crates-io.scm | |
parent | 68c17ae3791276513a64b2b9635346301054cb60 (diff) | |
download | guix-a2b0f0ff7ab34fccf81bada8833e5cf20794ba60.tar.gz |
gnu: Add rust-http-1.
* gnu/packages/crates-io.scm (rust-http-1): New variable. (rust-http-0.2): Inherit from rust-http-1. Change-Id: I555477a03d7bf15c18deb03e513c4717db53a094
Diffstat (limited to 'gnu/packages/crates-io.scm')
-rw-r--r-- | gnu/packages/crates-io.scm | 38 |
1 files changed, 31 insertions, 7 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 1ef0398ab4..6784e457f8 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -36419,8 +36419,38 @@ and traversing, manipulating, and querying the document tree.") (description "Kuznyechik (GOST R 34.12-2015) block cipher") (license (list license:expat license:asl2.0)))) +(define-public rust-http-1 + (package + (name "rust-http") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "http" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1sllw565jn8r5w7h928nsfqq33x586pyasdfr7vid01scwwgsamk")))) + (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-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1)))) + (home-page "https://github.com/hyperium/http") + (synopsis "Set of types for representing HTTP requests and responses") + (description "This package provides a set of types for representing HTTP +requests and responses.") + (license (list license:expat license:asl2.0)))) + (define-public rust-http-0.2 (package + (inherit rust-http-1) (name "rust-http") (version "0.2.9") (source @@ -36430,7 +36460,6 @@ and traversing, manipulating, and querying the document tree.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "10j4jjpngaymxjvi92hllr2y6acr09pq61cvzxd44qzvkb4zyvmx")))) - (build-system cargo-build-system) (arguments `(#:cargo-inputs (("rust-bytes" ,rust-bytes-1) @@ -36443,12 +36472,7 @@ and traversing, manipulating, and querying the document tree.") ("rust-rand" ,rust-rand-0.7) ("rust-seahash" ,rust-seahash-3) ("rust-serde" ,rust-serde-1) - ("rust-serde-json" ,rust-serde-json-1)))) - (home-page "https://github.com/hyperium/http") - (synopsis "Set of types for representing HTTP requests and responses") - (description "This package provides a set of types for representing HTTP -requests and responses.") - (license (list license:asl2.0 license:expat)))) + ("rust-serde-json" ,rust-serde-json-1)))))) (define-public rust-http-0.1 (package |