Files
axum/examples/jwt/Cargo.toml
T

16 lines
425 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"] }
2024-09-27 16:50:52 +00:00
jsonwebtoken = "9.3"
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"] }