-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 901 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
37
38
[package]
name = "stack-practice"
version = "0.1.0"
edition = "2021"
[[test]]
name="texture_tests"
path="custom_tests/texture_tests.rs"
harness=false
[[test]]
name="shape_tests"
path="custom_tests/shape_tests.rs"
harness=false
[profile.dev.package."*"]
opt-level = 3
[dependencies]
bevy = { version = "0.13.0", features = ["dynamic_linking", "file_watcher"] }
bevy_asset_loader = "0.20.0"
bevy_egui = {git = "https://github.com/mvlabat/bevy_egui/", rev="refs/pull/236/head"} # TODO get the latest bevy_egui when published (should be 0.25)
duplicate = "1.0.0"
futures = "0.3.29"
if_chain = "1.0.2"
image = "0.24.7"
itertools = "0.12.0"
rand = "0.8.5"
rand_pcg = { version = "0.3.1", features = ["serde1"] }
ron = "0.8.1"
serde = "1.0.193"
smart-default = "0.7.1"
strum = { version = "0.26.1", features = ["derive"] }
tap = "1.0.1"
tracing = "0.1.40"
[dev-dependencies]
bevy_mod_debugdump = "0.9.0"