Files
axum/examples/jwt/Cargo.toml
T

16 lines
464 B
TOML
Raw Normal View History

2021-09-10 12:51:20 -03:00
[package]
name = "example-jwt"
version = "0.1.0"
edition = "2021"
2021-09-10 12:51:20 -03:00
publish = false
[dependencies]
2023-04-11 16:09:48 +02:00
axum = { path = "../../axum" }
axum-extra = { path = "../../axum-extra", features = ["typed-header"] }
2025-10-08 02:19:27 +09:00
jsonwebtoken = { version = "10", features = ["aws_lc_rs"] }
2022-06-10 08:59:17 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }