[[bench]]
harness = false
name = "bench"
required-features = ["alloc"]
[dev-dependencies.arrayvec]
version = "0.7.4"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5.1"
[dev-dependencies.smallvec]
features = ["const_new", "const_generics", "union"]
version = "1.11.2"
[features]
alloc = []
default = ["alloc"]
[lints.clippy]
all = "warn"
[lints.rust]
unsafe_code = "forbid"
[package]
authors = ["VirxEC"]
categories = ["data-structures"]
description = "A blazingly fast no-std vector-like ADT using the stack (and optionally heap for overflow)"
edition = "2021"
license = "MIT"
name = "combo_vec"
readme = "README.md"
repository = "https://github.com/VirxEC/combo_vec"
rust-version = "1.74.0"
version = "0.7.0"
[profile.release]
codegen-units = 1
lto = true
panic = "abort"