From 67474dbed0525e1c5697cd59661a5a99960d72b8 Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Tue, 22 Jun 2021 13:08:03 +0200 Subject: [PATCH] remove redundant no_std --- src/max_encoded_len.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/max_encoded_len.rs b/src/max_encoded_len.rs index aac7f6ef..6579af32 100644 --- a/src/max_encoded_len.rs +++ b/src/max_encoded_len.rs @@ -15,8 +15,6 @@ //! `trait MaxEncodedLen` bounds the maximum encoded length of items. -#![cfg_attr(not(feature = "std"), no_std)] - use crate::{Compact, Encode}; use impl_trait_for_tuples::impl_for_tuples; use core::{mem, marker::PhantomData};