Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: re-add unintentionally removed re-exported liballoc macros #292

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
// RE-EXPORTS
// ================================================================================================
pub use winter_utils::{
boxed, string, uninit_vector, Box, ByteReader, ByteWriter, Deserializable,

Check warning on line 13 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::boxed`: You should prefer to import from `alloc::boxed::*`

Check warning on line 13 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::string`: You should prefer to import from `alloc::string::*`

Check warning on line 13 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::boxed`: You should prefer to import from `alloc::boxed::*`

Check warning on line 13 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::string`: You should prefer to import from `alloc::string::*`

Check warning on line 13 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::boxed`: You should prefer to import from `alloc::boxed::*`

Check warning on line 13 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::string`: You should prefer to import from `alloc::string::*`

Check warning on line 13 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::boxed`: You should prefer to import from `alloc::boxed::*`

Check warning on line 13 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::string`: You should prefer to import from `alloc::string::*`

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

View workflow job for this annotation

GitHub Actions / clippy nightly on ubuntu

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

Check warning on line 13 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::string`: You should prefer to import from `alloc::string::*`

Check warning on line 13 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::string`: You should prefer to import from `alloc::string::*`
DeserializationError, Serializable, SliceReader,
};

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 stable 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 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 / 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 --no-default-features

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 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::*`
}

// UTILITY FUNCTIONS
Expand Down
Loading