-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (26 loc) · 819 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "orx-priority-queue"
version = "1.7.0"
edition = "2024"
authors = ["orxfun <[email protected]>"]
readme = "README.md"
description = "Priority queue traits and high performance d-ary heap implementations."
license = "MIT OR Apache-2.0"
repository = "https://github.com/orxfun/orx-priority-queue/"
keywords = ["priority", "queue", "heap", "dary", "binary"]
categories = ["algorithms", "data-structures", "mathematics", "no-std"]
[features]
default = ["std"]
std = []
impl_priority_queue = ["priority-queue"]
impl_all = ["impl_priority_queue"]
[dependencies]
priority-queue = { version = "2.3", optional = true }
[[bench]]
name = "basic_queue"
harness = false
[dev-dependencies]
itertools = "0.14"
rand = "0.9"
rand_chacha = "0.9"
criterion = { version = "0.5", features = ["html_reports"] }