Skip to content

Commit

Permalink
fix(utils): restore re-exports but using alloc
Browse files Browse the repository at this point in the history
  • Loading branch information
mFragaBA committed Mar 18, 2024
1 parent ce9b45f commit 7c64a17
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/utils/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//! Utilities used in this crate which can also be generally useful downstream.
pub use alloc::{format, vec};
use alloc::string::String;
use core::fmt::{self, Display, Write};

Expand All @@ -15,6 +16,7 @@ pub use winter_utils::{
};

pub mod collections {
pub use alloc::{collections::{btree_map, BTreeMap, BTreeSet}, vec::{self, Vec}};
pub use super::kv_map::*;
}

Expand Down

0 comments on commit 7c64a17

Please sign in to comment.