[[example]]
name = "example"
path = "examples/example.rs"
[package]
authors = ["Selim Serbes <omnicoder.ceng@gmail.com>"]
categories = ["algorithms"]
description = "A Rust library that provides an enhanced A* pathfinding algorithm with controllable node directions and block statuses, ideal for complex pathfinding scenarios."
documentation = "https://docs.rs/controlled_astar"
edition = "2021"
keywords = ["pathfinding", "astar", "algorithm", "grid", "navigation"]
license = "MIT"
name = "controlled_astar"
readme = "README.md"
repository = "https://github.com/selimserbes/controlled-astar"
version = "1.0.0"
[[test]]
name = "unit_node"
path = "tests/unit/node_tests.rs"
[[test]]
name = "unit_pq"
path = "tests/unit/pq_tests.rs"
[[test]]
name = "unit_astar"
path = "tests/unit/astar_tests.rs"
[[test]]
name = "integration"
path = "tests/integration/tests.rs"