[package]
edition = "2021"
rust-version = "1.83.0"
name = "combo_vec"
version = "0.9.0"
authors = ["VirxEC"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A blazingly fast no-std vector-like ADT using the stack (and optionally heap for overflow)"
readme = "README.md"
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/VirxEC/combo_vec"
[features]
alloc = []
default = ["alloc"]
[lib]
name = "combo_vec"
path = "src/lib.rs"
[[test]]
name = "combo_vec"
path = "tests/combo_vec.rs"
[[test]]
name = "re_arr"
path = "tests/re_arr.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
required-features = ["alloc"]
[dev-dependencies.arrayvec]
version = "0.7.4"
[dev-dependencies.criterion]
version = "0.6.0"
[dev-dependencies.smallvec]
version = "1.11.2"
features = [
"const_new",
"const_generics",
"union",
]
[lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"