[package]
edition = "2024"
name = "weighted_path"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for finding shortest paths in weighted graphs using Dijkstra's algorithm with multiple heap implementations"
readme = "README.md"
keywords = [
"dijkstra",
"shortest-path",
"graph",
"priority-queue",
"heap",
]
categories = [
"algorithms",
"data-structures",
]
license = "MIT"
repository = "https://github.com/maurolacy/weighted-path"
[lib]
name = "weighted_path"
path = "src/lib.rs"
[[bin]]
name = "generate_graph"
path = "src/generate_graph.rs"
[[bin]]
name = "weighted_path"
path = "src/main.rs"
[[bench]]
name = "dijkstra_bench"
path = "benches/dijkstra_bench.rs"
harness = false
[dependencies.fastrand]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]