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:
cduvray 2023-03-02 08:02:18 +01:00
parent 1537739f19
commit 8b3dcd4b24
3 changed files with 59 additions and 28 deletions

View file

@ -21,8 +21,8 @@ reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0.38"
tokio = { version = "1.0", features = ["full"] }
tower-http = { version = "0.3", features = ["trace", "auth"] }
tokio = { version = "1.25", features = ["full"] }
tower-http = { version = "0.4", features = ["trace", "auth"] }
tower-layer = "0.3"
tower-service = "0.3"
tracing = "0.1"