-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 1.02 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
[package]
name = "rustroneer"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
glam = "0.25.0"
anyhow = "1.0.80"
# bevy = { version = "0.13.0", features = ["dynamic_linking"] }
bevy = { version = "0.13.0"}
bevy-inspector-egui = "0.23.3"
bevy-inspector-egui-rapier = "0.9.0"
bevy_egui = "0.25.0"
# bevy_rapier2d = {version = "0.25.0", features = ["simd-stable", "debug-render-2d", "parallel"]}
bevy_rapier2d = {version = "0.25.0", features = ["simd-stable", "debug-render-2d"]}
image = "0.24.9"
planet = {path = "../planet"}
bevy_tweening = "0.10.0"
# serde = "1.0.197"
serde_json = "1.0.114"
serde_yaml = "0.9.33"
dotenv = "0.15.0"
rand = "0.8.5"
strum = "0.23.0"
strum_macros = "0.23.0"
serde = { version = "1.0.197", features = ["derive"] }
# 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