mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 23:30:29 +01:00
6c13b22cd4
Co-authored-by: Jonas Platte <jplatte@users.noreply.github.com>
16 lines
363 B
TOML
16 lines
363 B
TOML
[package]
|
|
name = "example-jwt"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
axum = { path = "../..", features = ["headers"] }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
headers = "0.3"
|
|
jsonwebtoken = "7"
|
|
once_cell = "1.8"
|