-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (48 loc) · 1.83 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "rust-survivors"
version = "0.1.0"
edition = "2021"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.13.0", features = ["dynamic_linking", "serialize", "trace_tracy"] }
#bevy = { version = "0.13.0", features = ["serialize", "trace_tracy"] }
bevy-inspector-egui = "0.23.4"
bevy_editor_pls = "0.8.0"
#bevy_xpbd_2d = "0.4"
bevy_rapier2d = { version = "0.25.0", features = ["parallel"] }
rand_core = "0.6"
bevy_rand = "0.5"
bevy_prng = { version = "0.5", features = ["rand_chacha", "wyrand"] }
rand = "0.9.0-alpha.0"
serde_yaml = { version = "0.9.32", features = [] }
serde = "1.0.197"
walkdir = "2.3.2"
bevy_asepritesheet = "0.6.0"
bevycheck = "0.5.2"
tracing-tracy = "0.11.0"
bevy_tween = "0.2.0"
spew = "0.5.1"
bevy_egui = { version = "0.27.0", features = ["immutable_ctx", "default"] }
bevy_ecs_ldtk = {git = "https://github.com/Trouv/bevy_ecs_ldtk", branch = "main", features = ["atlas"]}
#bevy_proto = { version = "0.11.0", features = ["default", "yaml"] }//doesn't support bevy 13
bevy-trait-query = "0.5.1"
temporary_component_derive = {path= "temporary_component_derive"}
tracing-subscriber = "0.3.18"
tracing = "0.1.40"
egui_extras = { version = "0.27.2", features = ["all_loaders"] }
image = { version = "0.25.1", features = ["jpeg", "png"] } # Add the types you want support for
egui = "0.27.2"
[patch.crates-io]
bevy_ecs_tilemap = { git = "https://github.com/StarArawn/bevy_ecs_tilemap", branch = "main" }
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
# Add this to your Cargo.toml
[profile.dev.package.rapier2d]#redundant, I think
opt-level = 3
[profile.release]
codegen-units = 1