Skip to content

Commit

Permalink
fix: re-add unintentionally removed re-exported liballoc macros (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwalker authored Mar 18, 2024
1 parent ce9b45f commit 4c8a980
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ pub use winter_utils::{

pub mod collections {
pub use super::kv_map::*;
pub use winter_utils::collections::*;

Check warning on line 19 in src/utils/mod.rs

View workflow job for this annotation

GitHub Actions / build nightly no-std for wasm32-unknown-unknown

use of deprecated module `winter_utils::collections`: You should prefer to import from `alloc::collections::*`

Check warning on line 19 in src/utils/mod.rs

View workflow job for this annotation

GitHub Actions / build stable no-std for wasm32-unknown-unknown

use of deprecated module `winter_utils::collections`: You should prefer to import from `alloc::collections::*`

Check failure on line 19 in src/utils/mod.rs

View workflow job for this annotation

GitHub Actions / clippy nightly on ubuntu

use of deprecated module `winter_utils::collections`: You should prefer to import from `alloc::collections::*`

Check warning on line 19 in src/utils/mod.rs

View workflow job for this annotation

GitHub Actions / test stable on ubuntu with --no-default-features

use of deprecated module `winter_utils::collections`: You should prefer to import from `alloc::collections::*`

Check warning on line 19 in src/utils/mod.rs

View workflow job for this annotation

GitHub Actions / test nightly on ubuntu with --features default,serde

use of deprecated module `winter_utils::collections`: You should prefer to import from `alloc::collections::*`

Check warning on line 19 in src/utils/mod.rs

View workflow job for this annotation

GitHub Actions / test stable on ubuntu with --features default,serde

use of deprecated module `winter_utils::collections`: You should prefer to import from `alloc::collections::*`

Check warning on line 19 in src/utils/mod.rs

View workflow job for this annotation

GitHub Actions / test nightly on ubuntu with --no-default-features

use of deprecated module `winter_utils::collections`: You should prefer to import from `alloc::collections::*`
}

// UTILITY FUNCTIONS
Expand Down

0 comments on commit 4c8a980

Please sign in to comment.