-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (38 loc) · 1.38 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
[package]
name = "keep-it-rolling-game"
version = "0.1.0"
edition = "2021"
publish = false
authors = ["Nilay Savant"] # ToDo: you are the author ;)
exclude = ["dist", "build", "assets", "credits"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["mobile"]
[dependencies]
bevy_egui = { version = "0.21", default-features = false, features = [
# "manage_clipboard", # disable clipboard feature since its not available and breaks on android build
"open_url",
"default_fonts",
] }
bevy = "0.11"
# patched version of the inspector crate with no clipboard feature (from bevy_egui) dep.
bevy-inspector-egui = { git = "https://github.com/nilaysavant/bevy-inspector-egui", branch = "no-clipboard-v0.19", default-features = false, features = [
"bevy_pbr",
"bevy_egui_no_clipboard",
] }
bevy_rapier3d = { version = "0.22", features = [
"debug-render",
"serde-serialize",
"dim3",
] }
# keep the following in sync with Bevy's dependencies
winit = { version = "0.28", default-features = false }
image = { version = "0.24", default-features = false }
[build-dependencies]
embed-resource = "1.4"
# 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