From 3813449b299aaa0f799047e0fe9cb84d743b89ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Thu, 10 Feb 2022 22:26:46 +0100 Subject: [PATCH] common: Move SignedKey::new_fallback out of unstable-pre-spec --- crates/ruma-common/src/encryption.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/ruma-common/src/encryption.rs b/crates/ruma-common/src/encryption.rs index 4b8a85e7..c7786fd5 100644 --- a/crates/ruma-common/src/encryption.rs +++ b/crates/ruma-common/src/encryption.rs @@ -97,7 +97,6 @@ impl SignedKey { } /// Creates a new fallback `SignedKey` with the given key and signatures. - #[cfg(feature = "unstable-pre-spec")] pub fn new_fallback(key: Base64, signatures: SignedKeySignatures) -> Self { Self { key, signatures, fallback: true } }