Update deps

This commit is contained in:
2026-03-21 10:54:22 -07:00
parent cdc2e40803
commit 368034a177
2 changed files with 552 additions and 462 deletions

View File

@@ -74,9 +74,9 @@ service-webpage = { path = "crates/service/service-webpage" }
#
# MARK: Server
#
axum = { version = "0.8.6", features = ["macros", "multipart"] }
tower-http = { version = "0.6.6", features = ["trace", "compression-full"] }
tower = { version = "0.5.2" }
axum = { version = "0.8.8", features = ["macros", "multipart"] }
tower-http = { version = "0.6.8", features = ["trace", "compression-full"] }
tower = { version = "0.5.3" }
serde_urlencoded = { version = "0.7.1" }
utoipa = "5.4.0"
utoipa-swagger-ui = { version = "9.0.2", features = [
@@ -88,7 +88,7 @@ maud = { version = "0.27.0", features = ["axum"] }
grass = { version = "0.13.4", features = ["macro"] }
markdown-it = "0.6.1"
emojis = "0.8.0"
reqwest = { version = "0.12.24", default-features = false, features = [
reqwest = { version = "0.12.28", default-features = false, features = [
"http2",
"rustls-tls",
"rustls-tls-webpki-roots", # Need to recompile to update
@@ -109,19 +109,19 @@ servable = { version = "0.0.3", features = ["image", "htmx-2.0.8"] }
#
# MARK: Async & Parallelism
#
tokio = { version = "1.48.0", features = ["full"] }
tokio = { version = "1.50.0", features = ["full"] }
#
# MARK: CLI & logging
#
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "json"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "json"] }
tracing-loki = { version = "0.2.6", features = [
"rustls",
"compat-0-2-1",
], default-features = false }
clap = { version = "4.5.51", features = ["derive"] }
anstyle = { version = "1.0.13" }
clap = { version = "4.6.0", features = ["derive"] }
anstyle = { version = "1.0.14" }
envy = "0.4.2"
dotenvy = "0.15.7"
@@ -129,8 +129,8 @@ dotenvy = "0.15.7"
# MARK: Serialization & formats
#
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
toml = "0.9.8"
serde_json = "1.0.149"
toml = "0.9.12"
serde_yaml = "0.9"
base64 = "0.22.1"
@@ -138,19 +138,19 @@ base64 = "0.22.1"
# MARK: Misc helpers
#
strum = { version = "0.27", features = ["derive"] }
thiserror = "2.0.12"
thiserror = "2.0.18"
itertools = "0.14.0"
anyhow = "1.0.97"
url = { version = "2.5.7", features = ["serde"] }
anyhow = "1.0.102"
url = { version = "2.5.8", features = ["serde"] }
num = "0.4.3"
chrono = "0.4.42"
lru = "0.16.2"
chrono = "0.4.44"
lru = "0.16.3"
parking_lot = "0.12.5"
lazy_static = "1.5.0"
image = "0.25.8"
image = "0.25.10"
scraper = "0.24.0"
futures = "0.3.31"
tempfile = "3.23.0"
futures = "0.3.32"
tempfile = "3.27.0"
# md_* test utilities
prettydiff = "0.9.0"
@@ -159,7 +159,7 @@ testing = "18.0.0"
#
# Macro utilities
#
proc-macro2 = "1.0.95"
syn = "2.0.101"
quote = "1.0.40"
proc-macro2 = "1.0.106"
syn = "2.0.117"
quote = "1.0.45"
paste = "1.0.15"