update hyperium crates to 1.0, axum to 0.7

This commit is contained in:
Daniel Gallups 2023-12-01 12:37:13 -05:00
parent 8cec2283e0
commit 41f38d8db5
6 changed files with 204 additions and 69 deletions

View file

@ -7,8 +7,8 @@ edition = "2021"
[dependencies]
anyhow = "1.0.75"
axum = { version = "0.6.20", features = ["headers"] }
headers = "0.3"
axum = { version = "0.7.1" }
headers = "0.4"
josekit = "0.8.3"
jsonwebtoken = "9.1.0"
once_cell = "1.18.0"
@ -17,7 +17,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0.47"
tokio = { version = "1.32.0", features = ["full"] }
tower-http = { version = "0.4.3", features = ["trace"] }
tower-http = { version = "0.5.0", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
jwt-authorizer = { path = "../jwt-authorizer" }