[package]
edition = "2021"
rust-version = "1.70"
name = "small-fixed-array"
version = "0.4.11"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A crate providing fixed length immutable collections with a low memory footprint."
readme = "README.md"
keywords = [
"array",
"string",
"collection",
"low-memory",
]
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/GnomedDev/small-fixed-array"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["std"]
nightly = []
serde = ["dep:serde"]
std = []
to-arraystring = ["dep:to-arraystring"]
typesize = ["dep:typesize"]
[lib]
name = "small_fixed_array"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.serde]
version = "1.0.193"
optional = true
[dependencies.to-arraystring]
version = "0.2.1"
optional = true
[dependencies.typesize]
version = "0.1.3"
optional = true
default-features = false
[dev-dependencies.serde_json]
version = "1"