deadlock 0.4.0

Stable-ID slot map and min-heap with unsync and thread-safe (sync) variants.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"