linked_list_allocator 0.7.0

Simple allocator usable for no_std systems. It builds a linked list from the freed blocks and thus needs no additional data structures.
Documentation
# 0.7.0

- Use new spinning_top crate instead of `spin` ([#23]https://github.com/phil-opp/linked-list-allocator/pull/23)

# 0.6.6

- The `Alloc` trait was renamed to `AllocRef` ([#20]https://github.com/phil-opp/linked-list-allocator/pull/20)

# 0.6.5

- Align up the Hole initialization address ([#18]https://github.com/phil-opp/linked-list-allocator/pull/18)
- Remove `alloc` feature gate, which is now stable