[package]
edition = "2024"
name = "hexga_array_vec"
version = "0.0.11-beta.51"
authors = ["Mewily <thomas.mewily@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A vector with fixed capacity, backed by an array based on arrayvec"
homepage = "https://github.com/Thomas-Mewily/hexga"
readme = "README.md"
keywords = [
"stack",
"vector",
"array",
"data-structure",
]
categories = [
"data-structures",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Thomas-Mewily/hexga"
[features]
default = [
"serde",
"std",
]
serde = ["dep:serde"]
serde_rc = ["serde/rc"]
std = []
[lib]
name = "hexga_array_vec"
path = "src/lib.rs"
[dependencies.hexga_core]
version = "0.0.11-beta.51"
default-features = false
[dependencies.serde]
version = "1.0.0"
features = ["derive"]
optional = true