[dev-dependencies.fastrand]
version = "2.0.1"
[dev-dependencies.rand]
version = "0.9.1"
[[example]]
name = "benchmark"
path = "examples/benchmark.rs"
[[example]]
name = "fifo_queue"
path = "examples/fifo_queue.rs"
[[example]]
name = "object_pool"
path = "examples/object_pool.rs"
[features]
default = []
releasefast = []
slot_u32 = []
slot_u64 = []
slot_usize = []
[lib]
name = "slabigator"
path = "src/lib.rs"
[package]
authors = ["Frank Denis <github@pureftpd.org>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "no-std", "memory-management"]
description = "A fixed-capacity linked list with stable element addressing and no dynamic allocations"
documentation = "https://docs.rs/slabigator"
edition = "2021"
homepage = "https://github.com/jedisct1/rust-slabigator"
keywords = ["slab", "linkedlist", "deque", "queue", "pool"]
license = "MIT OR Apache-2.0"
name = "slabigator"
readme = "README.md"
repository = "https://github.com/jedisct1/rust-slabigator"
rust-version = "1.60.0"
version = "0.9.4"
[[test]]
name = "basic_tests"
path = "tests/basic_tests.rs"
[[test]]
name = "iterator_test"
path = "tests/iterator_test.rs"
[[test]]
name = "manual_test"
path = "tests/manual_test.rs"