Files
basic-jwt/Cargo.toml
Renovate Bot 7cebe0e68b
Some checks are pending
continuous-integration/drone/push Build is pending
continuous-integration/drone/pr Build is passing
Update Rust crate jsonwebtoken to 10.2.0
2025-11-07 00:07:23 +00:00

20 lines
691 B
TOML

[package]
name = "basic-jwt"
version = "0.4.0"
edition = "2024"
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]
serde = { version = "1.0.228", features = ["derive"] }
anyhow = "1.0.100"
elliptic-curve = { version = "0.13.8", features = ["pkcs8", "pem"] }
p384 = { version = "0.13.1", features = ["ecdsa", "pkcs8", "pem"] }
jsonwebtoken = { version = "10.2.0", features = ["rust_crypto"] }