From 342361a9ebac07f0903701da23670a209139855f Mon Sep 17 00:00:00 2001 From: Andreas Bergmeier Date: Fri, 7 Aug 2026 10:22:57 +0200 Subject: [PATCH] Mark WebAuthnError as deprecated. This hopefully slowly gets more call-sites to switch from WebAuthnError to Error. --- libwebauthn/src/webauthn/error.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/libwebauthn/src/webauthn/error.rs b/libwebauthn/src/webauthn/error.rs index 31f57145..b541264d 100644 --- a/libwebauthn/src/webauthn/error.rs +++ b/libwebauthn/src/webauthn/error.rs @@ -16,6 +16,7 @@ pub enum Error { Platform(#[source] PlatformError), } +#[deprecated(note = "Use `Error` instead")] /// Former name of the ceremony [`Error`], retained to avoid call-site churn. pub use self::Error as WebAuthnError;