From acf46c6b54dc4aee58bc19beeced0dbc3c7a1f5c Mon Sep 17 00:00:00 2001 From: Luke Street Date: Fri, 14 Mar 2025 09:49:31 -0600 Subject: [PATCH] Fix no_std build --- objdiff-core/src/arch/mips.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objdiff-core/src/arch/mips.rs b/objdiff-core/src/arch/mips.rs index e36cc15..4932c13 100644 --- a/objdiff-core/src/arch/mips.rs +++ b/objdiff-core/src/arch/mips.rs @@ -1,6 +1,6 @@ use alloc::{ collections::{BTreeMap, BTreeSet}, - string::ToString, + string::{String, ToString}, vec::Vec, }; use core::ops::Range;