-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (29 loc) · 823 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
33
34
35
36
[package]
name = "bevy_northstar"
version = "0.1.0"
edition = "2021"
[dependencies]
thiserror = "2.0.9"
indexmap = "2.7.0"
ndarray = { version = "0.16.1", features=["rayon"] }
rustc-hash = "2.1.0"
strum = "0.26.3"
slab = "0.4.9"
[dependencies.bevy]
version = "0.15"
default-features = false
features=["bevy_render", "bevy_gizmos"]
[dev-dependencies]
bevy = { version = "0.15", features=["bevy_dev_tools"] }
bevy_ecs_tilemap = { version = "0.15" }
bevy_ecs_tiled = { version = "0.5" }
### Causing build issues on Windows, need to look into how to handle this
# criterion = {version = "0.5.1", features = ["html_reports"]}
# pprof = {version = "0.14.0", features = ["flamegraph"]}
rand = "0.8.5"
### See note above about pprof windows issues
# [[bench]]
# name = "benches"
# harness = false
[[examples]]
name = "demo"