Fix no_std compilation

This commit is contained in:
Jeremy Soller 2023-11-15 09:09:37 -07:00
parent 38bed64ef1
commit 6536231dfc
No known key found for this signature in database
GPG key ID: DCFCA852D3906975

View file

@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
#[cfg(not(feature = "std"))]
use alloc::string::String;
use alloc::string::{String, ToString};
use core::{
cmp::{self, Ordering},
iter::once,