2021-09-10 17:51:20 +02:00
|
|
|
[package]
|
|
|
|
name = "example-jwt"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-03 12:38:48 +01:00
|
|
|
axum = { path = "../../axum", features = ["headers"] }
|
2021-09-10 17:51:20 +02:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
|
|
tracing = "0.1"
|
2022-03-06 12:37:00 +01:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2021-09-10 17:51:20 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
headers = "0.3"
|
2022-02-12 18:16:14 +01:00
|
|
|
jsonwebtoken = "8.0"
|
2021-09-10 17:51:20 +02:00
|
|
|
once_cell = "1.8"
|