#![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;