grid_pathfinding 0.2.0

Pathfinding using JPS and connected components on a grid.
Documentation
[[bench]]
harness = false
name = "comparison_bench"
path = "benches/comparison_bench.rs"

[dependencies.fxhash]
version = "0.2"

[dependencies.grid_util]
version = "0.1.1"

[dependencies.indexmap]
version = "2.2"

[dependencies.itertools]
version = "0.12"

[dependencies.log]
version = "0.4"

[dependencies.num-traits]
version = "0.2"

[dependencies.petgraph]
version = "0.6.4"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.4"

[dev-dependencies.rand]
version = "0.8.5"

[[example]]
name = "multiple_goals"
path = "examples/multiple_goals.rs"

[[example]]
name = "paths_and_waypoints"
path = "examples/paths_and_waypoints.rs"

[[example]]
name = "heuristic_factor"
path = "examples/heuristic_factor.rs"

[[example]]
name = "simple_4"
path = "examples/simple_4.rs"

[[example]]
name = "simple_8"
path = "examples/simple_8.rs"

[lib]
bench = false
name = "grid_pathfinding"
path = "src/lib.rs"

[package]
authors = ["Thom van der Woude <tbvanderwoude@protonmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["game-development", "simulation", "algorithms"]
description = "Pathfinding using JPS and connected components on a grid."
edition = "2021"
keywords = ["pathfinding", "grid", "jump", "point", "JPS"]
license = "MIT"
name = "grid_pathfinding"
readme = "README.md"
repository = "https://github.com/tbvanderwoude/grid_pathfinding"
version = "0.2.0"

[[test]]
name = "fuzz_test"
path = "tests/fuzz_test.rs"