[[bench]]
name = "get"
path = "benches/get.rs"
[[bench]]
name = "insert"
path = "benches/insert.rs"
[[bench]]
name = "insert-remove"
path = "benches/insert-remove.rs"
[dependencies.thread_local]
version = "1.0"
[dependencies.virtual-buffer]
version = "1.0"
[dev-dependencies.slotmap]
version = "1.0"
[lib]
name = "concurrent_slotmap"
path = "src/lib.rs"
[lints.clippy]
inline_always = "allow"
undocumented_unsafe_blocks = "forbid"
[lints.rust]
missing_debug_implementations = "warn"
unsafe_op_in_unsafe_fn = "forbid"
unused_unsafe = "allow"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[package]
authors = ["marc0246 <40955683+marc0246@users.noreply.github.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "data-structures", "memory-management", "caching"]
description = "A lock-free concurrent slotmap"
documentation = "https://docs.rs/concurrent-slotmap"
edition = "2021"
keywords = ["lock-free", "concurrent", "slotmap", "arena", "allocator"]
license = "MIT OR Apache-2.0"
name = "concurrent-slotmap"
readme = "README.md"
repository = "https://github.com/vulkano-rs/concurrent-slotmap"
rust-version = "1.65"
version = "0.2.0-alpha.1"