[package]
name = "planck-noalloc"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "Stack-allocated, no-std collections (ArrayVec, RingBuf)"
readme = "README.md"
keywords = ["no-std", "embedded", "collections", "stack-allocated", "no-alloc"]
categories = ["no-std", "data-structures", "embedded"]
[features]
default = ["std"]
std = ["alloc"]
alloc = []
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"
missing_docs = "warn"
[lints.clippy]
all = "warn"
pedantic = "warn"