From b1864887aa02c9b439fd347143e948104d839547 Mon Sep 17 00:00:00 2001 From: Devin R Date: Mon, 1 Jun 2020 06:45:38 -0400 Subject: [PATCH] matrix-sdk: enable messages feature by default --- matrix_sdk/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix_sdk/Cargo.toml b/matrix_sdk/Cargo.toml index 15d8e788..b6fdfddd 100644 --- a/matrix_sdk/Cargo.toml +++ b/matrix_sdk/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/matrix-org/matrix-rust-sdk" version = "0.1.0" [features] -default = ["encryption", "sqlite-cryptostore"] +default = ["encryption", "sqlite-cryptostore", "messages"] messages = ["matrix-sdk-base/messages"] encryption = ["matrix-sdk-base/encryption"] sqlite-cryptostore = ["matrix-sdk-base/sqlite-cryptostore"]