From 44f6e7a0cf0b0408bdbaf6935ceefb9f315dcf34 Mon Sep 17 00:00:00 2001 From: Alexander Sieg Date: Wed, 8 Sep 2021 17:31:06 +0200 Subject: [PATCH] matrix_sdk: remove compile_error for qrcode feature --- matrix_sdk/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/matrix_sdk/src/lib.rs b/matrix_sdk/src/lib.rs index ac61d1c1..be0c099e 100644 --- a/matrix_sdk/src/lib.rs +++ b/matrix_sdk/src/lib.rs @@ -75,9 +75,6 @@ compile_error!("only one of 'native-tls' or 'rustls-tls' features can be enabled #[cfg(all(feature = "sso_login", target_arch = "wasm32"))] compile_error!("'sso_login' cannot be enabled on 'wasm32' arch"); -#[cfg(all(not(feature = "encryption"), feature = "qrcode"))] -compile_error!("'qrcode' cannot be enabled without 'encryption'"); - pub use bytes; #[cfg(feature = "encryption")] #[cfg_attr(feature = "docs", doc(cfg(encryption)))]