bump cargo dependencies

There are two new default features:

'system-proxy' for reqwest, which we are not enabling because it only
does anything on windows and mac, which we don't support.

'prefer-post-quantum' for rustls, which we are not enabling because it
only does anything for aws-lc-rs, which we don't use.
This commit is contained in:
Olivia Lee 2025-07-20 13:00:11 -07:00 committed by Charles Hall
parent 2648991092
commit 98222b38c2
2 changed files with 386 additions and 438 deletions

794
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -91,11 +91,11 @@ workspace = true
argon2 = "0.5.3" argon2 = "0.5.3"
async-trait = "0.1.88" async-trait = "0.1.88"
axum = { version = "0.7.9", default-features = false, features = ["form", "http1", "http2", "json", "matched-path", "tokio", "tracing"] } axum = { version = "0.7.9", default-features = false, features = ["form", "http1", "http2", "json", "matched-path", "tokio", "tracing"] }
axum-extra = { version = "0.9.5", features = ["typed-header"] } axum-extra = { version = "0.9.6", features = ["typed-header"] }
axum-server = { git = "https://gitlab.computer.surgery/matrix/thirdparty/axum-server.git", rev = "v0.7.2+grapevine-1", version = "0.7.2", features = ["tls-rustls-no-provider"] } axum-server = { git = "https://gitlab.computer.surgery/matrix/thirdparty/axum-server.git", rev = "v0.7.2+grapevine-1", version = "0.7.2", features = ["tls-rustls-no-provider"] }
base64 = "0.22.1" base64 = "0.22.1"
bytes = "1.10.1" bytes = "1.10.1"
clap = { version = "4.5.34", default-features = false, features = ["std", "derive", "help", "usage", "error-context", "string", "wrap_help"] } clap = { version = "4.5.42", default-features = false, features = ["std", "derive", "help", "usage", "error-context", "string", "wrap_help"] }
futures-util = { version = "0.3.31", default-features = false } futures-util = { version = "0.3.31", default-features = false }
hmac = "0.12.1" hmac = "0.12.1"
html-escape = "0.2.13" html-escape = "0.2.13"
@ -105,38 +105,38 @@ hyper = "1.6.0"
image = { version = "0.25.6", default-features = false, features = ["jpeg", "png", "gif"] } image = { version = "0.25.6", default-features = false, features = ["jpeg", "png", "gif"] }
jsonwebtoken = "9.3.1" jsonwebtoken = "9.3.1"
lru-cache = "0.1.2" lru-cache = "0.1.2"
num_cpus = "1.16.0" num_cpus = "1.17.0"
opentelemetry = "0.24.0" opentelemetry = "0.24.0"
opentelemetry-jaeger-propagator = "0.3.0" opentelemetry-jaeger-propagator = "0.3.0"
opentelemetry-otlp = "0.17.0" opentelemetry-otlp = "0.17.0"
opentelemetry-prometheus = "0.17.0" opentelemetry-prometheus = "0.17.0"
opentelemetry_sdk = { version = "0.24.1", features = ["rt-tokio"] } opentelemetry_sdk = { version = "0.24.1", features = ["rt-tokio"] }
parking_lot = { version = "0.12.3", optional = true } parking_lot = { version = "0.12.4", optional = true }
phf = { version = "0.11.3", features = ["macros"] } phf = { version = "0.11.3", features = ["macros"] }
pin-project-lite = "0.2.16" pin-project-lite = "0.2.16"
prometheus = "0.13.4" prometheus = "0.13.4"
proxy-header = { version = "0.1.2", features = ["tokio"] } proxy-header = { version = "0.1.2", features = ["tokio"] }
rand = "0.8.5" rand = "0.8.5"
regex = "1.11.1" regex = "1.11.1"
reqwest = { version = "0.12.15", default-features = false, features = ["http2", "rustls-tls-native-roots", "socks"] } reqwest = { version = "0.12.22", default-features = false, features = ["http2", "rustls-tls-native-roots", "socks"] }
ring = "0.17.14" ring = "0.17.14"
rocksdb = { package = "rust-rocksdb", version = "0.36.0", features = ["lz4", "multi-threaded-cf", "zstd"], optional = true } rocksdb = { package = "rust-rocksdb", version = "0.36.0", features = ["lz4", "multi-threaded-cf", "zstd"], optional = true }
ruma = { git = "https://gitlab.computer.surgery/matrix/ruma.git", rev = "ruma-0.12.2+grapevine-1", features = ["compat", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "server-util", "state-res", "unstable-msc2448", "unstable-msc3575", "ring-compat", "unstable-unspecified" ] } ruma = { git = "https://gitlab.computer.surgery/matrix/ruma.git", rev = "ruma-0.12.2+grapevine-1", features = ["compat", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "server-util", "state-res", "unstable-msc2448", "unstable-msc3575", "ring-compat", "unstable-unspecified" ] }
rusqlite = { version = "0.34.0", optional = true, features = ["bundled"] } rusqlite = { version = "0.34.0", optional = true, features = ["bundled"] }
rustls = { version = "0.23.25", default-features = false, features = ["ring", "log", "logging", "std", "tls12"] } rustls = { version = "0.23.31", default-features = false, features = ["ring", "log", "logging", "std", "tls12"] }
sd-notify = { version = "0.4.5", optional = true } sd-notify = { version = "0.4.5", optional = true }
serde = { version = "1.0.219", features = ["rc"] } serde = { version = "1.0.219", features = ["rc"] }
serde_html_form = "0.2.7" serde_html_form = "0.2.7"
serde_json = { version = "1.0.140", features = ["raw_value"] } serde_json = { version = "1.0.141", features = ["raw_value"] }
serde_yaml = "0.9.34" serde_yaml = "0.9.34"
sha-1 = "0.10.1" sha-1 = "0.10.1"
strum = { version = "0.27.1", features = ["derive"] } strum = { version = "0.27.2", features = ["derive"] }
thiserror = "2.0.12" thiserror = "2.0.12"
thread_local = "1.1.8" thread_local = "1.1.9"
tokio = { version = "1.44.1", features = ["fs", "macros", "signal", "sync"] } tokio = { version = "1.47.0", features = ["fs", "macros", "signal", "sync"] }
toml = "0.8.20" toml = "0.8.23"
tower = { version = "0.5.2", features = ["util"] } tower = { version = "0.5.2", features = ["util"] }
tower-http = { version = "0.6.2", features = ["add-extension", "cors", "sensitive-headers", "trace", "util"] } tower-http = { version = "0.6.6", features = ["add-extension", "cors", "sensitive-headers", "trace", "util"] }
tracing = { version = "0.1.41", features = [] } tracing = { version = "0.1.41", features = [] }
tracing-flame = "0.2.0" tracing-flame = "0.2.0"
tracing-opentelemetry = "0.25.0" tracing-opentelemetry = "0.25.0"
@ -148,10 +148,10 @@ xdg = "2.5.2"
nix = { version = "0.29", features = ["resource", "time"] } nix = { version = "0.29", features = ["resource", "time"] }
[dev-dependencies] [dev-dependencies]
assert_cmd = "2.0.16" assert_cmd = "2.0.17"
insta = { version = "1.42.2", features = ["filters", "json", "redactions"] } insta = { version = "1.43.1", features = ["filters", "json", "redactions"] }
predicates = "3.1.3" predicates = "3.1.3"
tempfile = "3.19.1" tempfile = "3.20.0"
[profile.dev.package.insta] [profile.dev.package.insta]
opt-level = 3 opt-level = 3