flex_array 0.2.4

A `#[no_std]` flexible array much like std::Vec but with custom indices and length and capacity types.
Documentation
[package]
name = "flex_array"
version = "0.2.4"
edition = "2024"
authors = ["Keith Cancel <admin@keith.pro>"]
description = "A `#[no_std]` flexible array much like std::Vec but with custom indices and length and capacity types."
keywords = ["no_std", "vec", "vector", "array"]
categories = ["data-structures", "no-std"]
readme = "README.md"
repository = "https://github.com/Keith-Cancel/flex_array"
license = "MIT"

[package.metadata.docs.rs]
features = ["std_alloc"]

[dependencies]
allocator-api2 = { version = "0.2.21", optional = true }

[features]
default = []
std_alloc = []
alloc_unstable = []
alloc_api2 = ["dep:allocator-api2"]