Skip to content

Commit

Permalink
fix: re-add unintentionally removed re-exported liballoc macros (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwalker authored Mar 18, 2024
1 parent 3d961ee commit fe9de89
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion utils/core/src/collections.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
//! Feature-based re-export of common collection components.
pub use alloc::collections::{btree_map, btree_set, BTreeMap, BTreeSet};
pub use alloc::vec::{self as vec, Vec};
pub use alloc::{vec, vec::Vec};
5 changes: 4 additions & 1 deletion utils/core/src/string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@

//! Feature-based re-export of common string components.
pub use alloc::string::{String, ToString};
pub use alloc::{
format,
string::{String, ToString},
};

0 comments on commit fe9de89

Please sign in to comment.