[package]
edition = "2018"
name = "deadlock"
version = "0.10.0"
authors = ["Hwanhee Kim <babtul21@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Thread-safe slot map and slot min-heap with stable RAII handle"
readme = "README.md"
license = "MIT"
repository = "https://github.com/kimhappy/deadlock"
[lib]
name = "deadlock"
path = "src/lib.rs"
[[test]]
name = "slotheap"
path = "tests/slotheap.rs"
[[test]]
name = "slotmap"
path = "tests/slotmap.rs"
[dependencies.easy-ext]
version = "1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.reflica]
version = "0.2"
[dependencies.triomphe]
version = "0.1"