combo_vec 0.3.0

An array that can be resized at runtime but allocated stack space at compile time and doesn't move any data off the stack when it overflows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[package]
authors = ["VirxEC"]
categories = ["data-structures"]
description = "An array that can be resized at runtime but allocated stack space at compile time and doesn't move any data off the stack when it overflows"
edition = "2021"
license = "GPL-3.0-only"
name = "combo_vec"
readme = "README.md"
repository = "https://github.com/VirxEC/extendable_array"
version = "0.3.0"
[profile.release]
codegen-units = 1
lto = "fat"
panic = "abort"