laserspace/Cargo.toml
2025-04-09 17:03:29 +02:00

24 lines
No EOL
622 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/seem-less/nannou", branch = "helios_laser_DAC" }
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
[[bin]]
name="renderer"
path="src/main.rs"