acid_alloc

CI crates-io api-docs

Bare-metal allocators.

This crate provides allocators that are suitable for use on bare metal or with OS allocation facilities like mmap(2)/brk(2).

The following allocator types are available:

Features

All allocators provided by this crate are available in a #![no_std], #![cfg(no_global_oom_handling)] environment. Additional functionality is available when enabling feature flags:

Flag Default? Requires nightly? Description
sptr Yes No Uses the sptr polyfill for Strict Provenance.
unstable No Yes Exposes constructors for allocators backed by implementors of the unstable Allocator trait, and enables the internal use of nightly-only Rust features. Obviates sptr.
alloc No No Exposes constructors for allocators backed by the global allocator.

Acknowledgments

This crate includes stable-compatible polyfills for a number of unstable standard-library APIs whose implementations are reproduced verbatim here. These features are listed below along with their authors and/or maintainers:

This crate also depends on [sptr] (also authored by Gankra) to reproduce strict provenance for normal pointers on stable Rust.

If I've misattributed any of this work, or a contributor to these features is missing, please open an issue!

License

Licensed under either of

at your option.

Contribution

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.