[package]
edition = "2024"
rust-version = "1.85"
name = "arrlist"
version = "0.1.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A generic, heap-allocated dynamic array"
readme = "README.md"
keywords = [
"array",
"collections",
"list",
"vec",
]
categories = ["data-structures"]
license = "MIT"
[lib]
name = "arrlist"
path = "src/lib.rs"
[[test]]
name = "algorithms"
path = "tests/algorithms.rs"
[[test]]
name = "construction"
path = "tests/construction.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "iterators"
path = "tests/iterators.rs"
[[test]]
name = "macros"
path = "tests/macros.rs"
[[test]]
name = "operations"
path = "tests/operations.rs"
[dependencies.thiserror-no-std]
version = "2.0.2"