A shim crate for to import items of alloc crate ergonomically.
Add this to your Cargo.toml
:
toml
[dependencies]
alloc-shim = { version = "0.2.0" }
Set the features so that std
depends on alloc-shim/std
, and alloc
depends on alloc-shim/alloc
:
toml
[features]
std = ["alloc-shim/std"]
alloc = ["alloc-shim/alloc"]
Add this to your crate root (lib.rs
or main.rs
):
```rust
```
Now, you can use alloc-shim:
rust
use alloc::prelude::v1::*; // And more...
The current version of alloc-shim requires Rust 1.31 or later.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.