mirror of
https://github.com/TECHNOFAB11/jwt-authorizer.git
synced 2025-12-11 23:50:07 +01:00
chore: dependencies update
- tower-http 0.3 -> 0.4 (as it was changed for axum 0.6.9) - tokio 1.0 -> 1.25 (same version as in axum 0.6.9) - other demo-server dependencies
This commit is contained in:
parent
1537739f19
commit
8b3dcd4b24
3 changed files with 59 additions and 28 deletions
|
|
@ -6,18 +6,18 @@ edition = "2021"
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.64"
|
||||
axum = { version = "0.6.4", features = ["headers"] }
|
||||
anyhow = "1.0.69"
|
||||
axum = { version = "0.6.9", features = ["headers"] }
|
||||
headers = "0.3"
|
||||
josekit = "0.8.1"
|
||||
josekit = "0.8.2"
|
||||
jsonwebtoken = "8.2.0"
|
||||
once_cell = "1.8"
|
||||
reqwest = { version = "0.11.14", features = ["json"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
thiserror = "1.0.34"
|
||||
tokio = { version = "1.0", features = ["full"] }
|
||||
tower-http = { version = "0.3.4", features = ["trace"] }
|
||||
thiserror = "1.0.38"
|
||||
tokio = { version = "1.25.0", features = ["full"] }
|
||||
tower-http = { version = "0.4.0", features = ["trace"] }
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
jwt-authorizer = { path = "../jwt-authorizer" }
|
||||
jwt-authorizer = { path = "../jwt-authorizer" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue