slabmalloc 0.11.0

Simple slab based malloc implementation in rust. Can be used stand-alone or in order to provide the necessary interface to rusts liballoc library. slabmalloc only relies on libcore.
Documentation
[dependencies.log]
version = "0.4"

[features]
default = ["unstable"]
unstable = []

[package]
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
description = "Simple slab based malloc implementation in rust. Can be used stand-alone or in order to provide the necessary interface to rusts liballoc library. slabmalloc only relies on libcore."
documentation = "https://docs.rs/slabmalloc"
edition = "2018"
homepage = "https://github.com/gz/rust-slabmalloc"
keywords = ["os", "malloc", "slab", "alloc", "memory"]
license = "MIT"
name = "slabmalloc"
readme = "README.md"
repository = "https://github.com/gz/rust-slabmalloc"
version = "0.11.0"

[target."cfg(unix)".dev-dependencies.env_logger]
version = "0.9"

[target."cfg(unix)".dev-dependencies.rand]
version = "0.8"

[target."cfg(unix)".dev-dependencies.spin]
version = "0.9.0"