me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-cookie-0.12.

* gnu/packages/crates-io.scm (rust-cookie-0.12): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2020-06-17 16:33:19 -07:00 committed by Efraim Flashner
parent 60a2136261
commit 20c579b128
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 28 additions and 0 deletions

View File

@ -4552,6 +4552,34 @@ It is inspired by the Linux kernel's @code{crypto_memneq}.")
semantics than those provided by @code{as} or @code{From}/@code{Into}.") semantics than those provided by @code{as} or @code{From}/@code{Into}.")
(license license:expat))) (license license:expat)))
(define-public rust-cookie-0.12
(package
(name "rust-cookie")
(version "0.12.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "cookie" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1mdvqixahcywvqp0y8k2skkgbpfhsp0w73l9mz93dcrx1gq091l8"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-base64" ,rust-base64-0.10)
("rust-ring" ,rust-ring-0.14)
("rust-time" ,rust-time-0.1)
("rust-url" ,rust-url-1))))
(home-page "https://github.com/SergioBenitez/cookie-rs")
(synopsis
"Crate for parsing HTTP cookie headers and managing a cookie jar")
(description
"Parse HTTP cookie headers and manage a cookie jar with this crate.
It supports signed and private (encrypted + signed) jars.")
(license (list license:asl2.0 license:expat))))
(define-public rust-cordic-0.1 (define-public rust-cordic-0.1
(package (package
(name "rust-cordic") (name "rust-cordic")