basic-jwt/Cargo.toml
Pierre Hubert 15e80bd7e0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
Update Rust crate serde to 1.0.199
2024-04-28 00:03:30 +00:00

21 lines
662 B
TOML

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