From c7d0dfce03eebf7039d53161315c7224240e70a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrej=20Kol=C4=8Din?= Date: Thu, 18 Dec 2025 23:16:54 +0300 Subject: [PATCH] Gate `est` tests behind the `std` feature --- rmp/tests/func/est.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rmp/tests/func/est.rs b/rmp/tests/func/est.rs index 6f8f0e3f..f9421cb5 100644 --- a/rmp/tests/func/est.rs +++ b/rmp/tests/func/est.rs @@ -1,3 +1,5 @@ +#![cfg(feature = "std")] + use rmp::Marker; use rmp::decode::MessageLen; use rmp::decode::LenError;