Update deps
Some checks failed
Build docker image / Build-Docker-Image (push) Has been cancelled

This commit is contained in:
2024-09-12 17:28:37 +02:00
parent 4412365b6a
commit d14104fbe2
2 changed files with 529 additions and 353 deletions

868
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -8,22 +8,22 @@ edition = "2021"
[dependencies] [dependencies]
once_cell = "1.19.0" once_cell = "1.19.0"
tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros"] } tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros"] }
tokio-util = { version = "0.7.10", features = ["compat"] } tokio-util = { version = "0.7.12", features = ["compat"] }
tokio-stream = "0.1.15" tokio-stream = "0.1.16"
futures = "0.3.30" futures = "0.3.30"
axum = "0.7.5" axum = "0.7.5"
axum-prometheus = "0.7.0" axum-prometheus = "0.7.0"
tower = "0.4.13" tower = "0.5.1"
tower-http = { version = "0.5.2", features = ["trace"] } tower-http = { version = "0.5.2", features = ["trace"] }
tracing = "0.1.40" tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"]} tracing-subscriber = { version = "0.3.18", features = ["env-filter"]}
sentry-tracing = "0.34.0" sentry-tracing = "0.34.0"
reqwest = { version = "0.12.4", features = ["json", "stream"] } reqwest = { version = "0.12.7", features = ["json", "stream"] }
serde = { version = "1.0.198", features = ["derive"] } serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.116" serde_json = "1.0.116"
@@ -37,7 +37,7 @@ ctrlc = { version = "3.4.4", features = ["termination"] }
strum = "0.26.2" strum = "0.26.2"
strum_macros = "0.26.2" strum_macros = "0.26.2"
base64 = "0.22.0" base64 = "0.22.1"
textwrap = "0.16.1" textwrap = "0.16.1"
regex = "1.10.4" regex = "1.10.4"
chrono = "0.4.38" chrono = "0.4.38"
@@ -46,6 +46,6 @@ dateparser = "0.2.1"
smallvec = { version = "1.13.2", features = ["serde"] } smallvec = { version = "1.13.2", features = ["serde"] }
smartstring = { version = "1.0.1", features = ["serde"] } smartstring = { version = "1.0.1", features = ["serde"] }
moka = { version = "0.12.7", features = ["future"] } moka = { version = "0.12.8", features = ["future"] }
sentry = { version = "0.34.0", features = ["debug-images"] } sentry = { version = "0.34.0", features = ["debug-images"] }