mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-16 15:21:24 +01:00
update rust deps that don't require code changes
I also had to pin ruma because otherwise cargo complained that features were removed from ruma so it couldn't resolve the dependency by itself.
This commit is contained in:
parent
a901d62575
commit
bb80f1cf2e
2 changed files with 643 additions and 482 deletions
56
Cargo.toml
56
Cargo.toml
|
|
@ -89,22 +89,22 @@ workspace = true
|
|||
# Keep sorted
|
||||
[dependencies]
|
||||
argon2 = "0.5.3"
|
||||
async-trait = "0.1.83"
|
||||
async-trait = "0.1.88"
|
||||
axum = { version = "0.7.9", default-features = false, features = ["form", "http1", "http2", "json", "matched-path", "tokio", "tracing"] }
|
||||
axum-extra = { version = "0.9.6", features = ["typed-header"] }
|
||||
axum-server = { version = "0.7.1", features = ["tls-rustls-no-provider"] }
|
||||
axum-extra = { version = "0.9.5", features = ["typed-header"] }
|
||||
axum-server = { version = "0.7.2", features = ["tls-rustls-no-provider"] }
|
||||
base64 = "0.22.1"
|
||||
bytes = "1.9.0"
|
||||
clap = { version = "4.5.21", default-features = false, features = ["std", "derive", "help", "usage", "error-context", "string", "wrap_help"] }
|
||||
bytes = "1.10.1"
|
||||
clap = { version = "4.5.34", default-features = false, features = ["std", "derive", "help", "usage", "error-context", "string", "wrap_help"] }
|
||||
futures-util = { version = "0.3.31", default-features = false }
|
||||
hmac = "0.12.1"
|
||||
html-escape = "0.2.13"
|
||||
http = "1.1.0"
|
||||
http-body-util = "0.1.2"
|
||||
hyper = "1.5.1"
|
||||
http = "1.3.1"
|
||||
http-body-util = "0.1.3"
|
||||
hyper = "1.6.0"
|
||||
hyper-util = { version = "0.1.10", features = ["client", "client-legacy", "service"] }
|
||||
image = { version = "0.25.5", default-features = false, features = ["jpeg", "png", "gif"] }
|
||||
jsonwebtoken = "9.3.0"
|
||||
image = { version = "0.25.6", default-features = false, features = ["jpeg", "png", "gif"] }
|
||||
jsonwebtoken = "9.3.1"
|
||||
lru-cache = "0.1.2"
|
||||
num_cpus = "1.16.0"
|
||||
opentelemetry = "0.24.0"
|
||||
|
|
@ -113,31 +113,31 @@ opentelemetry-otlp = "0.17.0"
|
|||
opentelemetry-prometheus = "0.17.0"
|
||||
opentelemetry_sdk = { version = "0.24.1", features = ["rt-tokio"] }
|
||||
parking_lot = { version = "0.12.3", optional = true }
|
||||
phf = { version = "0.11.2", features = ["macros"] }
|
||||
pin-project-lite = "0.2.15"
|
||||
phf = { version = "0.11.3", features = ["macros"] }
|
||||
pin-project-lite = "0.2.16"
|
||||
prometheus = "0.13.4"
|
||||
proxy-header = { version = "0.1.2", features = ["tokio"] }
|
||||
rand = "0.8.5"
|
||||
regex = "1.11.1"
|
||||
reqwest = { version = "0.12.9", default-features = false, features = ["http2", "rustls-tls-native-roots", "socks"] }
|
||||
ring = "0.17.8"
|
||||
reqwest = { version = "0.12.15", default-features = false, features = ["http2", "rustls-tls-native-roots", "socks"] }
|
||||
ring = "0.17.14"
|
||||
rocksdb = { package = "rust-rocksdb", version = "0.36.0", features = ["lz4", "multi-threaded-cf", "zstd"], optional = true }
|
||||
ruma = { git = "https://github.com/ruma/ruma", branch = "main", features = ["compat", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "server-util", "state-res", "unstable-msc2448", "unstable-msc3575", "unstable-exhaustive-types", "ring-compat", "unstable-unspecified" ] }
|
||||
rusqlite = { version = "0.32.1", optional = true, features = ["bundled"] }
|
||||
rustls = { version = "0.23.19", default-features = false, features = ["ring", "log", "logging", "std", "tls12"] }
|
||||
sd-notify = { version = "0.4.3", optional = true }
|
||||
serde = { version = "1.0.215", features = ["rc"] }
|
||||
serde_html_form = "0.2.6"
|
||||
serde_json = { version = "1.0.133", features = ["raw_value"] }
|
||||
ruma = { git = "https://github.com/ruma/ruma", rev = "bd33b9a38fbf4aea0413f947469be916f120032e", features = ["compat", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "server-util", "state-res", "unstable-msc2448", "unstable-msc3575", "unstable-exhaustive-types", "ring-compat", "unstable-unspecified" ] }
|
||||
rusqlite = { version = "0.34.0", optional = true, features = ["bundled"] }
|
||||
rustls = { version = "0.23.25", default-features = false, features = ["ring", "log", "logging", "std", "tls12"] }
|
||||
sd-notify = { version = "0.4.5", optional = true }
|
||||
serde = { version = "1.0.219", features = ["rc"] }
|
||||
serde_html_form = "0.2.7"
|
||||
serde_json = { version = "1.0.140", features = ["raw_value"] }
|
||||
serde_yaml = "0.9.34"
|
||||
sha-1 = "0.10.1"
|
||||
strum = { version = "0.26.3", features = ["derive"] }
|
||||
thiserror = "2.0.3"
|
||||
strum = { version = "0.27.1", features = ["derive"] }
|
||||
thiserror = "2.0.12"
|
||||
thread_local = "1.1.8"
|
||||
tikv-jemallocator = { version = "0.6.0", features = ["unprefixed_malloc_on_supported_platforms"], optional = true }
|
||||
tokio = { version = "1.41.1", features = ["fs", "macros", "signal", "sync"] }
|
||||
toml = "0.8.19"
|
||||
tower = { version = "0.5.1", features = ["util"] }
|
||||
tokio = { version = "1.44.1", features = ["fs", "macros", "signal", "sync"] }
|
||||
toml = "0.8.20"
|
||||
tower = { version = "0.5.2", features = ["util"] }
|
||||
tower-http = { version = "0.6.2", features = ["add-extension", "cors", "sensitive-headers", "trace", "util"] }
|
||||
tracing = { version = "0.1.41", features = [] }
|
||||
tracing-flame = "0.2.0"
|
||||
|
|
@ -151,8 +151,8 @@ nix = { version = "0.29", features = ["resource", "time"] }
|
|||
|
||||
[dev-dependencies]
|
||||
assert_cmd = "2.0.16"
|
||||
insta = { version = "1.41.1", features = ["filters", "json", "redactions"] }
|
||||
predicates = "3.1.2"
|
||||
insta = { version = "1.42.2", features = ["filters", "json", "redactions"] }
|
||||
predicates = "3.1.3"
|
||||
|
||||
[profile.dev.package.insta]
|
||||
opt-level = 3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue