me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-httparse-1.3.

* gnu/packages/crates-io.scm (rust-httparse-1.3): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-15 10:34:59 -08:00 committed by Efraim Flashner
parent 9cb3f7ea45
commit a0adfccbc2
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 24 additions and 0 deletions

View File

@ -3776,6 +3776,30 @@ compile time.")
requests and responses.") requests and responses.")
(license (list license:asl2.0 license:expat)))) (license (list license:asl2.0 license:expat))))
(define-public rust-httparse-1.3
(package
(name "rust-httparse")
(version "1.3.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "httparse" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"10vsfx1b8drhif08fbi0ha9d3v1f3h80w42rxh0y3hrvzl64nwz8"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-development-inputs
(("rust-pico-sys" ,rust-pico-sys-0.0))))
(home-page "https://github.com/seanmonstar/httparse")
(synopsis "Zero-copy HTTP/1.x parser")
(description
"This package provides a tiny, safe, speedy, zero-copy HTTP/1.x parser.")
(license (list license:asl2.0 license:expat))))
(define-public rust-humantime-1.2 (define-public rust-humantime-1.2
(package (package
(name "rust-humantime") (name "rust-humantime")