20 lines
No EOL
596 B
TOML
20 lines
No EOL
596 B
TOML
[package]
|
|
name = "trap_rust"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
bevy = "0.15.3"
|
|
bevy_nannou = { git = "https://github.com/nannou-org/nannou", branch = "bevy-refactor", version = "0.1.0", features = ["wayland"] }
|
|
iyes_perf_ui = "0.4.0"
|
|
nannou_laser = { git = "https://github.com/nannou-org/nannou", branch = "bevy-refactor", version = "0.19.0" }
|
|
serde = "1.0.219"
|
|
serde_json = "1.0.140"
|
|
zmq = "0.10.0"
|
|
|
|
|
|
|
|
# Enable max optimizations for dependencies, but not for our code:
|
|
# (tip from bevy examples for fast compilation/performance trade-off)
|
|
[profile.dev.package."*"]
|
|
opt-level = 3 |