From ca29ba98d99116f9dd0495b4f5e52622fa05da4e Mon Sep 17 00:00:00 2001 From: larry <26318510+larry0x@users.noreply.github.com> Date: Thu, 29 Aug 2024 01:15:05 +0100 Subject: [PATCH] fix a clippy warning --- rust/no-std-check/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/no-std-check/src/lib.rs b/rust/no-std-check/src/lib.rs index 98a8387a..b36f8e6f 100644 --- a/rust/no-std-check/src/lib.rs +++ b/rust/no-std-check/src/lib.rs @@ -6,7 +6,7 @@ extern crate alloc; // Import the crates that we want to check if they are fully no-std compliance -use ics23; +use ics23::*; use core::panic::PanicInfo;