[dependencies.lazy_static]
default-features = false
features = ["spin_no_std"]
version = "1"
[dependencies.libc]
version = "0.2"
[dependencies.num_cpus]
optional = true
version = "1"
[dependencies.once_cell]
optional = true
version = "1"
[dependencies.spin]
default-features = false
features = ["spin_mutex"]
version = "0.9"
[features]
default = ["std"]
std = ["dep:num_cpus", "dep:once_cell"]
[package]
categories = ["memory-management"]
description = "A simple but fast binned allocator for Rust. Single-threaded for no_std, multi-threaded otherwise"
edition = "2021"
homepage = "https://github.com/AWBroch/rsbmalloc"
keywords = ["allocator", "no_std", "binned_allocator"]
license = "MIT OR Apache-2.0"
name = "rsbmalloc"
readme = "README.md"
repository = "https://github.com/AWBroch/rsbmalloc"
resolver = "1"
rust-version = "1.60"
version = "0.4.2"