[package] name = "priq" version = "0.2.0" edition = "2021" authors = ["Beka M. "] description = "Array implementation of the min/max heap" documentation = "https://docs.rs/priq" readme = "README.md" homepage = "https://github.com/bexxmodd/priq" license = "MIT" categories = ["data-structures"] keywords = ["priority", "queue", "data-structure"] exclude = [ "benches/bench_bheap.rs", ] [lib] name = "priq" path = "src/priq.rs" test = true doctest = true bench = false crate-type = ["lib"] [[bench]] name = "bench_priq" harness = false [dev-dependencies] bencher = "0.1.5" [dependencies] rand = "0.8.4"