mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-23 07:39:25 +01:00
0774e59704
Signed-off-by: Hayashi Mikihiro <34ttrweoewiwe28@gmail.com>
15 lines
425 B
TOML
15 lines
425 B
TOML
[package]
|
|
name = "example-jwt"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
axum = { path = "../../axum" }
|
|
axum-extra = { path = "../../axum-extra", features = ["typed-header"] }
|
|
jsonwebtoken = "9.3"
|
|
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"] }
|