[package]
edition = "2018"
name = "deadlock"
version = "0.4.0"
authors = ["Hwanhee Kim <babtul21@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Stable-ID slot map and min-heap with unsync and thread-safe (sync) variants."
readme = "README.md"
license = "MIT"
repository = "https://github.com/kimhappy/deadlock"
[lib]
name = "deadlock"
path = "src/lib.rs"
[[test]]
name = "sync_slotheap"
path = "tests/sync_slotheap.rs"
[[test]]
name = "sync_slotmap"
path = "tests/sync_slotmap.rs"
[[test]]
name = "unsync_slotheap"
path = "tests/unsync_slotheap.rs"
[[test]]
name = "unsync_slotmap"
path = "tests/unsync_slotmap.rs"
[[bench]]
name = "slotmap"
path = "benches/slotmap.rs"
harness = false
[dependencies.crossbeam-utils]
version = "0.8"
[dependencies.parking_lot]
version = "0.12"
[dev-dependencies.criterion]
version = "0.8"