noalloc-vec-rs 0.2.0

A no-allocation vector implementation for environment without memory allocation.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.94"
name = "noalloc-vec-rs"
version = "0.2.0"
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.2"

[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"