[package]
name = "array_trait"
version = "1.1.15"
edition = "2024"
license = "MIT"
keywords = ["array", "util", "trait"]
categories = ["rust-patterns", "no-std::no-alloc"]
description = "A generic trait for any array, with item as type and length as const parameter"
repository = "https://github.com/sigurd4/array_trait"
[features]
default = ["alloc"]
alloc = ["slice_trait/alloc"]
length = ["same", "slice_trait/length"]
same = ["slice_trait/same"]
[dependencies]
moddef = "0.3.0"
slice_trait = {version = "0.3.10", default-features = false}