From 612212fd82fc5b6a0bfc76bfb585eeb89131e7b8 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Tue, 1 Mar 2022 11:56:22 +0200 Subject: [PATCH] chore: loosen feature requirement on deser methods --- ethabi/src/param_type/mod.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ethabi/src/param_type/mod.rs b/ethabi/src/param_type/mod.rs index 5c9db2a47..3df68798d 100644 --- a/ethabi/src/param_type/mod.rs +++ b/ethabi/src/param_type/mod.rs @@ -8,15 +8,13 @@ //! Function and event param types. -#[cfg(feature = "full-serde")] +#[cfg(feature = "serde")] mod deserialize; mod param_type; pub use param_type::ParamType; -#[cfg(feature = "full-serde")] mod reader; -#[cfg(feature = "full-serde")] pub use reader::Reader; mod writer;