mini_alloc/
lib.rs

1// Copyright 2023-2024, Offchain Labs, Inc.
2// For licensing, see https://github.com/OffchainLabs/stylus-sdk-rs/blob/main/licenses/COPYRIGHT.md
3
4#![no_std]
5
6use cfg_if::cfg_if;
7
8cfg_if! {
9    if #[cfg(target_arch = "wasm32")] {
10        mod imp;
11        pub use imp::MiniAlloc;
12    }
13}