-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 881 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 881 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
33
34
35
36
37
[package]
name = "bevy_pathfinding"
version = "0.1.0"
edition = "2021"
description = "A simple 3D Bevy plugin that combines flowfield pathfinding with boid-based collision avoidance to move units smoothly. Great for RTS games!"
keywords = ["bevy", "pathfinding", "rts"]
categories = ["game-development"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/The-DevBlog/bevy_pathfinding"
homepage = "https://github.com/The-DevBlog/bevy_pathfinding"
readme = "README.md"
exclude = [
"assets/debug*",
"assets/demo*",
".vscode/**",
]
[dependencies]
bevy = { version = "0.16.0", default-features = false, features = [
"bevy_asset",
"bevy_gizmos",
"bevy_pbr",
"bevy_render",
"bevy_ui",
"bevy_window",
"bevy_winit"
] }
bytemuck = "1.21.0"
image = "0.25.5"
[dev-dependencies]
bevy_rts_camera = "0.10.0"
bevy = "0.16.0"
[features]
debug = []