gnu: Add rust-jsonwebtoken-7.

* gnu/packages/crates-web.scm (rust-jsonwebtoken-7): New variable.

Change-Id: I238fa68e13e877f6b95aa0a3cc08337b07999688
This commit is contained in:
Efraim Flashner 2024-03-18 12:01:34 +02:00
parent 18035de848
commit 8a30f06727
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -4043,6 +4043,31 @@ (define-public rust-isahc-0.9
("rust-test-case" ,rust-test-case-1)
("rust-tracing-subscriber" ,rust-tracing-subscriber-0.2))))))
(define-public rust-jsonwebtoken-7
(package
(name "rust-jsonwebtoken")
(version "7.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "jsonwebtoken" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0ciz205wcjcn7n6i871zz5xlbzk863b0ybgiqi7li9ipwhawraxg"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-base64" ,rust-base64-0.12)
("rust-pem" ,rust-pem-0.8)
("rust-ring" ,rust-ring-0.16)
("rust-serde" ,rust-serde-1)
("rust-serde-json" ,rust-serde-json-1)
("rust-simple-asn1" ,rust-simple-asn1-0.4))
#:cargo-development-inputs (("rust-chrono" ,rust-chrono-0.4))))
(home-page "https://github.com/Keats/jsonwebtoken")
(synopsis "Create and decode JWTs in a strongly typed way")
(description "Create and decode JWTs in a strongly typed way.")
(license license:expat)))
(define-public rust-multipart-0.18
(package
(name "rust-multipart")