[package]
edition = "2024"
rust-version = "1.85"
name = "planck-noalloc"
version = "0.1.1"
authors = ["hxyulin"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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",
]
license = "MIT"
repository = "https://github.com/asterism-labs/planck"
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[lib]
name = "planck_noalloc"
path = "src/lib.rs"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "warn"