[package]
edition = "2024"
name = "orx-priority-queue"
version = "1.9.0"
authors = ["orxfun <orx.ugur.arikan@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Priority queue traits and high performance d-ary heap implementations."
readme = "README.md"
keywords = [
"priority",
"queue",
"heap",
"dary",
"binary",
]
categories = [
"algorithms",
"data-structures",
"mathematics",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/orxfun/orx-priority-queue/"
[features]
default = ["std"]
impl_all = ["impl_priority_queue"]
impl_priority_queue = ["priority-queue"]
std = []
[lib]
name = "orx_priority_queue"
path = "src/lib.rs"
[[test]]
name = "daryheap"
path = "tests/daryheap.rs"
[[test]]
name = "daryheap_2"
path = "tests/daryheap_2.rs"
[[test]]
name = "daryheap_4"
path = "tests/daryheap_4.rs"
[[test]]
name = "daryheap_of_indices"
path = "tests/daryheap_of_indices.rs"
[[test]]
name = "daryheap_of_indices_2"
path = "tests/daryheap_of_indices_2.rs"
[[test]]
name = "daryheap_of_indices_4"
path = "tests/daryheap_of_indices_4.rs"
[[test]]
name = "daryheap_with_map"
path = "tests/daryheap_with_map.rs"
[[test]]
name = "daryheap_with_map_2"
path = "tests/daryheap_with_map_2.rs"
[[test]]
name = "daryheap_with_map_4"
path = "tests/daryheap_with_map_4.rs"
[[test]]
name = "dijkstra"
path = "tests/dijkstra.rs"
[[bench]]
name = "basic_queue"
path = "benches/basic_queue.rs"
harness = false
[[bench]]
name = "deckey_queue"
path = "benches/deckey_queue.rs"
[[bench]]
name = "push_then_pop"
path = "benches/push_then_pop.rs"
[dependencies.priority-queue]
version = "2.3"
optional = true
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.itertools]
version = "0.14"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.rand_chacha]
version = "0.9"