cargo updates

This commit is contained in:
Robin Appelman 2026-08-02 00:28:56 +02:00
commit 374b309f8c
6 changed files with 1054 additions and 1200 deletions

View file

@ -11,9 +11,9 @@ opentelemetry = { version = "0.32.0" }
opentelemetry_sdk = { version = "0.32.0", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.32.0", features = ["tls", "grpc-tonic"] }
serde = { version = "1.0.203", features = ["derive"] }
sqlx = { version = "0.8.3", features = ["postgres", "time", "runtime-tokio-rustls"] }
sea-query = { version = "0.32.3", features = ["backend-postgres", "with-time", "derive"] }
sea-query-binder = { version = "0.7.0", features = ["with-time", "sqlx-postgres"] }
sqlx = { version = "0.9.0", features = ["postgres", "time", "runtime-tokio", "tls-rustls-aws-lc-rs"] }
sea-query = { version = "1.0.1", features = ["backend-postgres", "with-time", "derive"] }
sea-query-sqlx = {version = "0.9.0", features = ["with-time", "sqlx-postgres"]}
thiserror = "2.0.12"
tokio = { version = "1.38.0", features = ["full"] }
config = { version = "0.15.11", features = ["toml"] }
@ -22,18 +22,20 @@ maud = { version = "0.27.0", features = ["axum"] }
axum = { version = "0.8.1", features = ["macros"] }
hyper = "1.3.1"
hyper-util = { version = "0.1.5", features = ["tokio", "server"] }
axum-extra = { version = "0.10.0", features = ["typed-header", "cookie"] }
tower-http = { version = "0.6.2", features = ["trace", "fs"] }
steamid-ng = "1.0.0"
itertools = "0.14.0"
axum-extra = { version = "0.12.6", features = ["typed-header", "cookie"] }
tower-http = { version = "0.7.0", features = ["trace", "fs"] }
steamid-ng = "3.0.0"
itertools = "0.15.0"
steam-openid = "0.2.0"
async-session = "3.0.0"
quick-xml = { version = "0.37.2", features = ["serialize"] }
reqwest = "0.12.4"
rand = "0.9.0"
quick-xml = { version = "0.41.0", features = ["serialize"] }
reqwest = "0.13.4"
rand = "0.10.2"
demostf-build = { path = "./build", version = "*" }
include_dir = "0.7.3"
serde-env = "0.2.0"
serde-env = "0.3.0"
tonic = { version = "0.14.6", features = ["tls-aws-lc", "tls-webpki-roots"] }
secretfile = "0.1.0"
urlencoding = "2.1.3"
# https://github.com/transact-rs/sqlx/pull/4303 should be safe to remove after the next sqlx release
whoami = { version = "2.0.2", features = ["std"], default-features = false }