[package]
edition = "2024"
rust-version = "1.93"
name = "noalloc-vec-rs"
version = "0.1.2"
authors = [
"Jérémy Audiger",
"Kamel Azira",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A no-allocation vector implementation for environment without memory allocation.
"""
readme = "README.md"
keywords = [
"static",
"no-heap",
]
categories = ["no-std"]
license = "Apache-2.0"
repository = "https://github.com/jaudiger/noalloc-vec-rs"
[lib]
name = "noalloc_vec_rs"
path = "src/lib.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[dev-dependencies.criterion]
version = "0.8.1"
[lints.clippy]
missing_errors_doc = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[profile.bench]
opt-level = 2
lto = true
codegen-units = 1
split-debuginfo = "unpacked"
incremental = false
[profile.dev]
split-debuginfo = "unpacked"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
incremental = false
strip = "symbols"