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
15
16
17
[package]
name = "combo_vec"
version = "0.3.0"
edition = "2021"
authors = ["VirxEC"]
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"
readme = "README.md"
repository = "https://github.com/VirxEC/extendable_array"
license = "GPL-3.0-only"
categories = ["data-structures"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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