dependency fixes for alpine

This commit is contained in:
2024-08-31 15:17:31 +02:00
parent 67c5bb6837
commit 9323e64fa2
2 changed files with 10 additions and 184 deletions

View File

@@ -16,7 +16,7 @@ serde_json = "1.0"
tera = { version = "1.19", features = [] }
tokio = { version = "1.37", features = ["full"] }
tokio-stream = { version = "0.1", features = ["full"] }
time = { version = "0.3", features = ["serde", "formatting"] }
time = { version = "0.3.36", features = ["serde", "formatting"] }
tower-http = { version = "0.5.2", features = ["fs"] }
once_cell = "1.19"
base64 = "0.22"
@@ -32,4 +32,8 @@ mlua = { version = "0.9", features = [
"async",
"send",
] }
reqwest = { version = "0.10", features = ["json", "rustls-tls", "blocking"] }
reqwest = { version = "0.10", default-features = false, features = [
"json",
"rustls-tls",
"blocking",
] }