me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-http-body-0.1.

* gnu/packages/crates-io.scm (rust-http-body-0.1): New variable.
master
Hartmut Goebel 2020-04-20 21:46:33 +02:00
parent 5ac71eda18
commit df3954b211
No known key found for this signature in database
GPG Key ID: 634A8DFFD3F631DF
1 changed files with 19 additions and 0 deletions

View File

@ -9849,6 +9849,25 @@ requests and responses.")
or response body.") or response body.")
(license license:expat))) (license license:expat)))
(define-public rust-http-body-0.1
(package/inherit rust-http-body-0.3
(name "rust-http-body")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "http-body" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0b99404k4mw6a92hvyr0qwzkqv4f866ykg0x7913limjq5cwhhb7"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-bytes" ,rust-bytes-0.4)
("rust-futures" ,rust-futures-0.1)
("rust-http" ,rust-http-0.1)
("rust-tokio-buf" ,rust-tokio-buf-0.1))))))
(define-public rust-http-req-0.5 (define-public rust-http-req-0.5
(package (package
(name "rust-http-req") (name "rust-http-req")