forked from TheSeekerGame/TheSeeker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
155 lines (134 loc) · 3.3 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
[package]
name = "theseeker"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[patch.crates-io]
bevy = { git = "https://github.com/TheSeekerGame/bevy", branch = "TheSeeker" }
bevy_ecs = { git = "https://github.com/TheSeekerGame/bevy", branch = "TheSeeker" }
bevy_app = { git = "https://github.com/TheSeekerGame/bevy", branch = "TheSeeker" }
bevy_asset = { git = "https://github.com/TheSeekerGame/bevy", branch = "TheSeeker" }
bevy_log = { git = "https://github.com/TheSeekerGame/bevy", branch = "TheSeeker" }
bevy_utils = { git = "https://github.com/TheSeekerGame/bevy", branch = "TheSeeker" }
bevy_xpbd_2d = { git = "https://github.com/TheSeekerGame/bevy_xpbd", branch = "TheSeeker" }
[lib]
name = "theseeker_engine"
path = "engine/src/lib.rs"
[[bin]]
name = "theseeker_game"
path = "game/src/main.rs"
[features]
dev = [
"bevy/file_watcher",
"bevy_xpbd_2d/debug-plugin",
]
# dev: Enable max optimizations for dependencies, but not for our code
[profile.dev.package."*"]
opt-level = 3
# dev: no LTO, lots of codegen units for parallelism during compilation
[profile.dev]
opt-level = 1
debug = false
lto = false
codegen-units = 8
# release: Enable LTO and limit codegen units for better codegen
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = false
# Random little libraries
[dependencies]
anyhow = "1.0.79"
derive_more = "0.99.17"
directories = "5.0.1"
enum-iterator = "1.5.0"
enum-map = "2.7.3"
fluent_content = "0.0.5"
glam = "0.25.0"
rand = "0.8.5"
serde_with = "3.6.1"
thiserror = "1.0.56"
toml = "0.8.10"
unic-langid = "0.9.4"
[dependencies.serde]
version = "1.0.196"
features = [
"derive",
]
[dependencies.bevy]
version = "0.12"
default-features = false
features = [
"multi-threaded",
"android_shared_stdcxx",
"animation",
"bevy_animation",
"bevy_asset",
"bevy_core_pipeline",
"bevy_gilrs",
"bevy_render",
"bevy_gizmos",
"bevy_scene",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"bevy_winit",
"png",
"jpeg",
"ktx2",
"zstd",
"tonemapping_luts",
"x11",
#"wayland",
# FIXME: TEMPORARY
"bevy_audio",
"flac",
]
[dependencies.bevy_asset_loader]
version = "0.19"
features = [
"2d",
"progress_tracking",
"standard_dynamic_assets"
]
[dependencies.bevy_common_assets]
version = "0.9"
features = [
"toml",
"ron",
]
[dependencies.bevy_ecs_ldtk]
# version = "0.8"
git = "https://github.com/TheSeekerGame/bevy_ecs_ldtk"
rev = "68af1c11cb95b1ed85f9f5008e7308f41e8015f1"
[dependencies.bevy_ecs_tilemap]
# version = "0.11"
git = "https://github.com/StarArawn/bevy_ecs_tilemap"
rev = "b08a5d997867d5e5a760e296dc38e435c6b268cc"
[dependencies.bevy_fluent]
version = "0.8"
[dependencies.bevy_tweening]
version = "0.9"
[dependencies.iyes_bevy_extras]
git = "https://github.com/IyesGames/iyes_bevy_extras"
features = ["2d"]
[dependencies.iyes_cli]
git = "https://github.com/IyesGames/iyes_cli"
[dependencies.iyes_progress]
version = "0.10"
features = ["assets"]
[dependencies.iyes_ui]
git = "https://github.com/IyesGames/iyes_ui"
features = ["iyes_cli"]
[dependencies.leafwing-input-manager]
version = "0.11"
[dependencies.bevy_xpbd_2d]
version = "=0.3.2"
default-features = false
features = [
"2d",
"f32",
# "parallel",
# "simd",
]