alloc_buddy_simple 0.1.0

Simple, drop-in replacement allocator for Rust running on bare metal (no_std)
Documentation
[package]
name = "alloc_buddy_simple"
version = "0.1.0"
authors = ["Eric Kidd <git@randomhacks.net>"]

description = "Simple, drop-in replacement allocator for Rust running on bare metal (no_std)"
homepage = "https://github.com/emk/toyos.rs/tree/master/crates/alloc_buddy_simple"
repository = "https://github.com/emk/toyos.rs"
readme = "README.md"
keywords = ["no_std", "kernel", "allocator"]
license = "Apache-2.0/MIT"

[features]

# When this feature is enabled, build this crate as the actual Rust system
# allocator.  This also requires pulling in a spinlock crate, to control
# access to the shared heap.
use-as-rust-allocator = ["spin"]

[dependencies]
spin = { version = "^0.3.4", optional = true }