basic-jwt/Cargo.toml

21 lines
662 B
TOML
Raw Normal View History

2024-04-20 13:04:45 +02:00
[package]
name = "basic-jwt"
2024-04-20 13:48:00 +02:00
version = "0.2.0"
2024-04-20 13:04:45 +02:00
edition = "2021"
2024-04-20 13:19:52 +02:00
authors = ["Pierre Hubert <pierre.git@communiquons.org>"]
description = "Basic JWT signing and verification library"
license = "MIT"
repository = "https://gitea.communiquons.org/pierre/basic-jwt"
keywords = ["jwt"]
readme = "README.md"
2024-04-20 13:04:45 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2025-01-28 00:22:27 +00:00
rand = "0.9.0"
2024-05-02 00:02:55 +00:00
serde = { version = "1.0.200", features = ["derive"] }
2024-04-20 13:13:20 +02:00
anyhow = "1.0.82"
2024-04-20 13:19:52 +02:00
elliptic-curve = { version = "0.13.8", features = ["pkcs8", "pem"] }
2024-04-20 13:13:20 +02:00
p384 = { version = "0.13.0", features = ["ecdsa", "pkcs8", "pem"] }
2024-04-20 13:48:00 +02:00
jsonwebtoken = "9.3.0"