[package]
edition = "2024"
rust-version = "1.86"
name = "cap_vec"
version = "0.3.0"
authors = ["Davide Di Carlo <daddinuz@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A no_std heap-backed vector with fixed compile-time maximum capacity."
homepage = "https://github.com/daddinuz/cap_vec"
documentation = "https://docs.rs/cap_vec"
readme = "README.md"
keywords = [
"array",
"collections",
"list",
"vec",
"heap",
]
categories = [
"data-structures",
"memory-management",
"no-std",
]
license = "MIT"
repository = "https://github.com/daddinuz/cap_vec"
[lib]
name = "cap_vec"
path = "src/lib.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[dev-dependencies.criterion]
version = "0.8"