Correct imports for no-std

This commit is contained in:
Luke Parker
2024-07-04 01:01:31 -04:00
parent 08169e29bb
commit 3de89c717d
17 changed files with 29 additions and 8 deletions

View File

@@ -4,9 +4,9 @@
#![cfg_attr(not(feature = "std"), no_std)]
use core::fmt::Debug;
#[cfg(not(feature = "std"))]
use alloc::boxed::Box;
use std_shims::{
alloc::{boxed::Box, format},
vec,
vec::Vec,
io,
string::{String, ToString},