[[test]]
name = "vec"
path = "tests/vec.rs"
[[test]]
name = "vec_try"
path = "tests/vec_try.rs"
required-features = ["nightly_try_reserve"]
[[test]]
name = "unsync"
path = "tests/unsync.rs"
[[test]]
name = "chain"
path = "tests/chain.rs"
required-features = ["nightly_chain"]
[dependencies.alloc-traits]
version = "0.1.0"
[dependencies.atomic-polyfill]
optional = true
version = "1"
[features]
alloc = []
nightly_chain = ["alloc"]
nightly_try_reserve = []
polyfill = ["atomic-polyfill"]
[package]
authors = ["Andreas Molzer <andreas.molzer@gmx.de>"]
categories = ["embedded", "memory-management", "no-std"]
description = "A bump allocator on static memory for the alloc-traits crate"
documentation = "https://docs.rs/static-alloc"
edition = "2018"
license = "MIT OR Apache-2.0 OR Zlib"
name = "static-alloc"
readme = "Readme.md"
repository = "https://github.com/HeroicKatora/static-alloc"
version = "0.2.5"
[package.metadata.docs.rs]
all-features = true