[package]
edition = "2021"
rust-version = "1.94.0"
name = "rustsim-pathfinding"
version = "0.0.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic A* and grid-specific pathfinding for rustsim"
readme = false
keywords = [
"pathfinding",
"astar",
"grid",
"simulation",
"abm",
]
categories = [
"science",
"simulation",
"algorithms",
]
license = "MIT"
repository = "https://github.com/rustsim/rustsim"
[lib]
name = "rustsim_pathfinding"
path = "src/lib.rs"
[[test]]
name = "astar_tests"
path = "tests/astar_tests.rs"
[[test]]
name = "pathfinding_tests"
path = "tests/pathfinding_tests.rs"
[[bench]]
name = "pathfinding_bench"
path = "benches/pathfinding_bench.rs"
harness = false
[dependencies.rand]
version = "0.8"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]