changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / rust/lib/alch/src/lib.rs

changeset 698: 96958d3eb5b0
parent: 1227f932b628
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 //! alch - memory allocation collection
2 //!
3 //! This crate contains a variety of custom allocators optimized for
4 //! specific use-cases.
5 #![feature(allocator_api)]
6 mod tr;
7 pub use tr::TrAlloc;
8 
9 pub use bumpalo::Bump;
10 
11 // https://os.phil-opp.com/allocator-designs/
12 // mod bump;
13 // mod block;
14 // mod slab;
15 // mod buddy;