me
/
guix
Archived
1
0
Fork 0

gnu: rust-httpdate-1: Update to 1.0.3.

* gnu/packages/crates-io.scm (rust-httpdate-1): Update to 1.0.3.
[arguments]: Don't skip the build.
[cargo-development-inputs]: Add rust-criterion-0.5.

Change-Id: Id86032ed2c8cd8578d554f0283bbca7b0c3f1c9a
master
Efraim Flashner 2024-01-22 21:03:29 +02:00
parent df4952d8bb
commit b2a5eda760
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 3 deletions

View File

@ -29208,16 +29208,17 @@ HTTP request or response body.")
(define-public rust-httpdate-1
(package
(name "rust-httpdate")
(version "1.0.2")
(version "1.0.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "httpdate" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "08bln7b1ibdw26gl8h4dr6rlybvlkyhlha309xbh9ghxh9nf78f4"))))
(base32 "1aa9rd2sac0zhjqh24c9xvir96g188zldkx0hr6dnnlx5904cfyz"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(arguments
`(#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.5))))
(home-page "https://github.com/pyfisch/httpdate")
(synopsis "HTTP date parsing and formatting")
(description