From 56dc2d982dc27382aa6d5fb4ff49d2d3f7ad680b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Tue, 23 May 2023 12:56:22 +0200 Subject: [PATCH] chore: Enable Ruma compat features Otherwise some events might get rejected. --- Cargo.toml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 35e899ea..1fdce84a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -92,7 +92,18 @@ features = [ # version = "0.8.2" git = "https://github.com/ruma/ruma.git" rev = "54a4223caa1c1052464ecdba0f1e08f126e07bcd" -features = ["unstable-unspecified", "client-api-c", "unstable-sanitize"] +features = [ + "unstable-unspecified", + "client-api-c", + "unstable-sanitize", + "compat-key-id", + "compat-user-id", + "compat-empty-string-null", + "compat-null", + "compat-optional", + "compat-unset-avatar", + "compat-get-3pids", +] [dependencies.shumate] package = "libshumate"