me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-typed-headers-0.2.

* gnu/packages/crates-io.scm (rust-typed-headers-0.2): New variable.
master
Arun Isaac 2020-09-20 12:28:37 +05:30
parent 94975798fc
commit e06c021be3
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 26 additions and 0 deletions

View File

@ -28741,6 +28741,32 @@ extension for the Trust-DNS client to use rustls for TLS.")
"The arena, a fast but limited type of allocator.") "The arena, a fast but limited type of allocator.")
(license license:expat))) (license license:expat)))
(define-public rust-typed-headers-0.2
(package
(name "rust-typed-headers")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "typed-headers" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0jm2xzvvml3a9hhvzf9q4v22l5ifrxrx2kspy7aymknckqgacy9i"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-base64" ,rust-base64-0.11)
("rust-bytes" ,rust-bytes-0.5)
("rust-chrono" ,rust-chrono-0.4)
("rust-http" ,rust-http-0.2)
("rust-mime" ,rust-mime-0.3))))
(home-page "https://github.com/sfackler/typed-headers")
(synopsis "Typed HTTP header serialization and deserialization")
(description "This package provides typed HTTP header serialization and
deserialization.")
(license (list license:expat license:asl2.0))))
(define-public rust-typemap-0.3 (define-public rust-typemap-0.3
(package (package
(name "rust-typemap") (name "rust-typemap")