Deduplicate cargo a bit

This commit is contained in:
Igor Katson 2024-08-28 11:27:44 +01:00
parent b612c379e5
commit 3ef9dc6655
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
4 changed files with 5 additions and 5 deletions

View file

@ -48,7 +48,7 @@ tokio = { version = "1", features = [
"fs",
"io-util",
] }
axum = { version = "0.7.4", optional = true }
axum = { version = "0.7", optional = true }
tower-http = { version = "0.5", features = ["cors", "trace"], optional = true }
tokio-stream = "0.1"
serde = { version = "1", features = ["derive"] }
@ -81,7 +81,7 @@ url = "2"
hex = "0.4"
backoff = "0.4.0"
dashmap = "5.5.3"
base64 = "0.21.5"
base64 = "0.22"
serde_with = "3.4.0"
tokio-util = { version = "0.7.10", features = ["io"] }
bytes = "1.5.0"

View file

@ -15,7 +15,7 @@ sha1-ring = ["librqbit-sha1-wrapper/sha1-ring"]
[dependencies]
anyhow = "1.0.86"
axum = { version = "0.7.5", features = ["tokio"] }
axum = { version = "0.7", features = ["tokio"] }
tokio = { version = "1.39.3", features = ["full"] }
tracing = "0.1.40"
bstr = "1.10.0"