A shim crate for to import items of alloc crate ergonomically.
Add this to your Cargo.toml
:
toml
[dependencies]
alloc-shim = "0.3.1"
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::*; // And more... ```
The current version of alloc-shim requires Rust 1.31 or later.
If not either std
or alloc
is specified, this crate does nothing.
std
std
crate.alloc
alloc
crate.std
crate is used if both std
and alloc
are specified at the same time (and it can compile in the minimum required version of alloc-shim).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.