ax_slab_allocator 0.4.0

Slab allocator for `no_std` systems. Uses multiple slabs with blocks of different sizes and a linked list for blocks larger than 4096 bytes
Documentation

Slab allocator for no_std systems. It uses multiple slabs with blocks of different sizes and a buddy_system_allocator for blocks larger than 4096 bytes.

It's based on https://github.com/weclaw1/slab_allocator.