array_list 0.5.0

A chunked ordered collection with iterators and cursors
Documentation
[package]
name = "array_list"
version = "0.5.0"
edition = "2024"
rust-version = "1.87"

authors = ["Davide Di Carlo <daddinuz@gmail.com>"]
description = "A chunked ordered collection with iterators and cursors"
repository = "https://github.com/daddinuz/array_list"
documentation = "https://docs.rs/array_list"
readme = "README.md"
license = "MIT"
keywords = ["array", "collections", "linked-list", "list", "vec"]
categories = ["data-structures", "no-std"]
exclude = [".github/", ".gitignore"]

[dependencies]
cap_vec = "0.3"

[dev-dependencies]
criterion = "0.8"
proptest = "1"

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(miri)"] }

[[bench]]
name = "benchmark"
harness = false