30 lines
582 B
TOML
30 lines
582 B
TOML
[package]
|
|
name = "dorf"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bevy = { version = "0.16.1", features = ["wayland"] }
|
|
noise = "0.9.0"
|
|
rand = "0.9.2"
|
|
bevy_rand = { version = "0.11.3", features = ["wyrand"] }
|
|
image = "0.25.8"
|
|
bevy_platform = "0.16.1"
|
|
rayon = "1.11.0"
|
|
|
|
# Enable max optimizations for dependencies, but not for our code:
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
|
|
# Enable only a small amount of optimization in debug mode
|
|
[profile.dev]
|
|
opt-level = 1
|
|
debug = true
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 3
|
|
codegen-units = 1
|
|
incremental = false
|
|
debug = false
|