Skip to content

Commit

Permalink
fix: #![no_std] compile
Browse files Browse the repository at this point in the history
  • Loading branch information
decahedron1 committed Dec 16, 2024
1 parent b69aead commit 440d0d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/group.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use alloc::vec::Vec;
use core::{
fmt::Write,
ops::{Add, AddAssign}
Expand Down
2 changes: 1 addition & 1 deletion src/say_as.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use alloc::{borrow::Cow, boxed::Box};
use alloc::{borrow::Cow, boxed::Box, string::ToString};
use core::fmt::Write;

use crate::{Flavor, Serialize, SerializeOptions, XmlWriter};
Expand Down

0 comments on commit 440d0d5

Please sign in to comment.