-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 856 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 856 Bytes
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 = "grid_pathfinding"
version = "0.3.0"
authors = ["Thom van der Woude <tbvanderwoude@protonmail.com>"]
edition = "2021"
description = "Pathfinding using jump point search (JPS) and connected components on a 2D grid."
keywords = ["pathfinding","grid","jump","point","JPS"]
categories = ["game-development","simulation","algorithms"]
license = "MIT"
repository = "https://github.com/tbvanderwoude/grid_pathfinding"
readme = "README.md"
[dependencies]
petgraph = "0.8"
indexmap = "2.3"
fxhash = "0.2"
num-traits = "0.2"
grid_util = { version = "0.2", features = ["smallvec"]}
log = "0.4"
smallvec = "1.13"
[lib]
bench = false
[dev-dependencies]
criterion = { version = "0.7", features = ["html_reports"] }
grid_pathfinding_benchmark = { path = "grid_pathfinding_benchmark" }
rand = "0.9"
[[bench]]
name = "comparison_bench"
harness = false