combo_vec 0.8.0

A blazingly fast no-std vector-like ADT using the stack (and optionally heap for overflow)
Documentation
[[bench]]
harness = false
name = "bench"
path = "benches/bench.rs"
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"]

[lib]
name = "combo_vec"
path = "src/lib.rs"

[lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"

[lints.rust]
unsafe_code = "forbid"

[package]
authors = ["VirxEC"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
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.83.0"
version = "0.8.0"

[profile.release]
codegen-units = 1
lto = true
panic = "abort"

[[test]]
name = "combo_vec"
path = "tests/combo_vec.rs"

[[test]]
name = "re_arr"
path = "tests/re_arr.rs"