-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (32 loc) · 935 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
[workspace]
resolver = "2"
members = ["crates/*", "new_media"]
package.rust-version = "1.75.0"
[profile.dev]
opt-level = 1 # Small amount of optimizations
[profile.dev.package."*"]
opt-level = 3
[profile.release]
opt-level = "z" # Optimize for binanry size.
lto = true # Enable link-time optimization.
codegen-units = 1 # Only use one codegen unit, to imcrease optimization.
panic = "abort" # Abort on panic, instead of unwinding the stack.
[profile.prod]
inherits = "release"
strip = true # Automatically strip symbols from the binary.
[workspace.dependencies]
anyhow = "1.0.75"
async-net = "2.0.0"
base64 = "0.21.5"
bevy = { version = "0.12.1", default-features = false, features = [
"bevy_asset",
"bevy_core_pipeline",
"bevy_render",
"multi-threaded",
] }
bevy_panorbit_camera = "0.10.0"
crossbeam-channel = "0.5.10"
log = "0.4.20"
pretty_env_logger = "0.5.0"
wgpu = "0.17.2"
tungstenite = "0.21.0"