diff --git a/src/edit/editor.rs b/src/edit/editor.rs index 1797875..1fa58db 100644 --- a/src/edit/editor.rs +++ b/src/edit/editor.rs @@ -1,7 +1,10 @@ // SPDX-License-Identifier: MIT OR Apache-2.0 #[cfg(not(feature = "std"))] -use alloc::string::{String, ToString}; +use alloc::{ + string::{String, ToString}, + vec::Vec, +}; use core::{cmp, iter::once}; use unicode_segmentation::UnicodeSegmentation;