Skip to content

Commit f024efc

Browse files
Fixed the std corner case
1 parent 9cd94c5 commit f024efc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/ast/dml.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@
1616
// under the License.
1717

1818
#[cfg(not(feature = "std"))]
19-
use alloc::{boxed::Box, format, string::ToString, vec::Vec};
19+
use alloc::{
20+
boxed::Box,
21+
format,
22+
string::{String, ToString},
23+
vec::Vec,
24+
};
2025

2126
use core::fmt::{self, Display};
2227
#[cfg(feature = "serde")]

0 commit comments

Comments
 (0)