From e517a9079d1b4ef680ed0ada68ea97e62f1f17f7 Mon Sep 17 00:00:00 2001 From: thewh1teagle <61390950+thewh1teagle@users.noreply.github.com> Date: Fri, 28 Jun 2024 18:15:55 +0300 Subject: [PATCH] chore: correct serde feature use --- eyre/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eyre/src/error.rs b/eyre/src/error.rs index 72c6c0c..8a4c678 100644 --- a/eyre/src/error.rs +++ b/eyre/src/error.rs @@ -909,7 +909,7 @@ impl AsRef for Report { } } -#[cfg(feature = "serialize")] +#[cfg(feature = "serde")] mod serialize; #[cfg(feature = "pyo3")]