build-array 0.1.0

Build an array dynamically without heap allocations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "build-array"
version = "0.1.0"
edition = "2021"
description = "Build an array dynamically without heap allocations."
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/build-array"
repository = "https://github.com/aatifsyed/build-array"
homepage = "https://crates.io/crates/build-array"

[dependencies]
arrayvec = { version = "0.7.4", default-features = false }

[features]
default = ["std"]
std = []