-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (23 loc) · 553 Bytes
/
Cargo.toml
File metadata and controls
29 lines (23 loc) · 553 Bytes
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
[package]
name = "cellular_automata"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy_vulkano = { version = "0.6.0", features = ["gui"] }
bytemuck = "1.9.1"
vulkano = "0.30.0"
vulkano-shaders = "0.30.0"
vulkano-util = "0.30.0"
strum_macros = "0.24.0"
strum = "0.24.0"
[dependencies.bevy]
version = "0.8.0"
default-features = false
features = []
[profile.dev]
opt-level = 3
[profile.dev.package."*"]
opt-level = 3
[profile.release]
lto = "thin"