rarena 0.4.0

Lock-free allocator and data structures based on ARENA.
Documentation
1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../README.md")]
#![cfg_attr(not(any(feature = "std", test)), no_std)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(docsrs, allow(unused_attributes))]
#![deny(missing_docs)]

#[cfg(not(any(feature = "std", feature = "alloc")))]
compile_error!("`rarena` requires either the 'std' or 'alloc' feature to be enabled");

pub use rarena_allocator as allocator;