-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (45 loc) · 1.18 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
[package]
name = "deeper"
version = "0.1.0"
edition = "2021"
[dependencies]
bevy = "0.10.*"
bevy_asset_loader = "0.15.*"
bevy_framepace = "0.12.*"
bevy_egui = "0.20.*"
bevy_rapier3d = { version = "0.21.*", features = ["serde-serialize", "enhanced-determinism"] }
bevy-inspector-egui = "0.18.*"
bevy_mod_outline = { git = "https://github.com/komadori/bevy_mod_outline.git" }
bevy_pathmesh = "0.4.*"
bevy-scene-hook = "6.0.*"
bincode = "*"
serde = "*"
bytemuck = "*"
matchbox_socket = "*"
rapier3d = "*"
bitvec = "*"
wgpu = "*"
wgpu-types = "*"
unicode-segmentation = "*"
noto-sans-mono-bitmap = { version = "*", features = ["all"] }
fraction = "*"
petgraph = "*"
rand = "*"
rand_chacha = "*"
anyhow = "*"
thiserror = "*"
num-traits = "*"
ab_glyph = "*"
noisy_bevy = "*"
uuid = "*"
polyanya = "*"
[target.'cfg(target_arch = "x86_64")'.dependencies]
bevy_dylib = "*"
bevy = { version = "0.10.*", features = ["dynamic_linking"] }
#bevy = { version = "0.10.*", features = ["dynamic_linking", "trace_tracy"] }
# 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