From ec7b4f043a454b0a4f6e7000ced3ff5514eeccbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Sun, 15 Dec 2024 12:22:53 +0100 Subject: [PATCH] chore(sdk): Remove image-rayon cargo feature check from build.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The cargo feature was removed, but the build script was forgotten. Signed-off-by: Kévin Commaille --- crates/matrix-sdk/build.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/matrix-sdk/build.rs b/crates/matrix-sdk/build.rs index 1a25f041e4e..b95a1276cb1 100644 --- a/crates/matrix-sdk/build.rs +++ b/crates/matrix-sdk/build.rs @@ -39,9 +39,5 @@ fn main() { !env_is_set("CARGO_FEATURE_SSO_LOGIN"), "feature 'sso-login' is not available on target arch 'wasm32'", ); - ensure( - !env_is_set("CARGO_FEATURE_IMAGE_RAYON"), - "feature 'image-rayon' is not available on target arch 'wasm32'", - ); } }