-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (27 loc) · 869 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "controlled_astar"
version = "1.0.1"
authors = ["Selim Serbes <[email protected]>"]
edition = "2021"
description = "A Rust library that provides an enhanced A* pathfinding algorithm with controllable node directions and block statuses, ideal for complex pathfinding scenarios."
license = "MIT"
repository = "https://github.com/selimserbes/controlled-astar"
documentation = "https://docs.rs/controlled_astar"
readme = "README.md"
keywords = ["pathfinding", "astar", "algorithm", "grid", "navigation"]
categories = ["algorithms"]
[[example]]
name = "example"
path = "examples/example.rs"
[[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"