stack-allocator 0.1.1

A stack-based memory allocator with optional fallback to a global/secondary allocator.
Documentation
[build-dependencies.rustc_version]
version = "0.4"

[dependencies.allocator-api2]
default-features = false
features = ["alloc"]
version = "0.2.9"

[dev-dependencies.hashbrown]
version = "0"

[features]
alloc = []
std = []

[lib]
name = "stack_allocator"
path = "src/lib.rs"

[package]
authors = ["Khashayar Fereidani"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["data-structures", "no-std"]
description = "A stack-based memory allocator with optional fallback to a global/secondary allocator."
edition = "2021"
keywords = ["allocator", "stack", "alloc", "memory-management", "no-std"]
license = "MIT"
name = "stack-allocator"
readme = "README.md"
repository = "https://github.com/fereidani/stack-allocator"
version = "0.1.1"

[[test]]
name = "hybrid_allocator"
path = "tests/hybrid_allocator.rs"

[[test]]
name = "stack_allocator"
path = "tests/stack_allocator.rs"