slabmalloc 0.3.1

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
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "slabmalloc"
version = "0.3.1"
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."
homepage = "https://github.com/gz/rust-slabmalloc"
documentation = "http://gz.github.io/rust-slabmalloc/slabmalloc/"
readme = "README.md"
keywords = ["os", "malloc", "slab", "alloc", "memory"]
license = "MIT"
repository = "https://github.com/gz/rust-slabmalloc"
[dependencies.log]
version = "0.4"

[dependencies.spin]
version = "0.4.8"
default_features = false

[features]
default = ["unstable"]
unstable = ["spin/unstable"]
[target."cfg(unix)".dev-dependencies.env_logger]
version = "0.5.10"

[target."cfg(unix)".dev-dependencies.libc]
version = "0.2"

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