22 releases

0.2.18 Apr 12, 2024
0.2.16 Jul 14, 2023
0.2.4 Mar 7, 2023

#23 in Memory management

Download history 628598/week @ 2024-01-03 650137/week @ 2024-01-10 748854/week @ 2024-01-17 738495/week @ 2024-01-24 762612/week @ 2024-01-31 837327/week @ 2024-02-07 824911/week @ 2024-02-14 865155/week @ 2024-02-21 895839/week @ 2024-02-28 933807/week @ 2024-03-06 959684/week @ 2024-03-13 1023967/week @ 2024-03-20 920472/week @ 2024-03-27 1046494/week @ 2024-04-03 1052610/week @ 2024-04-10 892494/week @ 2024-04-17

4,094,224 downloads per month
Used in 5,515 crates (24 directly)

MIT/Apache

275KB
3.5K SLoC

allocator-api2

crates docs actions MIT/Apache loc

This crate mirrors types and traits from Rust's unstable allocator_api The intention of this crate is to serve as substitution for actual thing for libs when build on stable and beta channels. The target users are library authors who implement allocators or collection types that use allocators, or anyone else who wants using allocator_api

The crate should be frequently updated with minor version bump. When allocator_api is stable this crate will get version 1.0 and simply re-export from core, alloc and std.

The code is mostly verbatim copy from rust repository. Mostly attributes are removed.

Usage

This paragraph describes how to use this crate correctly to ensure compatibility and interoperability on both stable and nightly channels.

If you are writing a library that interacts with allocators API, you can add this crate as a dependency and use the types and traits from this crate instead of the ones in core or alloc. This will allow your library to compile on stable and beta channels.

Your library MAY provide a feature that will enable "allocator-api2/nightly". When this feature is enabled, your library MUST enable unstable #![feature(allocator_api)] or it may not compile. If feature is not provided, your library may not be compatible with the rest of the users and cause compilation errors on nightly channel when some other crate enables "allocator-api2/nightly" feature.

License

Licensed under either of

at your option.

Contributions

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.

Dependencies