[[bench]]
harness = false
name = "indexlist-benchmark"
path = "benches/benchmark.rs"
[dev-dependencies.criterion]
version = "0.7"
[dev-dependencies.rand]
version = "0.8"
[[example]]
name = "indexlist"
path = "examples/indexlist.rs"
[[example]]
name = "iter_mut_alternative"
path = "examples/iter_mut_alternative.rs"
[features]
iter_mut = []
[lib]
name = "index_list"
path = "src/lib.rs"
[package]
authors = ["Stefan Lindblad <stefan.lindblad@linux.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures"]
description = "A doubly linked list implemented in safe Rust using vector indexes"
edition = "2021"
keywords = ["linked-list"]
license = "MPL-2.0"
name = "index_list"
readme = "README.md"
repository = "https://github.com/Fairglow/index-list.git"
version = "0.3.0"
[profile.release]
codegen-units = 1
lto = true
[[test]]
name = "iter_mut"
path = "tests/iter_mut.rs"
[[test]]
name = "test"
path = "tests/test.rs"