basic-jwt/Cargo.toml

21 lines
662 B
TOML
Raw Normal View History

2024-04-20 11:04:45 +00:00
[package]
name = "basic-jwt"
2024-04-20 11:48:00 +00:00
version = "0.2.0"
2024-04-20 11:04:45 +00:00
edition = "2021"
2024-04-20 11:19:52 +00: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 11:04:45 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-04-20 11:13:20 +00:00
rand = "0.8.5"
2024-04-28 00:03:30 +00:00
serde = { version = "1.0.199", features = ["derive"] }
2024-04-20 11:13:20 +00:00
anyhow = "1.0.82"
2024-04-20 11:19:52 +00:00
elliptic-curve = { version = "0.13.8", features = ["pkcs8", "pem"] }
2024-04-20 11:13:20 +00:00
p384 = { version = "0.13.0", features = ["ecdsa", "pkcs8", "pem"] }
2024-04-20 11:48:00 +00:00
jsonwebtoken = "9.3.0"