From ab5f76f49fa4a6c6638624c52c939f9b224806a7 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 8 Aug 2025 22:01:23 +0200 Subject: [PATCH] Put ruma dependency in its own TOML table --- Cargo.toml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 74a24679..fe7743de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -121,7 +121,6 @@ regex = "1.11.1" reqwest = { version = "0.12.22", 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://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", "ring-compat", "unstable-unspecified" ] } rusqlite = { version = "0.34.0", optional = true, features = ["bundled"] } rustls = { version = "0.23.31", default-features = false, features = ["ring", "log", "logging", "std", "tls12"] } sd-notify = { version = "0.4.5", optional = true } @@ -144,6 +143,23 @@ tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] } trust-dns-resolver = "0.23.2" xdg = "2.5.2" +[dependencies.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", + "ring-compat", + "unstable-unspecified", +] + [target.'cfg(unix)'.dependencies] nix = { version = "0.29", features = ["resource", "time"] }