priority-queue 2.1.1

A Priority Queue implemented as a heap with a function to efficiently change the priority of an item.
Documentation
[[bench]]
name = "priority_queue"
path = "benches/priority_queue.rs"

[build-dependencies.autocfg]
version = "1"

[dependencies.equivalent]
version = "1.0.1"

[dependencies.indexmap]
default-features = false
features = []
version = "2.2"

[dependencies.serde]
optional = true
version = "1"

[dev-dependencies.hashbrown]
version = "0.14"

[dev-dependencies.serde]
features = ["derive"]
version = "1"

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.serde_test]
version = "1"

[dev-dependencies.uuid]
features = ["v4", "serde"]
version = "1"

[features]
benchmarks = []
default = ["std"]
std = ["indexmap/std"]

[lib]
name = "priority_queue"
path = "src/lib.rs"

[package]
authors = ["Gianmarco Garrisi <gianmarcogarrisi@tutanota.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["data-structures", "algorithms"]
description = "A Priority Queue implemented as a heap with a function to efficiently change the priority of an item."
documentation = "https://docs.rs/priority-queue"
edition = "2021"
keywords = ["priority", "queue", "heap"]
license = "LGPL-3.0-or-later OR MPL-2.0"
name = "priority-queue"
readme = "README.md"
repository = "https://github.com/garro95/priority-queue"
version = "2.1.1"

[package.metadata.docs.rs]
features = ["serde"]
rustdoc-args = ["--cfg", "docsrs"]

[[test]]
name = "double_priority_queue"
path = "tests/double_priority_queue.rs"

[[test]]
name = "priority_queue"
path = "tests/priority_queue.rs"